Advertisement
HandsomelyMario34

Untitled

Jul 11th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 370.65 KB | None | 0 0
  1. holy = false
  2. print("DSSJ4 Loading..")
  3. local p = game.Players.LocalPlayer
  4. local char = p.Character
  5. local Character = char
  6. local mouse = p:GetMouse()
  7. local larm = char["Left Arm"]
  8. local rarm = char["Right Arm"]
  9. local lleg = char["Left Leg"]
  10. local rleg = char["Right Leg"]
  11. local hed = char.Head
  12. local torso = char.Torso
  13. local hum = char.Humanoid
  14. local cam = game.Workspace.CurrentCamera
  15. local root = char.HumanoidRootPart
  16. local deb = false
  17. local shot = 0
  18. local debris=game:service"Debris"
  19. local l = game:GetService("Lighting")
  20. local rs = game:GetService("RunService").RenderStepped
  21. ptz = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  22. local RbxUtility = LoadLibrary("RbxUtility")
  23. local Create = RbxUtility.Create
  24. local m = Create("Model"){
  25. Parent = Character,
  26. Name = "WeaponModel",
  27. }
  28. math.randomseed(os.time())
  29. for i,v in pairs(char:children()) do
  30. if v:IsA("Hat") then
  31. v:Destroy()
  32. end
  33. end
  34. for i,v in pairs (hed:GetChildren()) do
  35. if v:IsA("Sound") then
  36. v:Destroy()
  37. end
  38. end
  39. ----------------------------------------------------
  40. Debounces = {
  41. CanAttack = true;
  42. NoIdl = false;
  43. Slashing = false;
  44. Slashed = false;
  45. RPunch = false;
  46. RPunched = false;
  47. LPunch = false;
  48. LPunched = false;
  49. }
  50. local Touche = {char.Name, }
  51. ----------------------------------------------------
  52. hed.face.Texture = "rbxassetid://34668268"
  53. char["Body Colors"].HeadColor = BrickColor.new("Pastel brown")
  54. char["Body Colors"].TorsoColor = BrickColor.new("Pastel brown")
  55. char["Body Colors"].LeftArmColor = BrickColor.new("Pastel brown")
  56. char["Body Colors"].RightArmColor = BrickColor.new("Pastel brown")
  57. ----------------------------------------------------
  58. ypcall(function()
  59. char.Shirt:Destroy()
  60. char.Pants:Destroy()
  61. shirt = Instance.new("Shirt", char)
  62. shirt.Name = "Shirt"
  63. pants = Instance.new("Pants", char)
  64. pants.Name = "Pants"
  65. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=236410507"
  66. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=236412261"
  67. end)
  68. ----------------------------------------------------
  69. ----------------------------------------------------
  70. function nwSnd(prnt,pch,vol,id)
  71. local s=Instance.new("Sound",prnt)
  72. s.Pitch=pch
  73. s.Volume=vol
  74. s.SoundId="rbxassetid://"..id
  75. s.PlayOnRemove=true
  76. return s
  77. end
  78. ----------------------------------------------------
  79. function newRay(start,face,range,wat)
  80. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  81. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  82. return rey,hit,pos
  83. end
  84. ----------------------------------------------------
  85. ----------------------------------------------------
  86. function Tween(a,b,c)
  87. return a+(b-a)*c
  88. end
  89. ----------------------------------------------------
  90. function Lightning(Part0,Part1,Times,Offset,Color,Thickness,Trans)
  91. local magz = (Part0 - Part1).magnitude
  92. local curpos = Part0
  93. local trz = {-Offset,Offset}
  94. for i=1,Times do
  95. local li = Instance.new("Part", char)
  96. li.Name = "Lightning"
  97. li.TopSurface =0
  98. li.Material = "Neon"
  99. li.BottomSurface = 0
  100. li.Anchored = true
  101. li.Locked = true
  102. li.Transparency = Trans or 0.4
  103. li.BrickColor = BrickColor.new(Color)
  104. li.formFactor = "Custom"
  105. li.CanCollide = false
  106. li.Size = Vector3.new(Thickness,Thickness,magz/Times)
  107. local Offzet = Vector3.new(trz[math.random(1,2)],trz[math.random(1,2)],trz[math.random(1,2)])
  108. local trolpos = CFrame.new(curpos,Part1)*CFrame.new(0,0,magz/Times).p+Offzet
  109. if Times == i then
  110. local magz2 = (curpos - Part1).magnitude
  111. li.Size = Vector3.new(Thickness,Thickness,magz2)
  112. li.CFrame = CFrame.new(curpos,Part1)*CFrame.new(0,0,-magz2/2)
  113. else
  114. li.CFrame = CFrame.new(curpos,trolpos)*CFrame.new(0,0,magz/Times/2)
  115. end
  116. curpos = li.CFrame*CFrame.new(0,0,magz/Times/2).p
  117. game.Debris:AddItem(li,.1)
  118. end
  119. end
  120.  
  121. BodyParts = {} -- Parts to emit lightning effects from
  122. for _, v in pairs(char:GetChildren()) do
  123. if v:IsA("Part") then
  124. table.insert(BodyParts, v)
  125. end
  126. end
  127.  
  128. Bounding = {} -- Calculate the bounding boxes
  129. for _, v in pairs(BodyParts) do
  130. local temp = {X=nil, Y=nil, Z=nil}
  131. temp.X = v.Size.X/2 * 10
  132. temp.Y = v.Size.Y/2 * 10
  133. temp.Z = v.Size.Z/2 * 10
  134. Bounding[v.Name] = temp
  135. --table.insert(Bounding, v.Name, temp)
  136. end
  137.  
  138. ----------------------------------------------------
  139. function nwPrt(prnt,siz,cf,col)
  140. local prt=Instance.new("Part")
  141. prt.Parent=prnt
  142. prt.FormFactor=3
  143. prt.Name="Part"
  144. prt.Size=siz
  145. prt.CanCollide=false
  146. prt.Anchored=true
  147. prt.Locked=true
  148. prt.TopSurface=10
  149. prt.BottomSurface=10
  150. prt.FrontSurface=10
  151. prt.BackSurface=10
  152. prt.LeftSurface=10
  153. prt.RightSurface=10
  154. prt:BreakJoints()
  155. prt.CFrame=cf or CFrame.new(30,10,30)
  156. prt.Material="Neon"
  157. prt.BrickColor=BrickColor.new(col)
  158. m=Instance.new("SpecialMesh",prt)
  159. m.MeshType=6
  160. return prt
  161. end
  162. ---------------------------------------------------
  163. function lerp(a, b, t) -- Linear interpolation
  164. return a + (b - a)*t
  165. end
  166.  
  167. function slerp(a, b, t) --Spherical interpolation
  168. dot = a:Dot(b)
  169. if dot > 0.99999 or dot < -0.99999 then
  170. return t <= 0.5 and a or b
  171. else
  172. r = math.acos(dot)
  173. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  174. end
  175. end
  176.  
  177. function matrixInterpolate(a, b, t)
  178. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  179. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  180. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  181. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  182. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  183. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  184. local t = v1:Dot(v2)
  185. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  186. return CFrame.new()
  187. end
  188. return CFrame.new(
  189. v0.x, v0.y, v0.z,
  190. v1.x, v1.y, v1.z,
  191. v2.x, v2.y, v2.z,
  192. v3.x, v3.y, v3.z)
  193. end
  194. ----------------------------------------------------
  195. function genWeld(a,b)
  196. local w = Instance.new("Weld",a)
  197. w.Part0 = a
  198. w.Part1 = b
  199. return w
  200. end
  201. function weld(a, b)
  202. local weld = Instance.new("Weld")
  203. weld.Name = "W"
  204. weld.Part0 = a
  205. weld.Part1 = b
  206. weld.C0 = a.CFrame:inverse() * b.CFrame
  207. weld.Parent = a
  208. return weld;
  209. end
  210. ----------------------------------------------------
  211. function Lerp(c1,c2,al)
  212. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  213. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  214. for i,v in pairs(com1) do
  215. com1[i] = v+(com2[i]-v)*al
  216. end
  217. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  218. end
  219. ----------------------------------------------------
  220. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  221. local wld = Instance.new("Weld", wp1)
  222. wld.Part0 = wp0
  223. wld.Part1 = wp1
  224. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  225. end
  226. ----------------------------------------------------
  227. function weld5(part0, part1, c0, c1)
  228. weeld=Instance.new("Weld", part0)
  229. weeld.Part0=part0
  230. weeld.Part1=part1
  231. weeld.C0=c0
  232. weeld.C1=c1
  233. return weeld
  234. end
  235. ----------------------------------------------------
  236. function HasntTouched(plrname)
  237. local ret = true
  238. for _, v in pairs(Touche) do
  239. if v == plrname then
  240. ret = false
  241. end
  242. end
  243. return ret
  244. end
  245. ----------------------------------------------------
  246. newWeld(torso, larm, -1.5, 0.5, 0)
  247. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  248. newWeld(torso, rarm, 1.5, 0.5, 0)
  249. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  250. newWeld(torso, hed, 0, 1.5, 0)
  251. newWeld(torso, lleg, -0.5, -1, 0)
  252. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  253. newWeld(torso, rleg, 0.5, -1, 0)
  254. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  255. newWeld(root, torso, 0, -1, 0)
  256. torso.Weld.C1 = CFrame.new(0, -1, 0)
  257. ----------------------------------------------------
  258. z = Instance.new("Sound", char)
  259. z.SoundId = "rbxassetid://381955589"-- Cartton Imortallity :381955589 -- My Heart: 154299074 -- Sao Crossing: 246056418 -- SAN HOLO DOnkeykong: 246056418 -- "Innocence" - Sword Art Online OP 2: 142357253 -- OnePunch Hero: 339250412 (Fav) -- Sethbling: 170902050
  260. z.Looped = true
  261. z.Pitch = 1
  262. z.Volume = 1
  263. wait(.1)
  264. z:Play()
  265. ----------------------------------------------------
  266. function NoOutline(Part)
  267. Part.TopSurface, Part.BottomSurface, Part.LeftSurface, Part.RightSurface, Part.FrontSurface, Part.BackSurface = 10, 10, 10, 10, 10, 10
  268. end
  269. function swait(num)
  270. if num == 0 or num == nil then
  271. game:service'RunService'.Heartbeat:wait(0)
  272. else
  273. for i = 0, num do
  274. game:service'RunService'.Heartbeat:wait(0)
  275. end
  276. end
  277. end
  278.  
  279. function nooutline(part)
  280. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  281. end
  282.  
  283. function part(formfactor, parent, material, reflectance, transparency, brickcolor, name, size)
  284. local fp = Create("Part"){
  285. formFactor = formfactor,
  286. Parent = parent,
  287. Reflectance = reflectance,
  288. Transparency = transparency,
  289. CanCollide = false,
  290. Locked = true,
  291. BrickColor = BrickColor.new(tostring(brickcolor)),
  292. Name = name,
  293. Size = size,
  294. Position = Character.Torso.Position,
  295. Material = material,
  296. }
  297. nooutline(fp)
  298. return fp
  299. end
  300.  
  301. function mesh(Mesh, part, meshtype, meshid, offset, scale)
  302. local Msh = Create(Mesh){
  303. Parent = part,
  304. Offset = offset,
  305. Scale = scale,
  306. }
  307. if Mesh == "SpecialMesh" then
  308. Msh.MeshType = meshtype
  309. Msh.MeshId = meshid
  310. end
  311. return Msh
  312. end
  313.  
  314.  
  315. function so(id, par, vol, pit)
  316. coroutine.resume(coroutine.create(function()
  317. local sou = Instance.new("Sound", par or workspace)
  318. sou.Volume = vol
  319. sou.Pitch = pit or 1
  320. sou.SoundId = Sounds[id].Id or id
  321. swait()
  322. sou:play()
  323. swait(6)
  324. sou:Remove()
  325. end))
  326. end
  327.  
  328. function weld(parent, part0, part1, c0, c1)
  329. local Weld = Create("Weld"){
  330. Parent = parent,
  331. Part0 = part0,
  332. Part1 = part1,
  333. C0 = c0,
  334. C1 = c1,
  335. }
  336. return Weld
  337. end
  338. ----------------------------------------------------
  339. local m = Instance.new("Model")
  340. m.Name = "Wings"
  341. p1 = Instance.new("Part", m)
  342. p1.Name = "Part1"
  343. p1.BrickColor = BrickColor.new("Really black")
  344. p1.Material = "Fabric"
  345. p1.CFrame = CFrame.new(2.23064709, 5.42307234, -12.1674881, -0.707106709, 0.707106888, -
  346. 2.23517389e-007, -0.499999762, -0.499999851, -0.707106233, -0.499999374, -0.499999732,
  347. 0.707105637)
  348. p1.CanCollide = false
  349. p1.FormFactor = Enum.FormFactor.Symmetric
  350. p1.Elasticity = 0
  351. p1.Size = Vector3.new(1, 4, 1)
  352. p1.BottomSurface = Enum.SurfaceType.Smooth
  353. p1.TopSurface = Enum.SurfaceType.Smooth
  354. b1 = Instance.new("BlockMesh", p1)
  355. b1.Name = "Mesh"
  356. b1.Scale = Vector3.new(0.299999923, 1, 0.299999923)
  357. p2 = Instance.new("Part", m)
  358. p2.Name = "Part2"
  359. p2.BrickColor = BrickColor.new("Really black")
  360. p2.Material = "Fabric"
  361. p2.CFrame = CFrame.new(3.99841213, 4.17309284, -13.4174824, 0.707106709, 2.23517418e-007, -
  362. 0.707106829, 0.49999994, 0.707106292, 0.499999851, 0.499999553, -0.707105696, 0.499999791)
  363. p2.CanCollide = false
  364. p2.FormFactor = Enum.FormFactor.Symmetric
  365. p2.Elasticity = 0
  366. p2.Size = Vector3.new(1, 1, 1)
  367. p2.BottomSurface = Enum.SurfaceType.Smooth
  368. p2.TopSurface = Enum.SurfaceType.Smooth
  369. b2 = Instance.new("SpecialMesh", p2)
  370. b2.MeshType = Enum.MeshType.Wedge
  371. b2.Name = "Mesh"
  372. b2.Scale = Vector3.new(0.319999993, 0.299999923, 1)
  373. p3 = Instance.new("Part", m)
  374. p3.Name = "Part3"
  375. p3.BrickColor = BrickColor.new("Really black")
  376. p3.Material = "Fabric"
  377. p3.CFrame = CFrame.new(2.20711732, 3.78849339, -12.3740644, 0.959171534, 0.28168276,
  378. 0.0253876615, -0.282448769, 0.958654881, 0.0346818939, -0.0145691708, -0.0404358432,
  379. 0.999074996)
  380. p3.CanCollide = false
  381. p3.FormFactor = Enum.FormFactor.Symmetric
  382. p3.Elasticity = 0
  383. p3.Size = Vector3.new(1, 3, 1)
  384. p3.BottomSurface = Enum.SurfaceType.Smooth
  385. p3.TopSurface = Enum.SurfaceType.Smooth
  386. b3 = Instance.new("BlockMesh", p3)
  387. b3.Name = "Mesh"
  388. b3.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  389. p4 = Instance.new("Part", m)
  390. p4.Name = "Part4"
  391. p4.BrickColor = BrickColor.new("Royal purple")
  392. p4.Material = "Fabric"
  393. p4.CFrame = CFrame.new(1.26502275, 5.19090509, -11.4009991, 0.988936007, -0.146727905,
  394. 0.0218264833, 0.14821738, 0.983390749, -0.104755871, -0.00609340565, 0.106832691, 0.994257689)
  395. p4.CanCollide = false
  396. p4.FormFactor = Enum.FormFactor.Symmetric
  397. p4.Elasticity = 0
  398. p4.Size = Vector3.new(1, 2, 1)
  399. p4.BottomSurface = Enum.SurfaceType.Smooth
  400. p4.TopSurface = Enum.SurfaceType.Smooth
  401. b4 = Instance.new("BlockMesh", p4)
  402. b4.Name = "Mesh"
  403. b4.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  404. p5 = Instance.new("Part", m)
  405. p5.Name = "Part5"
  406. p5.BrickColor = BrickColor.new("Really black")
  407. p5.Material = "Fabric"
  408. p5.CFrame = CFrame.new(-4.44179106, 5.13394976, -11.382658, 0.9583143, 0.284877658,
  409. 0.0218711179, -0.281183124, 0.953924894, -0.104703665, -0.0506914668, 0.0941898227,
  410. 0.994262278)
  411. p5.CanCollide = false
  412. p5.FormFactor = Enum.FormFactor.Symmetric
  413. p5.Elasticity = 0
  414. p5.Size = Vector3.new(1, 3, 1)
  415. p5.BottomSurface = Enum.SurfaceType.Smooth
  416. p5.TopSurface = Enum.SurfaceType.Smooth
  417. b5 = Instance.new("BlockMesh", p5)
  418. b5.Name = "Mesh"
  419. b5.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  420. p6 = Instance.new("Part", m)
  421. p6.Name = "Part6"
  422. p6.BrickColor = BrickColor.new("Royal purple")
  423. p6.Material = "Fabric"
  424. p6.CFrame = CFrame.new(-3.25746775, 4.10252142, -11.1188278, 0.990586162, 0.136166841,
  425. 0.0140535301, -0.122137889, 0.925523639, -0.358451784, -0.0618163571, 0.353361398,
  426. 0.933441639)
  427. p6.CanCollide = false
  428. p6.FormFactor = Enum.FormFactor.Symmetric
  429. p6.Elasticity = 0
  430. p6.Size = Vector3.new(1, 3, 1)
  431. p6.BottomSurface = Enum.SurfaceType.Smooth
  432. p6.TopSurface = Enum.SurfaceType.Smooth
  433. b6 = Instance.new("BlockMesh", p6)
  434. b6.Name = "Mesh"
  435. b6.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  436. p7 = Instance.new("Part", m)
  437. p7.Name = "Part7"
  438. p7.BrickColor = BrickColor.new("Royal purple")
  439. p7.Material = "Fabric"
  440. p7.CFrame = CFrame.new(-5.3205142, 5.61000919, -11.9814529, -0.656058729, -0.754709721, -
  441. 5.77419996e-008, 0.533660352, -0.463903487, -0.707106411, 0.533660412, -0.463903487,
  442. 0.707106233)
  443. p7.CanCollide = false
  444. p7.FormFactor = Enum.FormFactor.Symmetric
  445. p7.Elasticity = 0
  446. p7.Size = Vector3.new(1, 4, 1)
  447. p7.BottomSurface = Enum.SurfaceType.Smooth
  448. p7.TopSurface = Enum.SurfaceType.Smooth
  449. b7 = Instance.new("BlockMesh", p7)
  450. b7.Name = "Mesh"
  451. b7.Scale = Vector3.new(0.299999923, 1, 0.299999923)
  452. p8 = Instance.new("Part", m)
  453. p8.Name = "Part8"
  454. p8.BrickColor = BrickColor.new("Royal purple")
  455. p8.Material = "Fabric"
  456. p8.CFrame = CFrame.new(-0.130102158, 4.73467064, -10.7141094, 0.874170661, 0.484677076,
  457. 0.0302294046, -0.475244969, 0.841039479, 0.258445919, 0.0998384058, -0.240292028, 0.96555239)
  458. p8.CanCollide = false
  459. p8.FormFactor = Enum.FormFactor.Symmetric
  460. p8.Elasticity = 0
  461. p8.Size = Vector3.new(1, 4, 1)
  462. p8.BottomSurface = Enum.SurfaceType.Smooth
  463. p8.TopSurface = Enum.SurfaceType.Smooth
  464. b8 = Instance.new("BlockMesh", p8)
  465. b8.Name = "Mesh"
  466. b8.Scale = Vector3.new(0.299999923, 1, 0.299999923)
  467. p9 = Instance.new("Part", m)
  468. p9.Name = "Part9"
  469. p9.BrickColor = BrickColor.new("Really black")
  470. p9.Material = "Fabric"
  471. p9.CFrame = CFrame.new(-2.9284029, 4.80385351, -10.6452761, 0.890645742, -0.453692019,
  472. 0.0302294642, 0.431499481, 0.864299536, 0.258445889, -0.143382162, -0.217139587, 0.965552568)
  473. p9.CanCollide = false
  474. p9.FormFactor = Enum.FormFactor.Symmetric
  475. p9.Elasticity = 0
  476. p9.Size = Vector3.new(1, 4, 1)
  477. p9.BottomSurface = Enum.SurfaceType.Smooth
  478. p9.TopSurface = Enum.SurfaceType.Smooth
  479. b9 = Instance.new("BlockMesh", p9)
  480. b9.Name = "Mesh"
  481. b9.Scale = Vector3.new(0.299999923, 1, 0.299999923)
  482. p10 = Instance.new("Part", m)
  483. p10.Name = "Part10"
  484. p10.BrickColor = BrickColor.new("Really black")
  485. p10.Material = "Fabric"
  486. p10.CFrame = CFrame.new(0.461318254, 4.42153645, -10.9603891, 0.993439734, -0.112256877,
  487. 0.0218180809, 0.113935865, 0.987964332, -0.104616776, -0.00981165841, 0.106416553,
  488. 0.994273067)
  489. p10.CanCollide = false
  490. p10.FormFactor = Enum.FormFactor.Symmetric
  491. p10.Elasticity = 0
  492. p10.Size = Vector3.new(1, 2, 1)
  493. p10.BottomSurface = Enum.SurfaceType.Smooth
  494. p10.TopSurface = Enum.SurfaceType.Smooth
  495. b10 = Instance.new("BlockMesh", p10)
  496. b10.Name = "Mesh"
  497. b10.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  498. p11 = Instance.new("Part", m)
  499. p11.Name = "Part11"
  500. p11.BrickColor = BrickColor.new("Really black")
  501. p11.Material = "Fabric"
  502. p11.CFrame = CFrame.new(-5.58509636, 4.39552546, -12.2391958, 0.973001778, -0.230067,
  503. 0.0183526818, 0.229346812, 0.972725153, 0.034717977, -0.0258396715, -0.0295712873,
  504. 0.999228418)
  505. p11.CanCollide = false
  506. p11.FormFactor = Enum.FormFactor.Symmetric
  507. p11.Elasticity = 0
  508. p11.Size = Vector3.new(1, 2, 1)
  509. p11.BottomSurface = Enum.SurfaceType.Smooth
  510. p11.TopSurface = Enum.SurfaceType.Smooth
  511. b11 = Instance.new("BlockMesh", p11)
  512. b11.Name = "Mesh"
  513. b11.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  514. p12 = Instance.new("Part", m)
  515. p12.Name = "Part12"
  516. p12.BrickColor = BrickColor.new("Really black")
  517. p12.Material = "Fabric"
  518. p12.CFrame = CFrame.new(-7.20725632, 4.45023441, -13.1411486, 0.656056762, 3.7997961e-007,
  519. 0.75470835, -0.53365773, 0.707103908, 0.463900089, -0.533659458, -0.707104445, 0.463902116)
  520. p12.CanCollide = false
  521. p12.FormFactor = Enum.FormFactor.Symmetric
  522. p12.Elasticity = 0
  523. p12.Size = Vector3.new(1, 1, 1)
  524. p12.BottomSurface = Enum.SurfaceType.Smooth
  525. p12.TopSurface = Enum.SurfaceType.Smooth
  526. b12 = Instance.new("SpecialMesh", p12)
  527. b12.MeshType = Enum.MeshType.Wedge
  528. b12.Name = "Mesh"
  529. b12.Scale = Vector3.new(0.319999993, 0.299999923, 1)
  530. p13 = Instance.new("Part", m)
  531. p13.Name = "Part13"
  532. p13.BrickColor = BrickColor.new("Really black")
  533. p13.Material = "Fabric"
  534. p13.CFrame = CFrame.new(-1.16246319, 3.02499151, -10.4305, 0.685088575, 0.728258491,
  535. 0.0168257058, -0.696930826, 0.661988258, -0.27575165, -0.211958379, 0.177188307, 0.961075842)
  536. p13.CanCollide = false
  537. p13.FormFactor = Enum.FormFactor.Symmetric
  538. p13.Elasticity = 0
  539. p13.Size = Vector3.new(1, 1, 1)
  540. p13.BottomSurface = Enum.SurfaceType.Smooth
  541. p13.TopSurface = Enum.SurfaceType.Smooth
  542. b13 = Instance.new("BlockMesh", p13)
  543. b13.Name = "Mesh"
  544. b13.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  545. p14 = Instance.new("Part", m)
  546. p14.Name = "Part14"
  547. p14.BrickColor = BrickColor.new("Really black")
  548. p14.Material = "Fabric"
  549. p14.CFrame = CFrame.new(-1.06862891, 2.92015743, -10.4324627, 0.959295571, 0.281205207,
  550. 0.0257938076, -0.282206476, 0.95792222, 0.052197963, -0.0100304484, -0.0573545098,
  551. 0.998297691)
  552. p14.CanCollide = false
  553. p14.FormFactor = Enum.FormFactor.Symmetric
  554. p14.Elasticity = 0
  555. p14.Size = Vector3.new(1, 2, 1)
  556. p14.BottomSurface = Enum.SurfaceType.Smooth
  557. p14.TopSurface = Enum.SurfaceType.Smooth
  558. b14 = Instance.new("BlockMesh", p14)
  559. b14.Name = "Mesh"
  560. b14.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  561. p15 = Instance.new("Part", m)
  562. p15.Name = "Part15"
  563. p15.BrickColor = BrickColor.new("Really black")
  564. p15.Material = "Fabric"
  565. p15.CFrame = CFrame.new(-1.25248194, 3.46670246, -10.3202372, -0.768480301, 0.609402537,
  566. 0.195080221, -0.634339094, -0.765544653, -0.107403584, 0.0838928521, -0.206285655,
  567. 0.974882662)
  568. p15.CanCollide = false
  569. p15.FormFactor = Enum.FormFactor.Symmetric
  570. p15.Elasticity = 0
  571. p15.Size = Vector3.new(1, 1, 1)
  572. p15.BottomSurface = Enum.SurfaceType.Smooth
  573. p15.TopSurface = Enum.SurfaceType.Smooth
  574. b15 = Instance.new("BlockMesh", p15)
  575. b15.Name = "Mesh"
  576. b15.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  577. p16 = Instance.new("Part", m)
  578. p16.Name = "Part16"
  579. p16.BrickColor = BrickColor.new("Really black")
  580. p16.Material = "Fabric"
  581. p16.CFrame = CFrame.new(-1.96196043, 3.04476213, -10.4108219, 0.72825861, -0.685088336,
  582. 0.0168255717, 0.661988497, 0.696930647, -0.275751829, 0.177188098, 0.211958155, 0.961075366)
  583. p16.CanCollide = false
  584. p16.FormFactor = Enum.FormFactor.Symmetric
  585. p16.Elasticity = 0
  586. p16.Size = Vector3.new(1, 1, 1)
  587. p16.BottomSurface = Enum.SurfaceType.Smooth
  588. p16.TopSurface = Enum.SurfaceType.Smooth
  589. b16 = Instance.new("BlockMesh", p16)
  590. b16.Name = "Mesh"
  591. b16.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  592. p17 = Instance.new("Part", m)
  593. p17.Name = "Part17"
  594. p17.BrickColor = BrickColor.new("Really black")
  595. p17.Material = "Fabric"
  596. p17.CFrame = CFrame.new(-1.85207272, 3.48152924, -10.3054819, -0.739407778, -0.655866385, -
  597. 0.152003229, 0.671618342, -0.73426342, -0.0988226384, -0.0467970669, -0.175158352,
  598. 0.983420968)
  599. p17.CanCollide = false
  600. p17.FormFactor = Enum.FormFactor.Symmetric
  601. p17.Elasticity = 0
  602. p17.Size = Vector3.new(1, 1, 1)
  603. p17.BottomSurface = Enum.SurfaceType.Smooth
  604. p17.TopSurface = Enum.SurfaceType.Smooth
  605. b17 = Instance.new("BlockMesh", p17)
  606. b17.Name = "Mesh"
  607. b17.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  608. p18 = Instance.new("Part", m)
  609. p18.Name = "Part18"
  610. p18.BrickColor = BrickColor.new("Really black")
  611. p18.Material = "Fabric"
  612. p18.CFrame = CFrame.new(-2.06802177, 2.94484425, -10.4080706, 0.971376956, -0.236116573,
  613. 0.02579391, 0.234563246, 0.970688105, 0.0521978363, -0.0373639017, -0.0446553342, 0.998296857)
  614. p18.CanCollide = false
  615. p18.FormFactor = Enum.FormFactor.Symmetric
  616. p18.Elasticity = 0
  617. p18.Size = Vector3.new(1, 2, 1)
  618. p18.BottomSurface = Enum.SurfaceType.Smooth
  619. p18.TopSurface = Enum.SurfaceType.Smooth
  620. b18 = Instance.new("BlockMesh", p18)
  621. b18.Name = "Mesh"
  622. b18.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  623. p19 = Instance.new("Part", m)
  624. p19.Name = "Part19"
  625. p19.BrickColor = BrickColor.new("Really black")
  626. p19.Material = "Fabric"
  627. p19.CFrame = CFrame.new(3.49998665, 3.79997182, -12.6999207, 0.965920806, -0.258817494, -
  628. 2.4959445e-007, 0.249997482, 0.933003485, 0.258815616, -0.0669874251, -0.249999031,
  629. 0.965919077)
  630. p19.CanCollide = false
  631. p19.FormFactor = Enum.FormFactor.Symmetric
  632. p19.Elasticity = 0
  633. p19.Size = Vector3.new(1, 2, 1)
  634. p19.BottomSurface = Enum.SurfaceType.Smooth
  635. p19.TopSurface = Enum.SurfaceType.Smooth
  636. b19 = Instance.new("BlockMesh", p19)
  637. b19.Name = "Mesh"
  638. b19.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  639. p20 = Instance.new("Part", m)
  640. p20.Name = "Part20"
  641. p20.BrickColor = BrickColor.new("Really black")
  642. p20.Material = "Fabric"
  643. p20.CFrame = CFrame.new(-6.79995918, 3.78997159, -12.7999163, 0.965920687, 0.258817792, -
  644. 3.04258691e-007, -0.256297678, 0.95651561, -0.139172524, -0.036020536, 0.134429038,
  645. 0.990261436)
  646. p20.CanCollide = false
  647. p20.FormFactor = Enum.FormFactor.Symmetric
  648. p20.Elasticity = 0
  649. p20.Size = Vector3.new(1, 3, 1)
  650. p20.BottomSurface = Enum.SurfaceType.Smooth
  651. p20.TopSurface = Enum.SurfaceType.Smooth
  652. b20 = Instance.new("BlockMesh", p20)
  653. b20.Name = "Mesh"
  654. b20.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  655. w1 = Instance.new("Weld", p1)
  656. w1.Part0 = p1
  657. w1.C0 = CFrame.new(-1.79490757, -4.94951439, 12.4384165, -0.707106769, -0.499999911, -
  658. 0.49999994, 0.707106709, -0.49999997, -0.49999994, 0, -0.707106769, 0.707106709)
  659. w1.Part1 = p2
  660. w1.C1 = CFrame.new(1.79489565, -12.4384251, 7.44950008, 0.707106769, 0.499999911, 0.49999994,
  661. 2.10734239e-008, 0.707106769, -0.707106709, -0.707106948, 0.49999994, 0.5)
  662. w2 = Instance.new("Weld", p2)
  663. w2.Part0 = p2
  664. w2.C0 = CFrame.new(1.79489565, -12.4384251, 7.44950008, 0.707106769, 0.499999911, 0.49999994,
  665. 2.10734239e-008, 0.707106769, -0.707106709, -0.707106948, 0.49999994, 0.5)
  666. w2.Part1 = p3
  667. w2.C1 = CFrame.new(-1.22722292, -4.75393152, 12.1752129, 0.959171653, -0.282448888, -
  668. 0.0145689286, 0.28168264, 0.958655119, -0.0404363424, 0.0253877491, 0.034681499, 0.99907577)
  669. w3 = Instance.new("Weld", p3)
  670. w3.Part0 = p3
  671. w3.C0 = CFrame.new(-1.22722292, -4.75393152, 12.1752129, 0.959171653, -0.282448888, -
  672. 0.0145689286, 0.28168264, 0.958655119, -0.0404363424, 0.0253877491, 0.034681499, 0.99907577)
  673. w3.Part1 = p4
  674. w3.C1 = CFrame.new(-2.0898788, -3.70108366, 11.8517132, 0.988936007, 0.148217395, -
  675. 0.00609338284, -0.146728054, 0.983390927, 0.10683234, 0.0218265653, -0.104756176, 0.994258285)
  676. w4 = Instance.new("Weld", p4)
  677. w4.Part0 = p4
  678. w4.C0 = CFrame.new(-2.0898788, -3.70108366, 11.8517132, 0.988936007, 0.148217395, -
  679. 0.00609338284, -0.146728054, 0.983390927, 0.10683234, 0.0218265653, -0.104756176, 0.994258285)
  680. w4.Part1 = p5
  681. w4.C1 = CFrame.new(5.12321281, -2.5599122, 11.9520521, 0.958314359, -0.281183183, -
  682. 0.0506912991, 0.284877598, 0.953925133, 0.0941895097, 0.0218711942, -0.104703978, 0.994262934)
  683. w5 = Instance.new("Weld", p5)
  684. w5.Part0 = p5
  685. w5.C0 = CFrame.new(5.12321281, -2.5599122, 11.9520521, 0.958314359, -0.281183183, -
  686. 0.0506912991, 0.284877598, 0.953925133, 0.0941895097, 0.0218711942, -0.104703978, 0.994262934)
  687. w5.Part1 = p6
  688. w5.C1 = CFrame.new(3.04055262, 0.575539827, 11.8951263, 0.990586221, -0.122137874, -
  689. 0.0618162453, 0.136166826, 0.925523877, 0.353361279, 0.014053612, -0.358452141, 0.933442295)
  690. w6 = Instance.new("Weld", p6)
  691. w6.Part0 = p6
  692. w6.C0 = CFrame.new(3.04055262, 0.575539827, 11.8951263, 0.990586221, -0.122137874, -
  693. 0.0618162453, 0.136166826, 0.925523877, 0.353361279, 0.014053612, -0.358452141, 0.933442295)
  694. w6.Part1 = p7
  695. w6.C1 = CFrame.new(-0.090382576, -6.97118187, 12.4390469, -0.656058788, 0.533660412,
  696. 0.533660412, -0.75470984, -0.463903606, -0.463903606, 0, -0.707106769, 0.707106709)
  697. w7 = Instance.new("Weld", p7)
  698. w7.Part0 = p7
  699. w7.C0 = CFrame.new(-0.090382576, -6.97118187, 12.4390469, -0.656058788, 0.533660412,
  700. 0.533660412, -0.75470984, -0.463903606, -0.463903606, 0, -0.707106769, 0.707106709)
  701. w7.Part1 = p8
  702. w7.C1 = CFrame.new(3.43354273, -6.49350643, 9.12531471, 0.874170601, -0.475245059,
  703. 0.0998385474, 0.484676957, 0.841039658, -0.240292117, 0.0302294642, 0.258445889, 0.965552568)
  704. w8 = Instance.new("Weld", p8)
  705. w8.Part0 = p8
  706. w8.C0 = CFrame.new(3.43354273, -6.49350643, 9.12531471, 0.874170601, -0.475245059,
  707. 0.0998385474, 0.484676957, 0.841039658, -0.240292117, 0.0302294642, 0.258445889, 0.965552568)
  708. w8.Part1 = p9
  709. w8.C1 = CFrame.new(-0.991033435, -7.7920723, 9.12556171, 0.890645742, 0.431499481, -
  710. 0.143382162, -0.453692019, 0.864299536, -0.217139587, 0.0302294642, 0.258445889, 0.965552568)
  711. w9 = Instance.new("Weld", p9)
  712. w9.Part0 = p9
  713. w9.C0 = CFrame.new(-0.991033435, -7.7920723, 9.12556171, 0.890645742, 0.431499481, -
  714. 0.143382162, -0.453692019, 0.864299536, -0.217139587, 0.0302294642, 0.258445889, 0.965552568)
  715. w9.Part1 = p10
  716. w9.C1 = CFrame.new(-1.06960225, -3.15016913, 11.3501244, 0.993439615, 0.113935851, -
  717. 0.00981158204, -0.112256907, 0.987964511, 0.106416464, 0.0218181461, -0.104616918,
  718. 0.994273245)
  719. w10 = Instance.new("Weld", p10)
  720. w10.Part0 = p10
  721. w10.C0 = CFrame.new(-1.06960225, -3.15016913, 11.3501244, 0.993439615, 0.113935851, -
  722. 0.00981158204, -0.112256907, 0.987964511, 0.106416464, 0.0218181461, -0.104616918,
  723. 0.994273245)
  724. w10.Part1 = p11
  725. w10.C1 = CFrame.new(4.10995293, -5.92251635, 12.1796551, 0.973001719, 0.229346842, -
  726. 0.0258396119, -0.23006703, 0.972725391, -0.0295714047, 0.0183527395, 0.034717869, 0.999228597)
  727. w11 = Instance.new("Weld", p11)
  728. w11.Part0 = p11
  729. w11.C0 = CFrame.new(4.10995293, -5.92251635, 12.1796551, 0.973001719, 0.229346842, -
  730. 0.0258396119, -0.23006703, 0.972725391, -0.0295714047, 0.0183527395, 0.034717869, 0.999228597)
  731. w11.Part1 = p12
  732. w11.C1 = CFrame.new(0.0903778076, -12.4390163, 9.47116661, 0.656056702, -0.533657789, -
  733. 0.533659518, 3.16101307e-007, 0.707104087, -0.707104683, 0.75470835, 0.463900119, 0.463902295)
  734. w12 = Instance.new("Weld", p12)
  735. w12.Part0 = p12
  736. w12.C0 = CFrame.new(0.0903778076, -12.4390163, 9.47116661, 0.656056702, -0.533657789, -
  737. 0.533659518, 3.16101307e-007, 0.707104087, -0.707104683, 0.75470835, 0.463900119, 0.463902295)
  738. w12.Part1 = p13
  739. w12.C1 = CFrame.new(0.693788052, 0.692229629, 10.8783264, 0.685091734, -0.69693774, -
  740. 0.211959824, 0.728262305, 0.661995173, 0.177189946, 0.0168259665, -0.275753766, 0.961080968)
  741. w13 = Instance.new("Weld", p13)
  742. w13.Part0 = p13
  743. w13.C0 = CFrame.new(0.693788052, 0.692229629, 10.8783264, 0.685091734, -0.69693774, -
  744. 0.211959824, 0.728262305, 0.661995173, 0.177189946, 0.0168259665, -0.275753766, 0.961080968)
  745. w13.Part1 = p14
  746. w13.C1 = CFrame.new(1.74460375, -3.09517074, 10.2899532, 0.959300518, -0.282209098, -
  747. 0.0100303814, 0.281206846, 0.957931817, -0.0573540777, 0.0257942528, 0.0521991551,
  748. 0.998303413)
  749. w14 = Instance.new("Weld", p14)
  750. w14.Part0 = p14
  751. w14.C0 = CFrame.new(1.74460375, -3.09517074, 10.2899532, 0.959300518, -0.282209098, -
  752. 0.0100303814, 0.281206846, 0.957931817, -0.0573540777, 0.0257942528, 0.0521991551,
  753. 0.998303413)
  754. w14.Part1 = p15
  755. w14.C1 = CFrame.new(2.10237837, 1.28829288, 10.6778135, -0.768484235, -0.634345412,
  756. 0.0838926136, 0.609405577, -0.765552342, -0.206287205, 0.195081502, -0.107403934, 0.974888384)
  757. w15 = Instance.new("Weld", p15)
  758. w15.Part0 = p15
  759. w15.C0 = CFrame.new(2.10237837, 1.28829288, 10.6778135, -0.768484235, -0.634345412,
  760. 0.0838926136, 0.609405577, -0.765552342, -0.206287205, 0.195081502, -0.107403934, 0.974888384)
  761. w15.Part1 = p16
  762. w15.C1 = CFrame.new(1.25790477, -1.25946927, 10.8783226, 0.728262305, 0.661995173,
  763. 0.177190006, -0.685091794, 0.696937621, 0.211959764, 0.0168259665, -0.275753766, 0.961080968)
  764. w16 = Instance.new("Weld", p16)
  765. w16.Part0 = p16
  766. w16.C0 = CFrame.new(1.25790477, -1.25946927, 10.8783226, 0.728262305, 0.661995173,
  767. 0.177190006, -0.685091794, 0.696937621, 0.211959764, 0.0168259665, -0.275753766, 0.961080968)
  768. w16.Part1 = p17
  769. w16.C1 = CFrame.new(-4.19002342, -0.463444591, 10.1972828, -0.739411771, 0.671625078, -
  770. 0.0467970371, -0.655869722, -0.73427093, -0.175160319, -0.152003735, -0.0988228023,
  771. 0.983426988)
  772. w17 = Instance.new("Weld", p17)
  773. w17.Part0 = p17
  774. w17.C0 = CFrame.new(-4.19002342, -0.463444591, 10.1972828, -0.739411771, 0.671625078, -
  775. 0.0467970371, -0.655869722, -0.73427093, -0.175160319, -0.152003735, -0.0988228023,
  776. 0.983426988)
  777. w17.Part1 = p18
  778. w17.C1 = CFrame.new(0.929204226, -3.81164908, 10.2901011, 0.971381962, 0.234565541, -
  779. 0.037363667, -0.236118004, 0.970697761, -0.0446549058, 0.0257942528, 0.0521991551,
  780. 0.998303413)
  781. w18 = Instance.new("Weld", p18)
  782. w18.Part0 = p18
  783. w18.C0 = CFrame.new(0.929204226, -3.81164908, 10.2901011, 0.971381962, 0.234565541, -
  784. 0.037363667, -0.236118004, 0.970697761, -0.0446549058, 0.0257942528, 0.0521991551,
  785. 0.998303413)
  786. w18.Part1 = p19
  787. w18.C1 = CFrame.new(-5.18147898, -5.81458092, 11.2837429, 0.965925813, 0.25, -0.0669872984, -
  788. 0.258819044, 0.933012664, -0.25, 0, 0.258819044, 0.965925813)
  789. w19 = Instance.new("Weld", p19)
  790. w19.Part0 = p19
  791. w19.C0 = CFrame.new(-5.18147898, -5.81458092, 11.2837429, 0.965925813, 0.25, -0.0669872984, -
  792. 0.258819044, 0.933012664, -0.25, 0, 0.258819044, 0.965925813)
  793. w19.Part1 = p20
  794. w19.C1 = CFrame.new(7.07860947, -0.14454639, 13.2028942, 0.965925813, -0.256300241, -
  795. 0.0360206552, 0.258819044, 0.956525445, 0.1344309, 3.7252903e-009, -0.139173105, 0.990268052)
  796. m.Parent = char
  797. m:MakeJoints()
  798. ----------------------------------------------------
  799. local cor = Instance.new("Part", char.Wings)
  800. cor.Name = "Thingy"
  801. cor.BottomSurface = 0
  802. cor.CanCollide = false
  803. cor.Size = Vector3.new(1, 6, 1)
  804. cor.Transparency = 1
  805. cor.TopSurface = 0
  806. corw = Instance.new("Weld", cor)
  807. corw.Part0 = torso
  808. corw.Part1 = cor
  809. corw.C0 = CFrame.new(-1.55, 3.4, .6) * CFrame.Angles(math.rad(145), math.rad(0), math.rad(48))
  810. corw.C1 = CFrame.new(0, 0, 0)
  811. weld1 = Instance.new("Weld", char.Wings)
  812. weld1.Part0 = cor
  813. weld1.Part1 = p1
  814. weld1.C0 = CFrame.new(0, 3, -1)
  815. HandleA = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "HandleA", Vector3.new(1.01999998, 0.410000026, 1.01999998))
  816. HandleAweld = weld(m, Character["Right Arm"], HandleA, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(6.86645508e-005, 0.00578308105, 0.000793457031, 1, 1.57159663e-009, 1.84536508e-009, -1.51411894e-009, 1.00000477, 9.46223736e-005, -1.81580617e-009, -9.4622359e-005, 1.00000489))
  817. FConnectorA1 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorA1", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  818. FConnectorA1weld = weld(m, HandleA, FConnectorA1, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410087585, -1.11513186, -0.410018921, -1, 9.74741943e-006, -1.35193727e-006, -9.74743125e-006, -1.00000489, 2.3929897e-007, -1.35189885e-006, 2.39313522e-007, 1.00000489))
  819. FConnectorA2 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorA2", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  820. FConnectorA2weld = weld(m, HandleA, FConnectorA2, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410102844, -1.10513186, -0.129695892, -1, 9.74805607e-006, -1.35614573e-006, -9.74806699e-006, -1.00000489, 5.55955921e-007, -1.35610435e-006, 5.55970473e-007, 1.00000489))
  821. FConnectorA3 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorA3", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  822. FConnectorA3weld = weld(m, HandleA, FConnectorA3, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410087585, -1.11496186, 0.140254974, -1, 9.74844261e-006, -1.35647815e-006, -9.74845443e-006, -1.00000489, 5.93368895e-007, -1.35643631e-006, 5.93383447e-007, 1.00000489))
  823. FConnectorA4 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorA4", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  824. FConnectorA4weld = weld(m, HandleA, FConnectorA4, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410064697, -1.11497116, 0.41003418, -1, 9.74773866e-006, -1.35528308e-006, -9.7477523e-006, -1.00000489, 5.13136911e-007, -1.35524226e-006, 5.13151463e-007, 1.00000489))
  825. FConnectorA5 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorA5", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  826. FConnectorA5weld = weld(m, HandleA, FConnectorA5, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.409896851, -1.11500096, 0.410381317, -1, 9.74811064e-006, -1.35720666e-006, -9.7481261e-006, -1.00000489, 6.21264917e-007, -1.35716482e-006, 6.21286745e-007, 1.00000489))
  827. HitboxA = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Royal purple", "HitboxA", Vector3.new(1.22000003, 1.00999999, 1.01999998))
  828. HitboxAweld = weld(m, HandleA, HitboxA, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.10004425, 0.899994373, -7.2479248e-005, 1, 2.3913432e-011, 1.214151e-011, 3.87364897e-011, 1.00000501, 3.17668309e-008, 1.75869319e-011, -3.16504156e-008, 1.00000501))
  829. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  830. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.704981804, 0.600097656, -0.400291443, 1.07934993e-005, 1.00000513, 0.000307456852, -1, 1.07920496e-005, 4.67940163e-006, 4.67608925e-006, -0.000307456678, 1.00000513))
  831. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  832. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.399999917, 0.210000008))
  833. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.409942627, -0.0047621727, 0.404830933, 1, -3.37975814e-010, -8.95103991e-010, 4.05866091e-010, 1.00000513, 0.000272899517, 9.25026722e-010, -0.000272899284, 1.00000513))
  834. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.200000003, 0.210000008))
  835. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.409942627, -0.704754353, 0.404701233, 1, -6.41774189e-010, -1.14527055e-009, 7.09687087e-010, 1.00000513, 0.000235188927, 1.17513577e-009, -0.000235188694, 1.00000513))
  836. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.600000024, 0.200000003))
  837. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.000686645508, 0.694943428, 0.600120544, -4.16014518e-005, 9.45778302e-005, 1.00000513, -9.60050784e-007, 1.00000513, -9.45776337e-005, -1, -9.64058017e-007, -4.16016046e-005))
  838. mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=3270017", Vector3.new(0, 0, 0), Vector3.new(0.646000028, 0.638000011, 1.35599995))
  839. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  840. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.704681396, 0.600074768, 0.399703979, 1.07932492e-005, 1.00000513, 0.000307390932, -1, 1.07918013e-005, 4.67938798e-006, 4.67607651e-006, -0.000307390757, 1.00000513))
  841. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  842. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.620000005, 0.200000003, 0.819999993))
  843. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.05175781e-005, 0.92485714, 0.000484466553, 1, 3.87098353e-009, 7.2322619e-009, -3.79667275e-009, 1.00000513, -5.19547029e-007, -7.20235427e-009, 5.19794412e-007, 1.00000513))
  844. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  845. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.810000002, 0.399999917, 0.210000008))
  846. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0950546265, -0.00472640991, 0.404769897, 1, -4.16721185e-010, -1.16062449e-009, 4.84667861e-010, 1.00000513, 0.000259734254, 1.19053056e-009, -0.000259734021, 1.00000513))
  847. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000006))
  848. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.214511871, 0.602371216, -0.525278091, 6.89506674e-009, 0.707192183, -0.707028747, -1, -4.38913787e-007, -4.48729907e-007, -6.27587383e-007, 0.707028747, 0.707192183))
  849. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  850. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000006))
  851. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.215366364, 0.602371216, -0.0753059387, 2.71407362e-006, 0.706899583, 0.707335591, -1, 2.16833246e-006, 1.66987672e-006, -3.53366175e-007, -0.707335591, 0.706899583))
  852. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  853. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.200000003, 0.620000005))
  854. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.409934998, -0.704768658, -0.000305175781, 1, -3.60254271e-010, -1.12575438e-009, 4.28148017e-010, 1.00000513, 0.000221444701, 1.15569176e-009, -0.000221444468, 1.00000513))
  855. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  856. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0953993797, 0.600135803, 0.399356842, 1.07937676e-005, 1.00000513, 0.000307317649, -1, 1.0792317e-005, 4.68049075e-006, 4.67718064e-006, -0.000307317474, 1.00000513))
  857. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  858. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  859. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0950679779, 0.600120544, -0.400672913, 1.07931874e-005, 1.00000513, 0.000307162001, -1, 1.07917376e-005, 4.68020016e-006, 4.67689188e-006, -0.000307161827, 1.00000513))
  860. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  861. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.399999917, 0.620000005))
  862. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.409927368, -0.00472259521, -0.000297546387, 1, -3.09861775e-010, -1.16061794e-009, 3.77793824e-010, 1.00000513, 0.00024700354, 1.19055654e-009, -0.000247003307, 1.00000513))
  863. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.810000002, 0.399999917, 0.210000008))
  864. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0950546265, 0.00469684601, 0.405296326, 1, -3.89069055e-010, -1.42533318e-009, -4.57056809e-010, -1.00000513, -0.000240535184, -1.45525392e-009, 0.000240534951, -1.00000513))
  865. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000036))
  866. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.214559555, 0.602371216, 0.0747890472, 6.91723301e-009, 0.707163751, -0.707071483, -1, -4.3898072e-007, -4.48717827e-007, -6.27488987e-007, 0.707071483, 0.707163751))
  867. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  868. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.200000003, 0.620000005))
  869. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.602371216, -0.215126038, 0.214544296, 1, -2.6962903e-008, 2.48683811e-008, 1.60773062e-009, 0.706893623, 0.707334518, -3.67035575e-008, -0.707334518, 0.706893623))
  870. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.600000024, 0.200000003, 1))
  871. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.695029736, 0.600158691, -0.000602722168, 1.07924507e-005, 1.00000513, 0.000307222479, -1, 1.07909991e-005, 4.68184771e-006, 4.67853852e-006, -0.000307222246, 1.00000513))
  872. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  873. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000036))
  874. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.215208054, 0.602371216, 0.524686813, 2.71457156e-006, 0.706890941, 0.707335711, -0.999997497, 2.1679848e-006, 1.67096596e-006, -3.5231912e-007, -0.707337737, 0.706888914))
  875. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  876. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.399999917, 0.210000008))
  877. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.409942627, 0.00470399857, 0.405349731, 1, -3.90714155e-010, -1.42410639e-009, -4.58702243e-010, -1.00000513, -0.000240880356, -1.45402668e-009, 0.000240880123, -1.00000513))
  878. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.610000014, 1.01999998))
  879. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-4.57763672e-005, 0.699993134, -8.39233398e-005, 1, 2.65332929e-011, 1.19964039e-011, 4.16229898e-011, 1.00000513, 3.18541424e-008, 1.80098159e-011, -3.16213118e-008, 1.00000513))
  880. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.600000024, 0.200000003))
  881. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.400688171, 0.694943428, 0.600135803, -4.16014518e-005, 9.45778302e-005, 1.00000513, -9.60050784e-007, 1.00000513, -9.45776337e-005, -1, -9.64058017e-007, -4.16016046e-005))
  882. mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=3270017", Vector3.new(0, 0, 0), Vector3.new(0.19600004, 0.219999999, 1.35599995))
  883. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.200000003, 0.819999993))
  884. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-4.57763672e-005, 0.914970875, 0.000156402588, 1, 3.83146959e-010, 1.04947406e-009, -3.0014724e-010, 1.00000513, -6.28933776e-008, -1.0198371e-009, 6.3162588e-008, 1.00000513))
  885. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  886. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.200000003, 0.620000005))
  887. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.602371216, -0.214633942, -0.215305328, 1, -2.69070721e-008, 2.46837875e-008, 3.65531747e-008, 0.707143307, -0.707091987, 1.77105497e-009, 0.707091987, 0.707143307))
  888. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.600000024, 0.200000003, 0.200000003))
  889. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.694721222, 0.600151062, -0.400558472, 1.0792096e-005, 1.00000513, 0.000307252514, -1, 1.07906444e-005, 4.68267717e-006, 4.67936752e-006, -0.00030725234, 1.00000513))
  890. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  891. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.810000002, 0.200000003, 0.210000008))
  892. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0950546265, -0.704750061, 0.404693604, 1, -5.70188841e-010, -1.14858878e-009, 6.38102626e-010, 1.00000513, 0.000234975247, 1.1784711e-009, -0.000234975014, 1.00000513))
  893. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.600000024, 0.200000003, 0.200000003))
  894. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.695051193, 0.600151062, 0.399570465, 1.07923161e-005, 1.00000513, 0.000307249313, -1, 1.07908654e-005, 4.68239432e-006, 4.67908512e-006, -0.000307249138, 1.00000513))
  895. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  896. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.200000003, 0.210000008))
  897. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.409950256, 0.704789639, 0.405284882, 1, -5.29048194e-010, -1.16270571e-009, -5.96991845e-010, -1.00000513, -0.000257128122, -1.19258425e-009, 0.000257127889, -1.00000513))
  898. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.810000002, 0.200000003, 0.210000008))
  899. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0950469971, 0.70477581, 0.405281067, 1, -4.60379734e-010, -1.16449506e-009, -5.28324051e-010, -1.00000513, -0.000256976229, -1.19439125e-009, 0.000256975996, -1.00000513))
  900. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.99999994, 1.01999998))
  901. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.60005188, -0.304827213, -0.000297546387, 1, -6.62538246e-010, -1.16981935e-009, 7.30470628e-010, 1.00000513, 0.000246760814, 1.19967103e-009, -0.000246760581, 1.00000513))
  902. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.200000003, 1.01999998))
  903. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-5.34057617e-005, 0.294992924, -0.000293731689, 1, -1.10349042e-010, -4.6138493e-010, 1.77988208e-010, 1.00000513, 7.43748387e-008, 4.9142046e-010, -7.41420081e-008, 1.00000513))
  904. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.600000024, 0.200000003))
  905. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.39931488, 0.694943428, 0.600097656, -4.16014518e-005, 9.45778302e-005, 1.00000513, -9.60050784e-007, 1.00000513, -9.45776337e-005, -1, -9.64058017e-007, -4.16016046e-005))
  906. mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=3270017", Vector3.new(0, 0, 0), Vector3.new(0.202000037, 0.219999999, 1.35599995))
  907. FHandleA1 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleA1", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  908. FHandleA1weld = weld(m, FConnectorA1, FHandleA1, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.28881836e-005, -0.0899443626, 0.000160217285, 1, 9.47310674e-010, -1.83126758e-009, -9.44816669e-010, 1, 1.51900167e-007, 1.83138127e-009, -1.51900167e-007, 1))
  909. FHandleA2 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleA2", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  910. FHandleA2weld = weld(m, FConnectorA2, FHandleA2, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.0899934769, 0, 1, -2.30699793e-010, 1.00612851e-010, 2.9406716e-010, 1.00000572, 1.59925548e-008, -1.28238753e-010, -2.03581294e-008, 1.00000572))
  911. FHandleA3 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleA3", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  912. FHandleA3weld = weld(m, FConnectorA3, FHandleA3, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.090004921, 3.81469727e-006, 1, 4.48693027e-010, -1.09935172e-010, -4.47141213e-010, 1, -2.09038262e-008, 1.10048859e-010, 2.09038262e-008, 1))
  913. FHandleA4 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleA4", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  914. FHandleA4weld = weld(m, FConnectorA4, FHandleA4, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-7.62939453e-006, -0.0900015831, 2.67028809e-005, 1, 8.51593795e-010, -8.99262886e-011, -8.46407722e-010, 1, -2.47964635e-008, 9.02673492e-011, 2.47964635e-008, 1))
  915. FHandleA5 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleA5", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  916. FHandleA5weld = weld(m, FConnectorA5, FHandleA5, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.0900025368, 7.2479248e-005, 1, 1.59918379e-009, 4.29054126e-010, -1.58659819e-009, 1, -1.01346814e-007, -4.28713065e-010, 1.01324986e-007, 1))
  917.  
  918. HandleB = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "HandleB", Vector3.new(1.01999998, 0.410000026, 1.01999998))
  919. HandleBweld = weld(m, Character["Left Arm"], HandleB, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-5.34057617e-005, 0.00579214096, -0.000717163086, -0.99999702, 1.30612687e-009, 2.74129752e-006, 1.1281549e-009, 1.00000882, -9.4532792e-005, -2.29434954e-006, -9.45326028e-005, -1.00000536))
  920. FConnectorB1 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorB1", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  921. FConnectorB1weld = weld(m, HandleB, FConnectorB1, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410011292, -1.09512377, -0.40996933, -0.999990344, 9.75173589e-006, -4.76017885e-006, -9.75114472e-006, -1.00001204, 2.27628334e-007, -4.34698632e-006, 2.29010766e-007, 1.00000203))
  922. FConnectorB2 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorB2", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  923. FConnectorB2weld = weld(m, HandleB, FConnectorB2, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410003662, -1.09513116, -0.129657745, -0.999986649, 9.75185594e-006, -5.20708772e-006, -9.75106377e-006, -1.00000668, 5.36027073e-007, -3.48685307e-006, 5.38973836e-007, 0.999993324))
  924. FConnectorB3 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorB3", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  925. FConnectorB3weld = weld(m, HandleB, FConnectorB3, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.409965515, -1.08497524, 0.140300751, -0.999993324, 9.75177409e-006, -3.97838994e-006, -9.75137755e-006, -1.00000334, 5.61856723e-007, -3.11826261e-006, 5.63341018e-007, 0.999996662))
  926. FConnectorB4 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorB4", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  927. FConnectorB4weld = weld(m, HandleB, FConnectorB4, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.409957886, -1.08498001, 0.410175323, -0.999991894, 9.75470903e-006, -3.12404359e-006, -9.75422699e-006, -1.00000405, 5.46198862e-007, -2.07960943e-006, 5.47988748e-007, 0.999995947))
  928. FConnectorB5 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorB5", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  929. FConnectorB5weld = weld(m, HandleB, FConnectorB5, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.409980774, -1.09494543, -0.409542084, -0.999974728, 9.75853163e-006, -6.0076236e-006, -9.75704006e-006, -1.00001264, 6.99823431e-007, -2.75148182e-006, 7.05331331e-007, 0.999987364))
  930. HitboxB = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Royal purple", "HitboxB", Vector3.new(1.22000003, 1.00999999, 1.01999998))
  931. HitboxBweld = weld(m, HandleB, HitboxB, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.100006104, 0.889988422, -8.01086426e-005, 0.999965847, -7.24100557e-010, 3.32365107e-006, -7.63507535e-010, 1.00002456, 3.05735739e-008, 3.58721138e-007, -2.40979716e-008, 0.999989808))
  932. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.200000003, 0.210000008))
  933. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410049438, 0.714781284, 0.405288696, 0.999982476, 1.32186387e-010, 7.77321588e-007, 5.98021299e-010, -1.00001609, -0.000257281994, -1.25018551e-006, 0.00025728374, -0.99999851))
  934. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.200000003, 1.01999998))
  935. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.28881836e-005, 0.285013676, -0.000282287598, 0.999967337, -1.5549535e-009, 5.20209369e-006, 1.61488642e-010, 1.00001812, 7.64994184e-008, -1.3707679e-006, -6.97400537e-008, 0.999985218))
  936. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.399999917, 0.620000005))
  937. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.409980774, -0.0147089958, -0.000305175781, 0.999965847, -2.17003437e-009, 4.9788764e-006, 3.62124303e-010, 1.00002444, 0.000246998534, -1.29649527e-006, -0.000247000571, 0.999989808))
  938. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.200000003, 0.620000005))
  939. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410041809, -0.714772701, -0.000305175781, 0.999984264, 5.30370525e-010, 7.77336254e-007, -9.50127754e-010, 1.00000787, 0.00022139927, 1.25007e-006, -0.000221399358, 0.999992192))
  940. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.399999917, 0.210000008))
  941. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410003662, 0.0146970749, 0.40537262, 0.999965847, -2.17019336e-009, 4.97882229e-006, -3.70234204e-010, -1.00002444, -0.000240876077, 1.29644116e-006, 0.00024087794, -0.999989808))
  942. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.200000003, 0.819999993))
  943. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.05175781e-005, 0.904989719, 0.000244140625, 0.999978065, -7.79672504e-009, 3.02157605e-006, 6.82267665e-009, 1.00001097, -1.16917363e-007, -1.95484972e-007, 1.21617632e-007, 0.999989033))
  944. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  945. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.620000005, 0.200000003, 0.819999993))
  946. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(4.57763672e-005, 0.914862633, 0.000553131104, 0.999978065, -2.87229418e-009, 2.06913091e-006, 1.8980213e-009, 1.00001097, -5.95959136e-007, 7.56950044e-007, 6.00666681e-007, 0.999989033))
  947. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  948. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.600000024, 0.200000003, 1))
  949. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.685016155, 0.60004425, -0.000576019287, 1.07880278e-005, 1.0000155, 0.000307261536, -0.999969006, 1.0787875e-005, 2.61563605e-006, 6.60559135e-006, -0.000307264534, 0.999984682))
  950. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  951. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.600000024, 0.200000003, 0.200000003))
  952. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.684755325, 0.600059509, -0.400756836, 1.0788599e-005, 1.00000787, 0.000307488954, -0.999984264, 1.07877813e-005, 3.72219597e-006, 5.74624983e-006, -0.000307490496, 0.999992192))
  953. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  954. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.600000024, 0.200000003, 0.200000003))
  955. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.685072899, 0.600067139, 0.399261475, 1.07872711e-005, 1.0000155, 0.00030746602, -0.999969006, 1.07870783e-005, 2.73933233e-006, 6.729284e-006, -0.000307469018, 0.999984682))
  956. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  957. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.600000024, 0.200000003))
  958. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.399326324, 0.684971809, 0.599990845, -4.03382401e-005, 9.44945641e-005, 0.999991834, -9.62037007e-007, 1.00000787, -9.44897838e-005, -0.999983966, -9.65175104e-007, -4.23658821e-005))
  959. mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=3270017", Vector3.new(0, 0, 0), Vector3.new(0.202000037, 0.219999999, 1.35599995))
  960. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.810000002, 0.200000003, 0.210000008))
  961. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0949478149, -0.714713573, 0.404712677, 0.999982774, 2.57471877e-010, 7.7719352e-007, -7.87075238e-010, 1.00001347, 0.000235129759, 1.25028396e-006, -0.000235130938, 0.999996126))
  962. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.810000002, 0.399999917, 0.210000008))
  963. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0949478149, -0.0146975517, 0.4047966, 0.999982774, 6.53486099e-010, 7.77193463e-007, -1.11419485e-009, 1.00001299, 0.000259818073, 1.25028328e-006, -0.000259819906, 0.99999553))
  964. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.600000024, 0.200000003))
  965. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.400676727, 0.684971809, 0.600036621, -4.03382401e-005, 9.44945641e-005, 0.999991834, -9.62037007e-007, 1.00000787, -9.44897838e-005, -0.999983966, -9.65175104e-007, -4.23658821e-005))
  966. mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=3270017", Vector3.new(0, 0, 0), Vector3.new(0.19600004, 0.219999999, 1.35599995))
  967. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.600000024, 0.200000003))
  968. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.000675201416, 0.684971809, 0.600013733, -4.03382401e-005, 9.44945641e-005, 0.999991834, -9.62037007e-007, 1.00000787, -9.44897838e-005, -0.999983966, -9.65175104e-007, -4.23658821e-005))
  969. mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=3270017", Vector3.new(0, 0, 0), Vector3.new(0.646000028, 0.638000011, 1.35599995))
  970. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  971. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.714962482, 0.599998474, -0.400279999, 1.07917776e-005, 1.00000787, 0.000307536626, -0.999984264, 1.07909609e-005, 3.72180239e-006, 5.74585465e-006, -0.000307538168, 0.999992192))
  972. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  973. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  974. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0853996277, 0.600074768, 0.399375916, 1.07918922e-005, 1.00001574, 0.000307276874, -0.999968529, 1.07916239e-005, 3.00816009e-006, 7.05953335e-006, -0.000307279872, 0.999984324))
  975. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  976. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.200000003, 0.620000005))
  977. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.602294922, -0.221727371, -0.222377777, 0.999968529, -2.77844325e-008, 1.5804543e-006, -1.73086164e-006, 0.707148612, -0.707064986, 1.76833453e-006, 0.707087159, 0.707126319))
  978. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  979. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0850524902, 0.600036621, -0.400672913, 1.07914002e-005, 1.00001574, 0.0003071838, -0.999968529, 1.07914666e-005, 1.92046173e-006, 5.97185317e-006, -0.000307186769, 0.999984324))
  980. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  981. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000006))
  982. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.221570969, 0.602279663, -0.532333374, -9.16450119e-007, 0.707201421, -0.707024872, -0.99998188, -4.39811004e-007, -1.23922871e-006, 3.05380581e-007, 0.707037866, 0.707188487))
  983. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  984. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000036))
  985. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.221664429, 0.602294922, 0.0677280426, -5.32410468e-007, 0.707169592, -0.707043946, -0.999968529, 4.26314045e-007, -2.87682087e-006, 1.1334331e-006, 0.707066119, 0.707147479))
  986. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  987. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.200000003, 0.620000005))
  988. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.602279663, -0.222204208, 0.221616745, 0.999968529, -2.7891728e-008, 1.5804543e-006, 1.76886238e-006, 0.706902444, 0.707310975, 1.7303239e-006, -0.707333207, 0.706880331))
  989. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  990. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.71464777, 0.599990845, 0.399719238, 1.07905635e-005, 1.00000787, 0.000307468435, -0.999984264, 1.07897467e-005, 3.7218565e-006, 5.74590968e-006, -0.000307469978, 0.999992192))
  991. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  992. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000036))
  993. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.222238541, 0.602272034, 0.531747818, 3.61345883e-006, 0.706890404, 0.707323194, -0.999984264, 2.18690184e-006, 8.96424808e-007, 5.20473066e-007, -0.70733428, 0.706879318))
  994. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  995. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000006))
  996. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.222442627, 0.602287292, -0.0682048798, 2.74106606e-006, 0.706903875, 0.707309544, -0.999968529, 1.72691671e-006, -1.90388391e-006, 3.00002284e-007, -0.707331777, 0.706881762))
  997. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  998. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.810000002, 0.399999917, 0.210000008))
  999. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0949707031, 0.014693737, 0.405315399, 0.999965847, -2.00778438e-009, 5.06809101e-006, -1.86809165e-010, -1.00002444, -0.000240532332, 1.38570761e-006, 0.000240534195, -0.999989808))
  1000. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.99999994, 1.01999998))
  1001. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.599967957, -0.314879894, -0.000305175781, 0.999968529, -1.52550794e-009, 3.47273135e-006, 2.76023454e-010, 1.00001574, 0.000246752985, 5.82059499e-007, -0.000246754033, 0.999984324))
  1002. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.810000002, 0.200000003, 0.210000008))
  1003. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0949478149, 0.71477747, 0.405269623, 0.999983668, 2.62990379e-010, 7.77281798e-007, 6.87050083e-010, -1.00001037, -0.00025712885, -1.25016015e-006, 0.000257130014, -0.99999398))
  1004. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.610000014, 1.01999998))
  1005. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(4.57763672e-005, 0.690003395, 0, 0.999978065, -3.37791017e-009, 2.19185767e-006, 2.40435716e-009, 1.00001097, 5.20303729e-008, 6.34224364e-007, -4.73301043e-008, 0.999989033))
  1006. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.200000003, 0.210000008))
  1007. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410049438, -0.714709282, 0.404720306, 0.999984264, 2.45380903e-011, 7.7730283e-007, -4.26871205e-010, 1.00000787, 0.000235340878, 1.25010342e-006, -0.000235341198, 0.999992192))
  1008. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Royal purple", "Part", Vector3.new(0.200000003, 0.399999917, 0.210000008))
  1009. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410041809, -0.0147390366, 0.404838562, 0.999983072, 5.45701151e-010, 7.77317439e-007, -1.05576647e-009, 1.0000155, 0.000272982696, 1.25019938e-006, -0.000272984529, 0.999998391))
  1010. FHandleB1 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleB1", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  1011. FHandleB1weld = weld(m, FConnectorB1, FHandleB1, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.05175781e-005, -0.100004435, 3.81469727e-006, 0.999987125, 9.48046641e-010, -8.29304327e-007, -1.90026062e-009, 1.00000644, -2.25118129e-008, -8.29517148e-007, 1.97178451e-008, 0.999993563))
  1012. FHandleB2 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleB2", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  1013. FHandleB2weld = weld(m, FConnectorB2, FHandleB2, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.0999953747, -1.90734863e-005, 0.999986887, 1.7767473e-009, -8.2923782e-007, -2.74682477e-009, 1.00000656, -3.37167876e-008, -8.60301839e-007, 3.08791641e-008, 0.999993443))
  1014. FHandleB3 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleB3", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  1015. FHandleB3weld = weld(m, FConnectorB3, FHandleB3, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.52587891e-005, -0.110008478, -6.48498535e-005, 0.999993801, 1.65772562e-009, -1.46104639e-007, -2.11578732e-009, 1.0000031, -3.14466888e-008, -6.52590643e-007, 3.01006366e-008, 0.999996901))
  1016. FHandleB4 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleB4", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  1017. FHandleB4weld = weld(m, FConnectorB4, FHandleB4, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.05175781e-005, -0.110030413, -4.57763672e-005, 0.999992371, -3.29658301e-010, -1.30871194e-006, -2.33423003e-010, 1.00000381, -5.04951458e-009, 3.25705969e-007, 3.39059625e-009, 0.999996185))
  1018. FHandleB5 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleB5", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  1019. FHandleB5weld = weld(m, FConnectorB5, FHandleB5, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(7.62939453e-006, -0.0900087357, -0.000114440918, 0.999993801, 3.53735596e-009, -1.22842721e-006, -3.99611277e-009, 1.0000031, -1.37908501e-007, 4.29716692e-007, 1.36555173e-007, 0.999996901))
  1020. ----------------------------------------------------
  1021. local m = Instance.new("Model")
  1022. m.Name = "Hair"
  1023. p1 = Instance.new("Part", m)
  1024. p1.BrickColor = BrickColor.new("Really black")
  1025. p1.FormFactor = Enum.FormFactor.Symmetric
  1026. p1.Size = Vector3.new(1, 1, 1)
  1027. p1.CFrame = CFrame.new(-2.49043155, 8.24595642, -3.40113306, -5.48362732e-006, -0.978699088, 0.205299795, 3.27825546e-007, -0.205299854, -0.978699148, 1, -5.28991222e-006, 1.48639083e-006)
  1028. p1.CanCollide = false
  1029. p1.Locked = true
  1030. p1.BottomSurface = Enum.SurfaceType.Smooth
  1031. p1.TopSurface = Enum.SurfaceType.Smooth
  1032. b1 = Instance.new("SpecialMesh", p1)
  1033. b1.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1034. b1.TextureId = ""
  1035. b1.MeshType = Enum.MeshType.FileMesh
  1036. b1.Name = "Mesh"
  1037. b1.VertexColor = Vector3.new(0, 0, 0)
  1038. b1.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  1039. p2 = Instance.new("Part", m)
  1040. p2.BrickColor = BrickColor.new("Pastel brown")
  1041. p2.Transparency = 1
  1042. p2.Name = "Head"
  1043. p2.FormFactor = Enum.FormFactor.Symmetric
  1044. p2.Size = Vector3.new(2, 1, 1)
  1045. p2.CFrame = CFrame.new(-1.70008016, 8.14794922, -3.40013027, 4.24603923e-006, 7.4505806e-008, -1, -1.50268988e-007, 1, 1.49011612e-008, 1.00000012, 6.79109462e-008, 4.23316806e-006)
  1046. p2.CanCollide = false
  1047. p2.Locked = true
  1048. p2.TopSurface = Enum.SurfaceType.Smooth
  1049. b2 = Instance.new("SpecialMesh", p2)
  1050. b2.MeshType = Enum.MeshType.Head
  1051. b2.Name = "Mesh"
  1052. b2.Scale = Vector3.new(1.25, 1.25, 1.25)
  1053. p3 = Instance.new("Part", m)
  1054. p3.BrickColor = BrickColor.new("Really black")
  1055. p3.FormFactor = Enum.FormFactor.Symmetric
  1056. p3.Size = Vector3.new(2, 2, 2)
  1057. p3.CFrame = CFrame.new(-1.70003617, 8.71796131, -3.4000442, 2.57710985e-006, 6.95607483e-008, -1.00000012, -1.20466638e-007, 1, 9.95640903e-009, 1.00000024, 3.81086345e-008, 2.56423846e-006)
  1058. p3.CanCollide = false
  1059. p3.Locked = true
  1060. p3.BottomSurface = Enum.SurfaceType.Smooth
  1061. p3.TopSurface = Enum.SurfaceType.Smooth
  1062. b3 = Instance.new("SpecialMesh", p3)
  1063. b3.MeshId = "http://www.roblox.com/asset/?id=16627529"
  1064. b3.TextureId = ""
  1065. b3.MeshType = Enum.MeshType.FileMesh
  1066. b3.Name = "Mesh"
  1067. b3.VertexColor = Vector3.new(0, 0, 0)
  1068. b3.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  1069. p4 = Instance.new("Part", m)
  1070. p4.BrickColor = BrickColor.new("Really black")
  1071. p4.FormFactor = Enum.FormFactor.Symmetric
  1072. p4.Size = Vector3.new(1, 1, 1)
  1073. p4.CFrame = CFrame.new(-1.77981007, 8.84795475, -3.40016508, 5.79576135e-006, 7.9450956e-008, -1.00000012, -1.80071311e-007, 1, 1.98458743e-008, 1.00000024, 9.77132402e-008, 5.78289018e-006)
  1074. p4.CanCollide = false
  1075. p4.Locked = true
  1076. p4.BottomSurface = Enum.SurfaceType.Smooth
  1077. p4.TopSurface = Enum.SurfaceType.Smooth
  1078. b4 = Instance.new("SpecialMesh", p4)
  1079. b4.MeshId = "http://www.roblox.com/asset/?id=19326912"
  1080. b4.TextureId = ""
  1081. b4.MeshType = Enum.MeshType.FileMesh
  1082. b4.Name = "Mesh"
  1083. b4.VertexColor = Vector3.new(0, 0, 0)
  1084. p5 = Instance.new("Part", m)
  1085. p5.BrickColor = BrickColor.new("Really black")
  1086. p5.FormFactor = Enum.FormFactor.Symmetric
  1087. p5.Size = Vector3.new(1, 1, 1)
  1088. p5.CFrame = CFrame.new(-1.70003772, 8.46796131, -3.40004301, -3.43517968e-007, 2.98088111e-007, -1, -1.00421907e-007, 1, 2.38484063e-007, 1.00000012, 1.80640072e-008, -3.56389592e-007)
  1089. p5.CanCollide = false
  1090. p5.Locked = true
  1091. p5.BottomSurface = Enum.SurfaceType.Smooth
  1092. p5.TopSurface = Enum.SurfaceType.Smooth
  1093. b5 = Instance.new("SpecialMesh", p5)
  1094. b5.MeshId = "http://www.roblox.com/asset/?id=45916884"
  1095. b5.TextureId = ""
  1096. b5.MeshType = Enum.MeshType.FileMesh
  1097. b5.Name = "Mesh"
  1098. b5.VertexColor = Vector3.new(0, 0, 0)
  1099. b5.Scale = Vector3.new(1, 0.899999976, 1)
  1100. p6 = Instance.new("Part", m)
  1101. p6.BrickColor = BrickColor.new("Really black")
  1102. p6.FormFactor = Enum.FormFactor.Symmetric
  1103. p6.Size = Vector3.new(1, 1, 1)
  1104. p6.CFrame = CFrame.new(-1.89967656, 8.58795834, -3.44990659, -5.81936433e-007, 5.36502284e-007, -0.99999994, -1.3998249e-007, 1, 4.76898265e-007, 1, 5.76247672e-008, -5.94808171e-007)
  1105. p6.CanCollide = false
  1106. p6.Locked = true
  1107. p6.BottomSurface = Enum.SurfaceType.Smooth
  1108. p6.TopSurface = Enum.SurfaceType.Smooth
  1109. b6 = Instance.new("SpecialMesh", p6)
  1110. b6.MeshId = "http://www.roblox.com/asset/?id=62246019"
  1111. b6.TextureId = ""
  1112. b6.MeshType = Enum.MeshType.FileMesh
  1113. b6.Name = "Mesh"
  1114. b6.VertexColor = Vector3.new(0, 0, 0)
  1115. p7 = Instance.new("Part", m)
  1116. p7.BrickColor = BrickColor.new("Really black")
  1117. p7.FormFactor = Enum.FormFactor.Symmetric
  1118. p7.Size = Vector3.new(1, 1, 1)
  1119. p7.CFrame = CFrame.new(-1.89918542, 8.31796837, -3.50097537, -4.62727087e-007, 5.36502228e-007, -0.999999881, -1.39982518e-007, 1, 4.76898208e-007, 0.99999994, 5.76247459e-008, -4.75598938e-007)
  1120. p7.CanCollide = false
  1121. p7.Locked = true
  1122. p7.BottomSurface = Enum.SurfaceType.Smooth
  1123. p7.TopSurface = Enum.SurfaceType.Smooth
  1124. b7 = Instance.new("SpecialMesh", p7)
  1125. b7.MeshId = "http://www.roblox.com/asset/?id=76056263"
  1126. b7.TextureId = ""
  1127. b7.MeshType = Enum.MeshType.FileMesh
  1128. b7.Name = "Mesh"
  1129. b7.VertexColor = Vector3.new(0, 0, 0)
  1130. p8 = Instance.new("Part", m)
  1131. p8.BrickColor = BrickColor.new("Really black")
  1132. p8.FormFactor = Enum.FormFactor.Symmetric
  1133. p8.Size = Vector3.new(1, 1, 1)
  1134. p8.CFrame = CFrame.new(-2.62433338, 7.66397905, -3.4010179, -1.17798254e-006, -0.805111349, 0.593123376, -2.5008859e-007, -0.593123615, -0.805111527, 0.999999881, -9.58229293e-007, 4.4941558e-007)
  1135. p8.CanCollide = false
  1136. p8.Locked = true
  1137. p8.BottomSurface = Enum.SurfaceType.Smooth
  1138. p8.TopSurface = Enum.SurfaceType.Smooth
  1139. b8 = Instance.new("SpecialMesh", p8)
  1140. b8.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1141. b8.TextureId = ""
  1142. b8.MeshType = Enum.MeshType.FileMesh
  1143. b8.Name = "Mesh"
  1144. b8.VertexColor = Vector3.new(0, 0, 0)
  1145. b8.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  1146. p9 = Instance.new("Part", m)
  1147. p9.BrickColor = BrickColor.new("Really black")
  1148. p9.FormFactor = Enum.FormFactor.Symmetric
  1149. p9.Size = Vector3.new(2, 1, 2)
  1150. p9.CFrame = CFrame.new(-1.76505995, 8.56096649, -3.40065479, -9.73168881e-007, -0.0995008349, -0.995037436, -1.70322267e-007, 0.995037675, -0.0995009243, 1, 1.13823972e-007, -6.80968242e-007)
  1151. p9.CanCollide = false
  1152. p9.Locked = true
  1153. p9.BottomSurface = Enum.SurfaceType.Smooth
  1154. p9.TopSurface = Enum.SurfaceType.Smooth
  1155. b9 = Instance.new("SpecialMesh", p9)
  1156. b9.MeshId = "http://www.roblox.com/asset/?id=12259089"
  1157. b9.TextureId = ""
  1158. b9.MeshType = Enum.MeshType.FileMesh
  1159. b9.Name = "Mesh"
  1160. b9.VertexColor = Vector3.new(0, 0, 0)
  1161. b9.Scale = Vector3.new(1.01999998, 1.04999995, 1.04999995)
  1162. p10 = Instance.new("Part", m)
  1163. p10.BrickColor = BrickColor.new("Really black")
  1164. p10.FormFactor = Enum.FormFactor.Symmetric
  1165. p10.Size = Vector3.new(1, 1, 1)
  1166. p10.CFrame = CFrame.new(-2.0207715, 9.06097031, -3.39961624, -1.10652763e-006, -0.683569431, -0.729885519, -2.85231891e-007, 0.729885638, -0.68356967, 1.00000012, -3.22293062e-007, -8.40051371e-007)
  1167. p10.CanCollide = false
  1168. p10.Locked = true
  1169. p10.BottomSurface = Enum.SurfaceType.Smooth
  1170. p10.TopSurface = Enum.SurfaceType.Smooth
  1171. b10 = Instance.new("SpecialMesh", p10)
  1172. b10.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1173. b10.TextureId = ""
  1174. b10.MeshType = Enum.MeshType.FileMesh
  1175. b10.Name = "Mesh"
  1176. b10.VertexColor = Vector3.new(0, 0, 0)
  1177. b10.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  1178. p11 = Instance.new("Part", m)
  1179. p11.BrickColor = BrickColor.new("Really black")
  1180. p11.FormFactor = Enum.FormFactor.Symmetric
  1181. p11.Size = Vector3.new(1, 1, 1)
  1182. p11.CFrame = CFrame.new(-2.16468835, 8.78595829, -3.40089417, -1.41617738e-006, -0.989475727, -0.144699216, -4.36450762e-007, 0.144699067, -0.989476085, 1.00000024, -9.47996682e-007, -7.38401468e-007)
  1183. p11.CanCollide = false
  1184. p11.Locked = true
  1185. p11.BottomSurface = Enum.SurfaceType.Smooth
  1186. p11.TopSurface = Enum.SurfaceType.Smooth
  1187. b11 = Instance.new("SpecialMesh", p11)
  1188. b11.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1189. b11.TextureId = ""
  1190. b11.MeshType = Enum.MeshType.FileMesh
  1191. b11.Name = "Mesh"
  1192. b11.VertexColor = Vector3.new(0, 0, 0)
  1193. b11.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  1194. p12 = Instance.new("Part", m)
  1195. p12.BrickColor = BrickColor.new("Really black")
  1196. p12.FormFactor = Enum.FormFactor.Custom
  1197. p12.Size = Vector3.new(1, 3.5, 1)
  1198. p12.CFrame = CFrame.new(-3.74216318, 6.74288082, -3.40101933, -1.20476273e-006, -0.553697288, 0.832718134, -3.31002866e-007, -0.832718611, -0.553697169, 1.00000036, -8.7345768e-007, 3.69213154e-007)
  1199. p12.CanCollide = false
  1200. p12.Locked = true
  1201. p12.BottomSurface = Enum.SurfaceType.Smooth
  1202. p12.TopSurface = Enum.SurfaceType.Smooth
  1203. b12 = Instance.new("SpecialMesh", p12)
  1204. b12.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1205. b12.TextureId = ""
  1206. b12.MeshType = Enum.MeshType.FileMesh
  1207. b12.Name = "Mesh"
  1208. b12.VertexColor = Vector3.new(0, 0, 0)
  1209. b12.Scale = Vector3.new(1, 3, 1.29999995)
  1210. p13 = Instance.new("Part", m)
  1211. p13.BrickColor = BrickColor.new("Really black")
  1212. p13.FormFactor = Enum.FormFactor.Custom
  1213. p13.Size = Vector3.new(1, 2, 1)
  1214. p13.CFrame = CFrame.new(-3.32689047, 6.86741829, -3.40101862, -9.81709945e-007, -0.319307148, 0.947651446, -5.6545997e-007, -0.947651923, -0.31930691, 1.00000048, -8.39551717e-007, 1.79318391e-007)
  1215. p13.CanCollide = false
  1216. p13.Locked = true
  1217. p13.BottomSurface = Enum.SurfaceType.Smooth
  1218. p13.TopSurface = Enum.SurfaceType.Smooth
  1219. b13 = Instance.new("SpecialMesh", p13)
  1220. b13.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1221. b13.TextureId = ""
  1222. b13.MeshType = Enum.MeshType.FileMesh
  1223. b13.Name = "Mesh"
  1224. b13.VertexColor = Vector3.new(0, 0, 0)
  1225. b13.Scale = Vector3.new(1, 3, 1.29999995)
  1226. p14 = Instance.new("Part", m)
  1227. p14.BrickColor = BrickColor.new("Really black")
  1228. p14.FormFactor = Enum.FormFactor.Custom
  1229. p14.Size = Vector3.new(1, 2, 1)
  1230. p14.CFrame = CFrame.new(-3.02689028, 7.96740961, -3.40101862, -1.33478545e-006, -0.750354111, 0.661036491, -5.20037702e-008, -0.661037207, -0.750354171, 1.0000006, -6.31296757e-007, 2.01137496e-007)
  1231. p14.CanCollide = false
  1232. p14.Locked = true
  1233. p14.BottomSurface = Enum.SurfaceType.Smooth
  1234. p14.TopSurface = Enum.SurfaceType.Smooth
  1235. b14 = Instance.new("SpecialMesh", p14)
  1236. b14.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1237. b14.TextureId = ""
  1238. b14.MeshType = Enum.MeshType.FileMesh
  1239. b14.Name = "Mesh"
  1240. b14.VertexColor = Vector3.new(0, 0, 0)
  1241. b14.Scale = Vector3.new(1, 3, 1.29999995)
  1242. p15 = Instance.new("Part", m)
  1243. p15.BrickColor = BrickColor.new("Really black")
  1244. p15.FormFactor = Enum.FormFactor.Custom
  1245. p15.Size = Vector3.new(1, 2.5, 1)
  1246. p15.CFrame = CFrame.new(-2.96531463, 7.75924349, -2.90101862, 0.342019022, -0.520305753, 0.782499552, -1.1920929e-007, -0.832718909, -0.553697407, 0.939693451, 0.189374983, -0.284806281)
  1247. p15.CanCollide = false
  1248. p15.Locked = true
  1249. p15.BottomSurface = Enum.SurfaceType.Smooth
  1250. p15.TopSurface = Enum.SurfaceType.Smooth
  1251. b15 = Instance.new("SpecialMesh", p15)
  1252. b15.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1253. b15.TextureId = ""
  1254. b15.MeshType = Enum.MeshType.FileMesh
  1255. b15.Name = "Mesh"
  1256. b15.VertexColor = Vector3.new(0, 0, 0)
  1257. b15.Scale = Vector3.new(1, 3, 1.29999995)
  1258. p16 = Instance.new("Part", m)
  1259. p16.BrickColor = BrickColor.new("Really black")
  1260. p16.FormFactor = Enum.FormFactor.Custom
  1261. p16.Size = Vector3.new(1, 2.5, 1)
  1262. p16.CFrame = CFrame.new(-2.96531439, 7.75924349, -3.80101967, -0.258820295, -0.534830391, 0.804343879, -1.78813934e-007, -0.832718968, -0.553697228, 0.96592629, -0.143308073, 0.215523779)
  1263. p16.CanCollide = false
  1264. p16.Locked = true
  1265. p16.BottomSurface = Enum.SurfaceType.Smooth
  1266. p16.TopSurface = Enum.SurfaceType.Smooth
  1267. b16 = Instance.new("SpecialMesh", p16)
  1268. b16.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1269. b16.TextureId = ""
  1270. b16.MeshType = Enum.MeshType.FileMesh
  1271. b16.Name = "Mesh"
  1272. b16.VertexColor = Vector3.new(0, 0, 0)
  1273. b16.Scale = Vector3.new(1, 3, 1.29999995)
  1274. p17 = Instance.new("Part", m)
  1275. p17.BrickColor = BrickColor.new("Really black")
  1276. p17.FormFactor = Enum.FormFactor.Custom
  1277. p17.Size = Vector3.new(1, 2.4000001, 1)
  1278. p17.CFrame = CFrame.new(-2.69075108, 7.07788849, -3.40101933, -1.13248825e-006, -0.319307148, 0.947651625, -1.1920929e-006, -0.947652161, -0.319306791, 1.0000006, -1.54972076e-006, 1.04308128e-007)
  1279. p17.CanCollide = false
  1280. p17.Locked = true
  1281. p17.BottomSurface = Enum.SurfaceType.Smooth
  1282. p17.TopSurface = Enum.SurfaceType.Smooth
  1283. b17 = Instance.new("SpecialMesh", p17)
  1284. b17.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1285. b17.TextureId = ""
  1286. b17.MeshType = Enum.MeshType.FileMesh
  1287. b17.Name = "Mesh"
  1288. b17.VertexColor = Vector3.new(0, 0, 0)
  1289. b17.Scale = Vector3.new(1, 3, 1.29999995)
  1290. p18 = Instance.new("Part", m)
  1291. p18.BrickColor = BrickColor.new("Really black")
  1292. p18.FormFactor = Enum.FormFactor.Custom
  1293. p18.Size = Vector3.new(2, 2, 2)
  1294. p18.CFrame = CFrame.new(-1.70003319, 8.71796608, -3.40004444, -2.37434961e-006, 1.78813934e-007, 1.00000036, -2.35242567e-007, 1.00000072, 3.27825546e-007, -1.0000006, 7.95440158e-009, -2.91315405e-006)
  1295. p18.CanCollide = false
  1296. p18.Locked = true
  1297. p18.BottomSurface = Enum.SurfaceType.Smooth
  1298. p18.TopSurface = Enum.SurfaceType.Smooth
  1299. b18 = Instance.new("SpecialMesh", p18)
  1300. b18.MeshId = "http://www.roblox.com/asset/?id=16627529"
  1301. b18.TextureId = ""
  1302. b18.MeshType = Enum.MeshType.FileMesh
  1303. b18.Name = "Mesh"
  1304. b18.VertexColor = Vector3.new(0, 0, 0)
  1305. b18.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  1306. w1 = Instance.new("Weld", p1)
  1307. w1.Name = "Head_Weld"
  1308. w1.Part0 = p1
  1309. w1.C0 = CFrame.new(3.40111661, -0.744508088, 8.58160019, -5.48362732e-006, 3.27825546e-007, 1, -0.978699088, -0.205299854, -5.30481339e-006, 0.205299824, -0.978699148, 1.49011612e-006)
  1310. w1.Part1 = p2
  1311. w1.C1 = CFrame.new(3.40013766, -8.14794827, -1.70006609, 4.23192978e-006, -1.08796726e-007, 1.00000012, 2.9664772e-008, 1, 1.08796598e-007, -1.00000012, 2.96642924e-008, 4.23192978e-006)
  1312. w2 = Instance.new("Weld", p2)
  1313. w2.Name = "Part_Weld"
  1314. w2.Part0 = p2
  1315. w2.C0 = CFrame.new(3.40013766, -8.14794827, -1.70006609, 4.23192978e-006, -1.08796726e-007, 1.00000012, 2.9664772e-008, 1, 1.08796598e-007, -1.00000012, 2.96642924e-008, 4.23192978e-006)
  1316. w2.Part1 = p3
  1317. w2.C1 = CFrame.new(3.40004802, -8.71796036, -1.70002759, 2.56299973e-006, -7.89943471e-008, 1, 2.47196947e-008, 1, 7.89942831e-008, -1, 2.47194887e-008, 2.56299973e-006)
  1318. w3 = Instance.new("Weld", p3)
  1319. w3.Name = "Part_Weld"
  1320. w3.Part0 = p3
  1321. w3.C0 = CFrame.new(3.40004802, -8.71796036, -1.70002759, 2.56299973e-006, -7.89943471e-008, 1, 2.47196947e-008, 1, 7.89942831e-008, -1, 2.47194887e-008, 2.56299973e-006)
  1322. w3.Part1 = p4
  1323. w3.C1 = CFrame.new(3.40017533, -8.8479538, -1.77979064, 5.78165054e-006, -1.38599077e-007, 1, 3.46098972e-008, 1, 1.38598878e-007, -1, 3.46090907e-008, 5.78165054e-006)
  1324. w4 = Instance.new("Weld", p4)
  1325. w4.Name = "Part_Weld"
  1326. w4.Part0 = p4
  1327. w4.C0 = CFrame.new(3.40017533, -8.8479538, -1.77979064, 5.78165054e-006, -1.38599077e-007, 1, 3.46098972e-008, 1, 1.38598878e-007, -1, 3.46090907e-008, 5.78165054e-006)
  1328. w4.Part1 = p5
  1329. w4.C1 = CFrame.new(3.40004182, -8.46796036, -1.70004117, -3.57627869e-007, -5.89495883e-008, 0.99999994, 2.53247009e-007, 1, 5.89496665e-008, -0.99999994, 2.53247009e-007, -3.57627869e-007)
  1330. w5 = Instance.new("Weld", p5)
  1331. w5.Name = "Part_Weld"
  1332. w5.Part0 = p5
  1333. w5.C0 = CFrame.new(3.40004182, -8.46796036, -1.70004117, -3.57627869e-007, -5.89495883e-008, 0.99999994, 2.53247009e-007, 1, 5.89496665e-008, -0.99999994, 2.53247009e-007, -3.57627869e-007)
  1334. w5.Part1 = p6
  1335. w5.C1 = CFrame.new(3.44990563, -8.58795738, -1.89968324, -5.96046448e-007, -9.85101565e-008, 1, 4.91661183e-007, 1, 9.85104407e-008, -1, 4.9166124e-007, -5.96046448e-007)
  1336. w6 = Instance.new("Weld", p6)
  1337. w6.Name = "Part_Weld"
  1338. w6.Part0 = p6
  1339. w6.C0 = CFrame.new(3.44990563, -8.58795738, -1.89968324, -5.96046448e-007, -9.85101565e-008, 1, 4.91661183e-007, 1, 9.85104407e-008, -1, 4.9166124e-007, -5.96046448e-007)
  1340. w6.Part1 = p7
  1341. w6.C1 = CFrame.new(3.50097466, -8.31796741, -1.89919162, -4.76837158e-007, -9.85101849e-008, 0.99999994, 4.91661126e-007, 1, 9.85104265e-008, -0.99999994, 4.91661183e-007, -4.76837158e-007)
  1342. w7 = Instance.new("Weld", p7)
  1343. w7.Name = "Part_Weld"
  1344. w7.Part0 = p7
  1345. w7.C0 = CFrame.new(3.50097466, -8.31796741, -1.89919162, -4.76837158e-007, -9.85101849e-008, 0.99999994, 4.91661126e-007, 1, 9.85104265e-008, -0.99999994, 4.91661183e-007, -4.76837158e-007)
  1346. w7.Part1 = p8
  1347. w7.C1 = CFrame.new(3.40101647, 2.43280101, 7.72691393, -1.1920929e-006, -2.08616257e-007, 1, -0.805111527, -0.593123555, -9.83476639e-007, 0.593123496, -0.805111527, 4.17232513e-007)
  1348. w8 = Instance.new("Weld", p8)
  1349. w8.Name = "Part_Weld"
  1350. w8.Part0 = p8
  1351. w8.C0 = CFrame.new(3.40101647, 2.43280101, 7.72691393, -1.1920929e-006, -2.08616257e-007, 1, -0.805111527, -0.593123555, -9.83476639e-007, 0.593123496, -0.805111527, 4.17232513e-007)
  1352. w8.Part1 = p9
  1353. w8.C1 = CFrame.new(3.40065455, -8.6941061, -0.904481649, -8.34465027e-007, -1.67638063e-007, 1.00000012, -0.0995008498, 0.995037496, 1.00582838e-007, -0.995037615, -0.0995008498, -8.34465027e-007)
  1354. w9 = Instance.new("Weld", p9)
  1355. w9.Name = "Part_Weld"
  1356. w9.Part0 = p9
  1357. w9.C0 = CFrame.new(3.40065455, -8.6941061, -0.904481649, -8.34465027e-007, -1.67638063e-007, 1.00000012, -0.0995008498, 0.995037496, 1.00582838e-007, -0.995037615, -0.0995008498, -8.34465027e-007)
  1358. w9.Part1 = p10
  1359. w9.C1 = CFrame.new(3.39961672, -7.99480963, 4.71886492, -9.53674316e-007, -2.98023224e-007, 1, -0.683569372, 0.729885519, -4.47034836e-007, -0.729885459, -0.683569431, -9.53674316e-007)
  1360. w10 = Instance.new("Weld", p10)
  1361. w10.Name = "Part_Weld"
  1362. w10.Part0 = p10
  1363. w10.C0 = CFrame.new(3.39961672, -7.99480963, 4.71886492, -9.53674316e-007, -2.98023224e-007, 1, -0.683569372, 0.729885519, -4.47034836e-007, -0.729885459, -0.683569431, -9.53674316e-007)
  1364. w10.Part1 = p11
  1365. w10.C1 = CFrame.new(3.40089583, -3.41323304, 8.38025856, -1.31130219e-006, -4.76837158e-007, 1.00000012, -0.989475787, 0.144699097, -1.07288361e-006, -0.144699246, -0.989475787, -7.15255737e-007)
  1366. w11 = Instance.new("Weld", p11)
  1367. w11.Name = "Part_Weld"
  1368. w11.Part0 = p11
  1369. w11.C0 = CFrame.new(3.40089583, -3.41323304, 8.38025856, -1.31130219e-006, -4.76837158e-007, 1.00000012, -0.989475787, 0.144699097, -1.07288361e-006, -0.144699246, -0.989475787, -7.15255737e-007)
  1370. w11.Part1 = p12
  1371. w11.C1 = CFrame.new(3.40101814, 3.54288888, 6.84968376, -9.53674316e-007, -4.47034836e-007, 1, -0.553697109, -0.832718134, -9.23871994e-007, 0.832718134, -0.553697109, 6.55651093e-007)
  1372. w12 = Instance.new("Weld", p12)
  1373. w12.Name = "Part_Weld"
  1374. w12.Part0 = p12
  1375. w12.C0 = CFrame.new(3.40101814, 3.54288888, 6.84968376, -9.53674316e-007, -4.47034836e-007, 1, -0.553697109, -0.832718134, -9.23871994e-007, 0.832718134, -0.553697109, 6.55651093e-007)
  1376. w12.Part1 = p13
  1377. w12.C1 = CFrame.new(3.40102005, 5.44561195, 5.34554911, -8.34465027e-007, -6.40749931e-007, 1.00000012, -0.319307029, -0.947651505, -8.19563866e-007, 0.947651386, -0.319307029, 3.57627869e-007)
  1378. w13 = Instance.new("Weld", p13)
  1379. w13.Name = "Part_Weld"
  1380. w13.Part0 = p13
  1381. w13.C0 = CFrame.new(3.40102005, 5.44561195, 5.34554911, -8.34465027e-007, -6.40749931e-007, 1.00000012, -0.319307029, -0.947651505, -8.19563866e-007, 0.947651386, -0.319307029, 3.57627869e-007)
  1382. w13.Part1 = p14
  1383. w13.C1 = CFrame.new(3.40101624, 2.99550176, 7.97925997, -9.53674316e-007, -1.49011612e-007, 1, -0.750353813, -0.661036491, -8.64267349e-007, 0.661036491, -0.750353813, 5.36441803e-007)
  1384. w14 = Instance.new("Weld", p14)
  1385. w14.Name = "Part_Weld"
  1386. w14.Part0 = p14
  1387. w14.C0 = CFrame.new(3.40101624, 2.99550176, 7.97925997, -9.53674316e-007, -1.49011612e-007, 1, -0.750353813, -0.661036491, -8.64267349e-007, 0.661036491, -0.750353813, 5.36441803e-007)
  1388. w14.Part1 = p15
  1389. w14.C1 = CFrame.new(3.74026394, 5.46776819, 5.79039907, 0.34201923, -3.27825546e-007, 0.939692974, -0.520305395, -0.832718134, 0.189374775, 0.782499313, -0.553697109, -0.284805775)
  1390. w15 = Instance.new("Weld", p15)
  1391. w15.Name = "Part_Weld"
  1392. w15.Part0 = p15
  1393. w15.C0 = CFrame.new(3.74026394, 5.46776819, 5.79039907, 0.34201923, -3.27825546e-007, 0.939692974, -0.520305395, -0.832718134, 0.189374775, 0.782499313, -0.553697109, -0.284805775)
  1394. w15.Part1 = p16
  1395. w15.C1 = CFrame.new(2.90401983, 4.33060169, 7.50061178, -0.258819938, -2.68220901e-007, 0.965925574, -0.534830093, -0.832718134, -0.143308043, 0.80434382, -0.55369705, 0.215523928)
  1396. w16 = Instance.new("Weld", p16)
  1397. w16.Name = "Part_Weld"
  1398. w16.Part0 = p16
  1399. w16.C0 = CFrame.new(2.90401983, 4.33060169, 7.50061178, -0.258819938, -2.68220901e-007, 0.965925574, -0.534830093, -0.832718134, -0.143308043, 0.80434382, -0.55369705, 0.215523928)
  1400. w16.Part1 = p17
  1401. w16.C1 = CFrame.new(3.4010253, 5.84818506, 4.80991411, -8.56413749e-007, -1.3483392e-006, 1, -0.31930685, -0.947651386, -1.55121427e-006, 0.947651386, -0.31930685, 3.81047698e-007)
  1402. w17 = Instance.new("Weld", p17)
  1403. w17.Name = "Part_Weld"
  1404. w17.Part0 = p17
  1405. w17.C0 = CFrame.new(3.4010253, 5.84818506, 4.80991411, -8.56413749e-007, -1.3483392e-006, 1, -0.31930685, -0.947651386, -1.55121427e-006, 0.947651386, -0.31930685, 3.81047698e-007)
  1406. w17.Part1 = p18
  1407. w17.C1 = CFrame.new(-3.40004683, -8.71796036, 1.70002675, -2.6504224e-006, -7.89943471e-008, -1, -2.47197018e-008, 1, -7.89942831e-008, 1, 2.47194887e-008, -2.6504224e-006)
  1408. m.Parent = char
  1409. m:MakeJoints()
  1410. ----------------------------------------------------
  1411. local cor = Instance.new("Part", char.Hair)
  1412. cor.Name = "Link"
  1413. cor.Locked = true
  1414. cor.BottomSurface = 0
  1415. cor.CanCollide = false
  1416. cor.Size = Vector3.new(1, 9, 1)
  1417. cor.Transparency = 1
  1418. cor.TopSurface = 0
  1419. corw = Instance.new("Weld", cor)
  1420. corw.Part0 = hed
  1421. corw.Part1 = cor
  1422. corw.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1423. corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1424. weld1 = Instance.new("Weld", char.Hair)
  1425. weld1.Part0 = cor
  1426. weld1.Part1 = char.Hair.Head
  1427. weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1428. print("Success")
  1429. --------------------------------------------------
  1430. local m = Instance.new("Model")
  1431. m.Name = "Claw"
  1432. p1 = Instance.new("Part", m)
  1433. p1.BrickColor = BrickColor.new("Really black")
  1434. p1.FormFactor = Enum.FormFactor.Custom
  1435. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  1436. 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)
  1437. p1.CanCollide = false
  1438. p1.Locked = true
  1439. p1.BottomSurface = Enum.SurfaceType.Smooth
  1440. p1.TopSurface = Enum.SurfaceType.Smooth
  1441. b1 = Instance.new("BlockMesh", p1)
  1442. b1.Name = "Mesh"
  1443. p2 = Instance.new("WedgePart", m)
  1444. p2.BrickColor = BrickColor.new("Really black")
  1445. p2.Name = "Wedge"
  1446. p2.FormFactor = Enum.FormFactor.Custom
  1447. p2.Size = Vector3.new(3, 1, 0.5)
  1448. 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)
  1449. p2.CanCollide = false
  1450. p2.Locked = true
  1451. p2.BottomSurface = Enum.SurfaceType.Smooth
  1452. p2.TopSurface = Enum.SurfaceType.Smooth
  1453. p3 = Instance.new("Part", m)
  1454. p3.BrickColor = BrickColor.new("Really black")
  1455. p3.FormFactor = Enum.FormFactor.Custom
  1456. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  1457. 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)
  1458. p3.CanCollide = false
  1459. p3.Locked = true
  1460. p3.BottomSurface = Enum.SurfaceType.Smooth
  1461. p3.TopSurface = Enum.SurfaceType.Smooth
  1462. b2 = Instance.new("BlockMesh", p3)
  1463. b2.Name = "Mesh"
  1464. p4 = Instance.new("WedgePart", m)
  1465. p4.BrickColor = BrickColor.new("Really black")
  1466. p4.Name = "Wedge"
  1467. p4.FormFactor = Enum.FormFactor.Custom
  1468. p4.Size = Vector3.new(3, 1, 0.5)
  1469. 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)
  1470. p4.CanCollide = false
  1471. p4.Locked = true
  1472. p4.BottomSurface = Enum.SurfaceType.Smooth
  1473. p4.TopSurface = Enum.SurfaceType.Smooth
  1474. p5 = Instance.new("Part", m)
  1475. p5.BrickColor = BrickColor.new("Really black")
  1476. p5.FormFactor = Enum.FormFactor.Custom
  1477. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  1478. 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)
  1479. p5.CanCollide = false
  1480. p5.Locked = true
  1481. p5.BottomSurface = Enum.SurfaceType.Smooth
  1482. p5.TopSurface = Enum.SurfaceType.Smooth
  1483. b3 = Instance.new("BlockMesh", p5)
  1484. b3.Name = "Mesh"
  1485. p6 = Instance.new("Part", m)
  1486. p6.BrickColor = BrickColor.new("Really black")
  1487. p6.FormFactor = Enum.FormFactor.Custom
  1488. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  1489. 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)
  1490. p6.CanCollide = false
  1491. p6.Locked = true
  1492. p6.BottomSurface = Enum.SurfaceType.Smooth
  1493. p6.TopSurface = Enum.SurfaceType.Smooth
  1494. b4 = Instance.new("BlockMesh", p6)
  1495. b4.Name = "Mesh"
  1496. p7 = Instance.new("Part", m)
  1497. p7.BrickColor = BrickColor.new("Really black")
  1498. p7.FormFactor = Enum.FormFactor.Custom
  1499. p7.Size = Vector3.new(3, 1, 1.20000005)
  1500. 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)
  1501. p7.CanCollide = false
  1502. p7.Locked = true
  1503. p7.BottomSurface = Enum.SurfaceType.Smooth
  1504. p7.TopSurface = Enum.SurfaceType.Smooth
  1505. b5 = Instance.new("BlockMesh", p7)
  1506. b5.Name = "Mesh"
  1507. p8 = Instance.new("Part", m)
  1508. p8.BrickColor = BrickColor.new("Royal purple") --("Bright blue")
  1509. p8.FormFactor = Enum.FormFactor.Symmetric
  1510. p8.Size = Vector3.new(1, 1, 1)
  1511. 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)
  1512. p8.CanCollide = false
  1513. p8.Locked = true
  1514. b6 = Instance.new("SpecialMesh", p8)
  1515. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1516. b6.TextureId = ""
  1517. b6.MeshType = Enum.MeshType.FileMesh
  1518. b6.Name = "Mesh"
  1519. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  1520. p9 = Instance.new("Part", m)
  1521. p9.BrickColor = BrickColor.new("Really black")
  1522. p9.FormFactor = Enum.FormFactor.Custom
  1523. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  1524. 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)
  1525. p9.CanCollide = false
  1526. p9.Locked = true
  1527. p9.BottomSurface = Enum.SurfaceType.Smooth
  1528. p9.TopSurface = Enum.SurfaceType.Smooth
  1529. b7 = Instance.new("BlockMesh", p9)
  1530. b7.Name = "Mesh"
  1531. p10 = Instance.new("Part", m)
  1532. p10.BrickColor = BrickColor.new("Royal purple") --("Bright blue")
  1533. p10.FormFactor = Enum.FormFactor.Symmetric
  1534. p10.Size = Vector3.new(1, 1, 1)
  1535. 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)
  1536. p10.CanCollide = false
  1537. p10.Locked = true
  1538. b8 = Instance.new("SpecialMesh", p10)
  1539. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1540. b8.TextureId = ""
  1541. b8.MeshType = Enum.MeshType.FileMesh
  1542. b8.Name = "Mesh"
  1543. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  1544. p11 = Instance.new("Part", m)
  1545. p11.BrickColor = BrickColor.new("Really black")
  1546. p11.FormFactor = Enum.FormFactor.Custom
  1547. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  1548. 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)
  1549. p11.CanCollide = false
  1550. p11.Locked = true
  1551. p11.BottomSurface = Enum.SurfaceType.Smooth
  1552. p11.TopSurface = Enum.SurfaceType.Smooth
  1553. b9 = Instance.new("BlockMesh", p11)
  1554. b9.Name = "Mesh"
  1555. p12 = Instance.new("Part", m)
  1556. p12.BrickColor = BrickColor.new("Really black")
  1557. p12.FormFactor = Enum.FormFactor.Custom
  1558. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  1559. 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)
  1560. p12.CanCollide = false
  1561. p12.Locked = true
  1562. p12.BottomSurface = Enum.SurfaceType.Smooth
  1563. p12.TopSurface = Enum.SurfaceType.Smooth
  1564. b10 = Instance.new("BlockMesh", p12)
  1565. b10.Name = "Mesh"
  1566. p13 = Instance.new("Part", m)
  1567. p13.BrickColor = BrickColor.new("Really black")
  1568. p13.FormFactor = Enum.FormFactor.Custom
  1569. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  1570. 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)
  1571. p13.CanCollide = false
  1572. p13.Locked = true
  1573. p13.BottomSurface = Enum.SurfaceType.Smooth
  1574. p13.TopSurface = Enum.SurfaceType.Smooth
  1575. b11 = Instance.new("BlockMesh", p13)
  1576. b11.Name = "Mesh"
  1577. p14 = Instance.new("Part", m)
  1578. p14.BrickColor = BrickColor.new("Royal purple") --("Bright blue")
  1579. p14.FormFactor = Enum.FormFactor.Symmetric
  1580. p14.Size = Vector3.new(1, 1, 1)
  1581. 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)
  1582. p14.CanCollide = false
  1583. p14.Locked = true
  1584. b12 = Instance.new("SpecialMesh", p14)
  1585. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1586. b12.TextureId = ""
  1587. b12.MeshType = Enum.MeshType.FileMesh
  1588. b12.Name = "Mesh"
  1589. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  1590. p15 = Instance.new("Part", m)
  1591. p15.BrickColor = BrickColor.new("Medium stone grey")
  1592. p15.Transparency = 1
  1593. p15.Name = "ArmPart"
  1594. p15.FormFactor = Enum.FormFactor.Custom
  1595. p15.Size = Vector3.new(2, 1, 1)
  1596. 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)
  1597. p15.CanCollide = false
  1598. p15.Locked = true
  1599. p15.BottomSurface = Enum.SurfaceType.Smooth
  1600. p15.TopSurface = Enum.SurfaceType.Smooth
  1601. b13 = Instance.new("BlockMesh", p15)
  1602. b13.Name = "Mesh"
  1603. p16 = Instance.new("Part", m)
  1604. p16.BrickColor = BrickColor.new("Really black")
  1605. p16.FormFactor = Enum.FormFactor.Custom
  1606. p16.Size = Vector3.new(3, 1, 2.4000001)
  1607. 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)
  1608. p16.CanCollide = false
  1609. p16.Locked = true
  1610. p16.BottomSurface = Enum.SurfaceType.Smooth
  1611. p16.TopSurface = Enum.SurfaceType.Smooth
  1612. b14 = Instance.new("BlockMesh", p16)
  1613. b14.Name = "Mesh"
  1614. p17 = Instance.new("Part", m)
  1615. p17.BrickColor = BrickColor.new("Really black")
  1616. p17.FormFactor = Enum.FormFactor.Custom
  1617. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  1618. 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)
  1619. p17.CanCollide = false
  1620. p17.Locked = true
  1621. p17.BottomSurface = Enum.SurfaceType.Smooth
  1622. p17.TopSurface = Enum.SurfaceType.Smooth
  1623. b15 = Instance.new("BlockMesh", p17)
  1624. b15.Name = "Mesh"
  1625. p18 = Instance.new("Part", m)
  1626. p18.BrickColor = BrickColor.new("Royal purple") --("Bright blue")
  1627. p18.FormFactor = Enum.FormFactor.Symmetric
  1628. p18.Size = Vector3.new(1, 1, 1)
  1629. 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)
  1630. p18.CanCollide = false
  1631. p18.Locked = true
  1632. b16 = Instance.new("SpecialMesh", p18)
  1633. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1634. b16.TextureId = ""
  1635. b16.MeshType = Enum.MeshType.FileMesh
  1636. b16.Name = "Mesh"
  1637. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  1638. p19 = Instance.new("Part", m)
  1639. p19.BrickColor = BrickColor.new("Royal purple") --("Bright blue")
  1640. p19.FormFactor = Enum.FormFactor.Symmetric
  1641. p19.Size = Vector3.new(1, 1, 1)
  1642. 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)
  1643. p19.CanCollide = false
  1644. p19.Locked = true
  1645. b17 = Instance.new("SpecialMesh", p19)
  1646. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1647. b17.TextureId = ""
  1648. b17.MeshType = Enum.MeshType.FileMesh
  1649. b17.Name = "Mesh"
  1650. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  1651. p20 = Instance.new("Part", m)
  1652. p20.BrickColor = BrickColor.new("Really black")
  1653. p20.FormFactor = Enum.FormFactor.Custom
  1654. p20.Size = Vector3.new(3, 1, 2.4000001)
  1655. 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)
  1656. p20.CanCollide = false
  1657. p20.Locked = true
  1658. p20.BottomSurface = Enum.SurfaceType.Smooth
  1659. p20.TopSurface = Enum.SurfaceType.Smooth
  1660. b18 = Instance.new("BlockMesh", p20)
  1661. b18.Name = "Mesh"
  1662. p21 = Instance.new("Part", m)
  1663. p21.BrickColor = BrickColor.new("Really black")
  1664. p21.FormFactor = Enum.FormFactor.Custom
  1665. p21.Size = Vector3.new(3, 1, 1.19999993)
  1666. 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)
  1667. p21.CanCollide = false
  1668. p21.Locked = true
  1669. p21.BottomSurface = Enum.SurfaceType.Smooth
  1670. p21.TopSurface = Enum.SurfaceType.Smooth
  1671. b19 = Instance.new("BlockMesh", p21)
  1672. b19.Name = "Mesh"
  1673. p22 = Instance.new("WedgePart", m)
  1674. p22.BrickColor = BrickColor.new("Really black")
  1675. p22.Name = "Wedge"
  1676. p22.FormFactor = Enum.FormFactor.Custom
  1677. p22.Size = Vector3.new(3, 1, 0.5)
  1678. 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)
  1679. p22.CanCollide = false
  1680. p22.Locked = true
  1681. p22.BottomSurface = Enum.SurfaceType.Smooth
  1682. p22.TopSurface = Enum.SurfaceType.Smooth
  1683. p23 = Instance.new("Part", m)
  1684. p23.BrickColor = BrickColor.new("Really black")
  1685. p23.FormFactor = Enum.FormFactor.Custom
  1686. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  1687. 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)
  1688. p23.CanCollide = false
  1689. p23.Locked = true
  1690. p23.BottomSurface = Enum.SurfaceType.Smooth
  1691. p23.TopSurface = Enum.SurfaceType.Smooth
  1692. b20 = Instance.new("BlockMesh", p23)
  1693. b20.Name = "Mesh"
  1694. p24 = Instance.new("WedgePart", m)
  1695. p24.BrickColor = BrickColor.new("Really black")
  1696. p24.Name = "Wedge"
  1697. p24.FormFactor = Enum.FormFactor.Custom
  1698. p24.Size = Vector3.new(3, 1, 0.5)
  1699. 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)
  1700. p24.CanCollide = false
  1701. p24.Locked = true
  1702. p24.BottomSurface = Enum.SurfaceType.Smooth
  1703. p24.TopSurface = Enum.SurfaceType.Smooth
  1704. p25 = Instance.new("Part", m)
  1705. p25.BrickColor = BrickColor.new("Royal purple") --("Bright blue")
  1706. p25.FormFactor = Enum.FormFactor.Symmetric
  1707. p25.Size = Vector3.new(1, 1, 1)
  1708. 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)
  1709. p25.CanCollide = false
  1710. p25.Locked = true
  1711. p25.BottomSurface = Enum.SurfaceType.Smooth
  1712. p25.TopSurface = Enum.SurfaceType.Smooth
  1713. b21 = Instance.new("SpecialMesh", p25)
  1714. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1715. b21.TextureId = ""
  1716. b21.MeshType = Enum.MeshType.FileMesh
  1717. b21.Name = "Mesh"
  1718. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  1719. p26 = Instance.new("Part", m)
  1720. p26.BrickColor = BrickColor.new("Really black")
  1721. p26.FormFactor = Enum.FormFactor.Symmetric
  1722. p26.Size = Vector3.new(1, 1, 1)
  1723. 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)
  1724. p26.CanCollide = false
  1725. p26.Locked = true
  1726. p26.BottomSurface = Enum.SurfaceType.Smooth
  1727. p26.TopSurface = Enum.SurfaceType.Smooth
  1728. b22 = Instance.new("SpecialMesh", p26)
  1729. b22.MeshType = Enum.MeshType.Brick
  1730. b22.Name = "Mesh"
  1731. w1 = Instance.new("Weld", p1)
  1732. w1.Name = "Wedge_Weld"
  1733. w1.Part0 = p1
  1734. 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)
  1735. w1.Part1 = p2
  1736. 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)
  1737. w2 = Instance.new("Weld", p2)
  1738. w2.Name = "Part_Weld"
  1739. w2.Part0 = p2
  1740. 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)
  1741. w2.Part1 = p3
  1742. 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)
  1743. w3 = Instance.new("Weld", p3)
  1744. w3.Name = "Wedge_Weld"
  1745. w3.Part0 = p3
  1746. 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)
  1747. w3.Part1 = p4
  1748. 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)
  1749. w4 = Instance.new("Weld", p4)
  1750. w4.Name = "Part_Weld"
  1751. w4.Part0 = p4
  1752. 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)
  1753. w4.Part1 = p5
  1754. 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)
  1755. w5 = Instance.new("Weld", p5)
  1756. w5.Name = "Part_Weld"
  1757. w5.Part0 = p5
  1758. 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)
  1759. w5.Part1 = p6
  1760. 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)
  1761. w6 = Instance.new("Weld", p6)
  1762. w6.Name = "Part_Weld"
  1763. w6.Part0 = p6
  1764. 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)
  1765. w6.Part1 = p7
  1766. 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)
  1767. w7 = Instance.new("Weld", p7)
  1768. w7.Name = "Part_Weld"
  1769. w7.Part0 = p7
  1770. 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)
  1771. w7.Part1 = p8
  1772. 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)
  1773. w8 = Instance.new("Weld", p8)
  1774. w8.Name = "Part_Weld"
  1775. w8.Part0 = p8
  1776. 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)
  1777. w8.Part1 = p9
  1778. 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)
  1779. w9 = Instance.new("Weld", p9)
  1780. w9.Name = "Part_Weld"
  1781. w9.Part0 = p9
  1782. 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)
  1783. w9.Part1 = p10
  1784. 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)
  1785. w10 = Instance.new("Weld", p10)
  1786. w10.Name = "Part_Weld"
  1787. w10.Part0 = p10
  1788. 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)
  1789. w10.Part1 = p11
  1790. 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)
  1791. w11 = Instance.new("Weld", p11)
  1792. w11.Name = "Part_Weld"
  1793. w11.Part0 = p11
  1794. w11.C0 = CFrame.new(18.7061806, -3.17931461, -5.46200418, 0.250022948, -0.491377324, 0.834300399, -0.0669473261, -0.868365645, -0.491393894, 0.965937555, 0.0670026764, -0.250007868)
  1795. w11.Part1 = p12
  1796. 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)
  1797. w12 = Instance.new("Weld", p12)
  1798. w12.Name = "Part_Weld"
  1799. w12.Part0 = p12
  1800. 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)
  1801. w12.Part1 = p13
  1802. 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)
  1803. w13 = Instance.new("Weld", p13)
  1804. w13.Name = "Part_Weld"
  1805. w13.Part0 = p13
  1806. 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)
  1807. w13.Part1 = p14
  1808. 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)
  1809. w14 = Instance.new("Weld", p14)
  1810. w14.Name = "ArmPart_Weld"
  1811. w14.Part0 = p14
  1812. 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)
  1813. w14.Part1 = p15
  1814. 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)
  1815. w15 = Instance.new("Weld", p15)
  1816. w15.Name = "Part_Weld"
  1817. w15.Part0 = p15
  1818. 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)
  1819. w15.Part1 = p16
  1820. 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)
  1821. w16 = Instance.new("Weld", p16)
  1822. w16.Name = "Part_Weld"
  1823. w16.Part0 = p16
  1824. 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)
  1825. w16.Part1 = p17
  1826. 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)
  1827. w17 = Instance.new("Weld", p17)
  1828. w17.Name = "Part_Weld"
  1829. w17.Part0 = p17
  1830. 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)
  1831. w17.Part1 = p18
  1832. 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)
  1833. w18 = Instance.new("Weld", p18)
  1834. w18.Name = "Part_Weld"
  1835. w18.Part0 = p18
  1836. 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)
  1837. w18.Part1 = p19
  1838. 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)
  1839. w19 = Instance.new("Weld", p19)
  1840. w19.Name = "Part_Weld"
  1841. w19.Part0 = p19
  1842. 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)
  1843. w19.Part1 = p20
  1844. 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)
  1845. w20 = Instance.new("Weld", p20)
  1846. w20.Name = "Part_Weld"
  1847. w20.Part0 = p20
  1848. 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)
  1849. w20.Part1 = p21
  1850. 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)
  1851. w21 = Instance.new("Weld", p21)
  1852. w21.Name = "Wedge_Weld"
  1853. w21.Part0 = p21
  1854. 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)
  1855. w21.Part1 = p22
  1856. 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)
  1857. w22 = Instance.new("Weld", p22)
  1858. w22.Name = "Part_Weld"
  1859. w22.Part0 = p22
  1860. 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)
  1861. w22.Part1 = p23
  1862. 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)
  1863. w23 = Instance.new("Weld", p23)
  1864. w23.Name = "Wedge_Weld"
  1865. w23.Part0 = p23
  1866. 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)
  1867. w23.Part1 = p24
  1868. 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)
  1869. w24 = Instance.new("Weld", p24)
  1870. w24.Name = "Part_Weld"
  1871. w24.Part0 = p24
  1872. 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)
  1873. w24.Part1 = p25
  1874. 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)
  1875. w25 = Instance.new("Weld", p25)
  1876. w25.Name = "Part_Weld"
  1877. w25.Part0 = p25
  1878. 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)
  1879. w25.Part1 = p26
  1880. 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)
  1881. m.Parent = char
  1882. m:MakeJoints()
  1883. ----------------------------------------------------
  1884. local cor2 = Instance.new("Part", char.Claw)
  1885. cor2.Name = "Thingy"
  1886. cor2.Locked = true
  1887. cor2.BottomSurface = 0
  1888. cor2.CanCollide = false
  1889. cor2.Size = Vector3.new(2, 1, 1)
  1890. cor2.Transparency = 1
  1891. cor2.TopSurface = 0
  1892. corw2 = Instance.new("Weld", cor2)
  1893. corw2.Part0 = larm
  1894. corw2.Part1 = cor2
  1895. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1896. corw2.C1 = CFrame.new(0, 0, 0)
  1897. weld2 = Instance.new("Weld", char.Claw)
  1898. weld2.Part0 = cor2
  1899. weld2.Part1 = char.Claw.ArmPart
  1900. weld2.C0 = CFrame.new(0, 0, 0)
  1901. ----------------------------------------------------
  1902. for i,v in pairs (char.Claw:GetChildren()) do
  1903. if v:IsA("Part") then
  1904. v.Transparency=1
  1905. end
  1906. end
  1907. for i,v in pairs (char.Claw:GetChildren()) do
  1908. if v:IsA("WedgePart") then
  1909. v.Transparency=1
  1910. end
  1911. end
  1912.  
  1913. ----------------------------------------------------
  1914.  
  1915.  
  1916.  
  1917.  
  1918.  
  1919.  
  1920.  
  1921. --[[local m = Instance.new("Model")
  1922. m.Name = "Absolution"
  1923. p1 = Instance.new("Part", m)
  1924. p1.BrickColor = BrickColor.new("Bright blue")
  1925. p1.Material = "Neon"
  1926. p1.FormFactor = Enum.FormFactor.Custom
  1927. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  1928. 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)
  1929. p1.CanCollide = false
  1930. p1.Locked = true
  1931. p1.Elasticity = 0
  1932. p1.BottomSurface = Enum.SurfaceType.Smooth
  1933. p1.TopSurface = Enum.SurfaceType.Smooth
  1934. b1 = Instance.new("SpecialMesh", p1)
  1935. b1.MeshType = Enum.MeshType.Wedge
  1936. b1.Name = "Mesh"
  1937. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  1938. p2 = Instance.new("Part", m)
  1939. p2.BrickColor = BrickColor.new("Really black")
  1940. p2.FormFactor = Enum.FormFactor.Custom
  1941. p2.Size = Vector3.new(1, 2.9000001, 1)
  1942. 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)
  1943. p2.CanCollide = false
  1944. p2.Locked = true
  1945. p2.Elasticity = 0
  1946. p2.BottomSurface = Enum.SurfaceType.Smooth
  1947. p2.TopSurface = Enum.SurfaceType.Smooth
  1948. b2 = Instance.new("BlockMesh", p2)
  1949. b2.Name = "Mesh"
  1950. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  1951. p3 = Instance.new("Part", m)
  1952. p3.BrickColor = BrickColor.new("Bright blue")
  1953. p3.Material = "Neon"
  1954. p3.FormFactor = Enum.FormFactor.Custom
  1955. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  1956. 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)
  1957. p3.CanCollide = false
  1958. p3.Locked = true
  1959. p3.Elasticity = 0
  1960. p3.BottomSurface = Enum.SurfaceType.Smooth
  1961. p3.TopSurface = Enum.SurfaceType.Smooth
  1962. b3 = Instance.new("SpecialMesh", p3)
  1963. b3.MeshType = Enum.MeshType.Wedge
  1964. b3.Name = "Mesh"
  1965. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  1966. p4 = Instance.new("Part", m)
  1967. p4.BrickColor = BrickColor.new("Bright blue")
  1968. p4.Material = "Neon"
  1969. p4.FormFactor = Enum.FormFactor.Custom
  1970. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  1971. 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)
  1972. p4.CanCollide = false
  1973. p4.Locked = true
  1974. p4.Elasticity = 0
  1975. p4.BottomSurface = Enum.SurfaceType.Smooth
  1976. p4.TopSurface = Enum.SurfaceType.Smooth
  1977. b4 = Instance.new("SpecialMesh", p4)
  1978. b4.MeshType = Enum.MeshType.Wedge
  1979. b4.Name = "Mesh"
  1980. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  1981. p5 = Instance.new("Part", m)
  1982. p5.BrickColor = BrickColor.new("Bright blue")
  1983. p5.Material = "Neon"
  1984. p5.FormFactor = Enum.FormFactor.Custom
  1985. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  1986. 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)
  1987. p5.CanCollide = false
  1988. p5.Locked = true
  1989. p5.Elasticity = 0
  1990. p5.BottomSurface = Enum.SurfaceType.Smooth
  1991. p5.TopSurface = Enum.SurfaceType.Smooth
  1992. b5 = Instance.new("SpecialMesh", p5)
  1993. b5.MeshType = Enum.MeshType.Wedge
  1994. b5.Name = "Mesh"
  1995. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  1996. p6 = Instance.new("Part", m)
  1997. p6.Name = "Handle"
  1998. p6.BrickColor = BrickColor.new("Really black")
  1999. p6.FormFactor = Enum.FormFactor.Custom
  2000. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  2001. 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)
  2002. p6.CanCollide = false
  2003. p6.Locked = true
  2004. p6.Elasticity = 0
  2005. p6.BottomSurface = Enum.SurfaceType.Smooth
  2006. p6.TopSurface = Enum.SurfaceType.Smooth
  2007. b6 = Instance.new("BlockMesh", p6)
  2008. b6.Name = "Mesh"
  2009. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  2010. p7 = Instance.new("Part", m)
  2011. p7.BrickColor = BrickColor.new("Bright blue")
  2012. p7.Material = "Neon"
  2013. p7.FormFactor = Enum.FormFactor.Custom
  2014. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  2015. 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)
  2016. p7.CanCollide = false
  2017. p7.Locked = true
  2018. p7.Elasticity = 0
  2019. p7.BottomSurface = Enum.SurfaceType.Smooth
  2020. p7.TopSurface = Enum.SurfaceType.Smooth
  2021. b7 = Instance.new("SpecialMesh", p7)
  2022. b7.MeshType = Enum.MeshType.Wedge
  2023. b7.Name = "Mesh"
  2024. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  2025. p8 = Instance.new("Part", m)
  2026. p8.BrickColor = BrickColor.new("Bright blue")
  2027. p8.Material = "Neon"
  2028. p8.FormFactor = Enum.FormFactor.Custom
  2029. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  2030. 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)
  2031. p8.CanCollide = false
  2032. p8.Locked = true
  2033. p8.Elasticity = 0
  2034. p8.BottomSurface = Enum.SurfaceType.Smooth
  2035. p8.TopSurface = Enum.SurfaceType.Smooth
  2036. b8 = Instance.new("SpecialMesh", p8)
  2037. b8.MeshType = Enum.MeshType.Wedge
  2038. b8.Name = "Mesh"
  2039. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  2040. p9 = Instance.new("Part", m)
  2041. p9.BrickColor = BrickColor.new("Really black")
  2042. p9.FormFactor = Enum.FormFactor.Custom
  2043. p9.Size = Vector3.new(1, 1.07999957, 1)
  2044. 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)
  2045. p9.CanCollide = false
  2046. p9.Locked = true
  2047. p9.Elasticity = 0
  2048. p9.BottomSurface = Enum.SurfaceType.Smooth
  2049. p9.TopSurface = Enum.SurfaceType.Smooth
  2050. b9 = Instance.new("BlockMesh", p9)
  2051. b9.Name = "Mesh"
  2052. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  2053. p10 = Instance.new("Part", m)
  2054. p10.BrickColor = BrickColor.new("Really black")
  2055. p10.FormFactor = Enum.FormFactor.Custom
  2056. p10.Size = Vector3.new(1, 1.41999948, 1)
  2057. 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)
  2058. p10.CanCollide = false
  2059. p10.Locked = true
  2060. p10.Elasticity = 0
  2061. p10.BottomSurface = Enum.SurfaceType.Smooth
  2062. p10.TopSurface = Enum.SurfaceType.Smooth
  2063. b10 = Instance.new("BlockMesh", p10)
  2064. b10.Name = "Mesh"
  2065. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  2066. p11 = Instance.new("Part", m)
  2067. p11.BrickColor = BrickColor.new("Really black")
  2068. p11.FormFactor = Enum.FormFactor.Custom
  2069. p11.Size = Vector3.new(1, 1.50999951, 1)
  2070. 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)
  2071. p11.CanCollide = false
  2072. p11.Locked = true
  2073. p11.Elasticity = 0
  2074. p11.BottomSurface = Enum.SurfaceType.Smooth
  2075. p11.TopSurface = Enum.SurfaceType.Smooth
  2076. b11 = Instance.new("BlockMesh", p11)
  2077. b11.Name = "Mesh"
  2078. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  2079. p12 = Instance.new("Part", m)
  2080. p12.Name = "BladeCenter"
  2081. p12.BrickColor = BrickColor.new("Dark stone grey")
  2082. p12.Material = Enum.Material.Concrete
  2083. p12.FormFactor = Enum.FormFactor.Symmetric
  2084. p12.Size = Vector3.new(1, 2, 2)
  2085. 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)
  2086. p12.CanCollide = false
  2087. p12.Locked = true
  2088. p12.BottomSurface = Enum.SurfaceType.Smooth
  2089. p12.TopSurface = Enum.SurfaceType.Smooth
  2090. b12 = Instance.new("SpecialMesh", p12)
  2091. b12.MeshType = Enum.MeshType.Brick
  2092. b12.Name = "Mesh"
  2093. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  2094. p13 = Instance.new("Part", m)
  2095. p13.BrickColor = BrickColor.new("Really black")
  2096. p13.FormFactor = Enum.FormFactor.Custom
  2097. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  2098. 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)
  2099. p13.CanCollide = false
  2100. p13.Locked = true
  2101. p13.Elasticity = 0
  2102. p13.BottomSurface = Enum.SurfaceType.Smooth
  2103. p13.TopSurface = Enum.SurfaceType.Smooth
  2104. b13 = Instance.new("BlockMesh", p13)
  2105. b13.Name = "Mesh"
  2106. b13.Scale = Vector3.new(1, 1, 0.400000006)
  2107. p14 = Instance.new("Part", m)
  2108. p14.BrickColor = BrickColor.new("Really black")
  2109. p14.FormFactor = Enum.FormFactor.Custom
  2110. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  2111. p14.CFrame = CFrame.new(67.4896011, 10.1621294, 72.6420059, -1.55498967e-007, -1.33476442e-005, 0.999972522, -0.462319613, 0.886669755, -7.56198779e-006, -0.886637092, -0.462338567, 1.01078904e-005)
  2112. p14.CanCollide = false
  2113. p14.Locked = true
  2114. p14.Elasticity = 0
  2115. p14.BottomSurface = Enum.SurfaceType.Smooth
  2116. p14.TopSurface = Enum.SurfaceType.Smooth
  2117. b14 = Instance.new("BlockMesh", p14)
  2118. b14.Name = "Mesh"
  2119. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  2120. p15 = Instance.new("Part", m)
  2121. p15.BrickColor = BrickColor.new("Really black")
  2122. p15.FormFactor = Enum.FormFactor.Custom
  2123. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  2124. 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)
  2125. p15.CanCollide = false
  2126. p15.Locked = true
  2127. p15.Elasticity = 0
  2128. p15.BottomSurface = Enum.SurfaceType.Smooth
  2129. p15.TopSurface = Enum.SurfaceType.Smooth
  2130. b15 = Instance.new("BlockMesh", p15)
  2131. b15.Name = "Mesh"
  2132. b15.Scale = Vector3.new(1, 1, 0.400000006)
  2133. p16 = Instance.new("Part", m)
  2134. p16.BrickColor = BrickColor.new("Really black")
  2135. p16.FormFactor = Enum.FormFactor.Custom
  2136. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  2137. 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)
  2138. p16.CanCollide = false
  2139. p16.Locked = true
  2140. p16.Elasticity = 0
  2141. p16.BottomSurface = Enum.SurfaceType.Smooth
  2142. p16.TopSurface = Enum.SurfaceType.Smooth
  2143. b16 = Instance.new("BlockMesh", p16)
  2144. b16.Name = "Mesh"
  2145. b16.Scale = Vector3.new(1, 1, 0.400000006)
  2146. p17 = Instance.new("Part", m)
  2147. p17.BrickColor = BrickColor.new("Really black")
  2148. p17.FormFactor = Enum.FormFactor.Custom
  2149. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  2150. 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)
  2151. p17.CanCollide = false
  2152. p17.Locked = true
  2153. p17.Elasticity = 0
  2154. p17.BottomSurface = Enum.SurfaceType.Smooth
  2155. p17.TopSurface = Enum.SurfaceType.Smooth
  2156. b17 = Instance.new("BlockMesh", p17)
  2157. b17.Name = "Mesh"
  2158. b17.Scale = Vector3.new(1, 1, 0.400000006)
  2159. p18 = Instance.new("WedgePart", m)
  2160. p18.BrickColor = BrickColor.new("Dark stone grey")
  2161. p18.Name = "BladePart1"
  2162. p18.Material = Enum.Material.Concrete
  2163. p18.Name = "Wedge"
  2164. p18.FormFactor = Enum.FormFactor.Symmetric
  2165. p18.Size = Vector3.new(1, 4, 2)
  2166. 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)
  2167. p18.CanCollide = false
  2168. p18.Locked = true
  2169. p18.BottomSurface = Enum.SurfaceType.Smooth
  2170. p18.TopSurface = Enum.SurfaceType.Smooth
  2171. b18 = Instance.new("SpecialMesh", p18)
  2172. b18.MeshType = Enum.MeshType.Wedge
  2173. b18.Name = "Mesh"
  2174. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  2175. p19 = Instance.new("WedgePart", m)
  2176. p19.BrickColor = BrickColor.new("Dark stone grey")
  2177. p19.Name = "BladePart2"
  2178. p19.Material = Enum.Material.Concrete
  2179. p19.Name = "Wedge"
  2180. p19.FormFactor = Enum.FormFactor.Symmetric
  2181. p19.Size = Vector3.new(1, 4, 2)
  2182. 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)
  2183. p19.CanCollide = false
  2184. p19.Locked = true
  2185. p19.BottomSurface = Enum.SurfaceType.Smooth
  2186. p19.TopSurface = Enum.SurfaceType.Smooth
  2187. b19 = Instance.new("SpecialMesh", p19)
  2188. b19.MeshType = Enum.MeshType.Wedge
  2189. b19.Name = "Mesh"
  2190. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  2191. p20 = Instance.new("Part", m)
  2192. p20.BrickColor = BrickColor.new("Really black")
  2193. p20.FormFactor = Enum.FormFactor.Custom
  2194. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  2195. 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)
  2196. p20.CanCollide = false
  2197. p20.Locked = true
  2198. p20.Elasticity = 0
  2199. p20.BottomSurface = Enum.SurfaceType.Smooth
  2200. p20.TopSurface = Enum.SurfaceType.Smooth
  2201. b20 = Instance.new("BlockMesh", p20)
  2202. b20.Name = "Mesh"
  2203. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  2204. p21 = Instance.new("Part", m)
  2205. p21.BrickColor = BrickColor.new("Bright blue")
  2206. p21.Material = "Neon"
  2207. p21.FormFactor = Enum.FormFactor.Custom
  2208. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  2209. 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)
  2210. p21.CanCollide = false
  2211. p21.Locked = true
  2212. p21.Elasticity = 0
  2213. p21.BottomSurface = Enum.SurfaceType.Smooth
  2214. p21.TopSurface = Enum.SurfaceType.Smooth
  2215. b21 = Instance.new("SpecialMesh", p21)
  2216. b21.MeshType = Enum.MeshType.Wedge
  2217. b21.Name = "Mesh"
  2218. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  2219. w1 = Instance.new("Weld", p1)
  2220. w1.Name = "Part_Weld"
  2221. w1.Part0 = p1
  2222. 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)
  2223. w1.Part1 = p2
  2224. 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)
  2225. w2 = Instance.new("Weld", p2)
  2226. w2.Name = "Part_Weld"
  2227. w2.Part0 = p2
  2228. 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)
  2229. w2.Part1 = p3
  2230. 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)
  2231. w3 = Instance.new("Weld", p3)
  2232. w3.Name = "Part_Weld"
  2233. w3.Part0 = p3
  2234. 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)
  2235. w3.Part1 = p4
  2236. 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)
  2237. w4 = Instance.new("Weld", p4)
  2238. w4.Name = "Part_Weld"
  2239. w4.Part0 = p4
  2240. 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)
  2241. w4.Part1 = p5
  2242. 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)
  2243. w5 = Instance.new("Weld", p5)
  2244. w5.Name = "Part_Weld"
  2245. w5.Part0 = p5
  2246. 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)
  2247. w5.Part1 = p6
  2248. 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)
  2249. w6 = Instance.new("Weld", p6)
  2250. w6.Name = "Part_Weld"
  2251. w6.Part0 = p6
  2252. 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)
  2253. w6.Part1 = p7
  2254. 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)
  2255. w7 = Instance.new("Weld", p7)
  2256. w7.Name = "Part_Weld"
  2257. w7.Part0 = p7
  2258. 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)
  2259. w7.Part1 = p8
  2260. 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)
  2261. w8 = Instance.new("Weld", p8)
  2262. w8.Name = "Part_Weld"
  2263. w8.Part0 = p8
  2264. 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)
  2265. w8.Part1 = p9
  2266. 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)
  2267. w9 = Instance.new("Weld", p9)
  2268. w9.Name = "Part_Weld"
  2269. w9.Part0 = p9
  2270. 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)
  2271. w9.Part1 = p10
  2272. 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)
  2273. w10 = Instance.new("Weld", p10)
  2274. w10.Name = "Part_Weld"
  2275. w10.Part0 = p10
  2276. 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)
  2277. w10.Part1 = p11
  2278. 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)
  2279. w11 = Instance.new("Weld", p11)
  2280. w11.Name = "Part_Weld"
  2281. w11.Part0 = p11
  2282. 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)
  2283. w11.Part1 = p12
  2284. 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)
  2285. w12 = Instance.new("Weld", p12)
  2286. w12.Name = "Part_Weld"
  2287. w12.Part0 = p12
  2288. 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)
  2289. w12.Part1 = p13
  2290. 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)
  2291. w13 = Instance.new("Weld", p13)
  2292. w13.Name = "Part_Weld"
  2293. w13.Part0 = p13
  2294. 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)
  2295. w13.Part1 = p14
  2296. 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)
  2297. w14 = Instance.new("Weld", p14)
  2298. w14.Name = "Part_Weld"
  2299. w14.Part0 = p14
  2300. 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)
  2301. w14.Part1 = p15
  2302. 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)
  2303. w15 = Instance.new("Weld", p15)
  2304. w15.Name = "Part_Weld"
  2305. w15.Part0 = p15
  2306. 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)
  2307. w15.Part1 = p16
  2308. 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)
  2309. w16 = Instance.new("Weld", p16)
  2310. w16.Name = "Part_Weld"
  2311. w16.Part0 = p16
  2312. 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)
  2313. w16.Part1 = p17
  2314. 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)
  2315. w17 = Instance.new("Weld", p17)
  2316. w17.Name = "Wedge_Weld"
  2317. w17.Part0 = p17
  2318. 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)
  2319. w17.Part1 = p18
  2320. 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)
  2321. w18 = Instance.new("Weld", p18)
  2322. w18.Name = "Wedge_Weld"
  2323. w18.Part0 = p18
  2324. 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)
  2325. w18.Part1 = p19
  2326. 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)
  2327. w19 = Instance.new("Weld", p19)
  2328. w19.Name = "Part_Weld"
  2329. w19.Part0 = p19
  2330. 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)
  2331. w19.Part1 = p20
  2332. 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)
  2333. w20 = Instance.new("Weld", p20)
  2334. w20.Name = "Part_Weld"
  2335. w20.Part0 = p20
  2336. 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)
  2337. w20.Part1 = p21
  2338. 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)
  2339. m.Parent = char
  2340. m:MakeJoints()
  2341. ----------------------------------------------------
  2342.  
  2343. w14 = Instance.new("Weld", p14)
  2344. w14.Name = "ArmPart_Weld"
  2345. w14.Part0 = p14
  2346. 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)
  2347. w14.Part1 = p15
  2348. 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)
  2349.  
  2350. p15 = Instance.new("Part", m)
  2351. p15.BrickColor = BrickColor.new("Medium stone grey")
  2352. p15.Transparency = 1
  2353. p15.Name = "ArmPart"
  2354. p15.FormFactor = Enum.FormFactor.Custom
  2355. p15.Size = Vector3.new(2, 1, 1)
  2356. 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)
  2357. p15.CanCollide = false
  2358. p15.Locked = true
  2359. p15.BottomSurface = Enum.SurfaceType.Smooth
  2360. p15.TopSurface = Enum.SurfaceType.Smooth
  2361.  
  2362.  
  2363. for i,v in pairs (char.Absolution:GetChildren()) do
  2364. if v:IsA("Part") then
  2365. v.Anchored=false
  2366. v.CanCollide=false
  2367. v.CustomPhysicalProperties = PhysicalProperties.new(0.001, 0.001, 0.001, 0.001, 0.001)
  2368. end
  2369. end]]
  2370.  
  2371.  
  2372.  
  2373. ----------------------------------------------------
  2374. local m = Instance.new("Model")
  2375. m.Name = "LeftArm"
  2376. p1 = Instance.new("WedgePart", m)
  2377. p1.BrickColor = BrickColor.new("Royal purple")
  2378. p1.Material = Enum.Material.Neon
  2379. p1.Name = "Wedge"
  2380. p1.FormFactor = Enum.FormFactor.Custom
  2381. p1.Size = Vector3.new(1, 1.19999981, 4)
  2382. p1.CFrame = CFrame.new(60.830101, 8.39941978, -13.7674818, 1.52359269e-006, -0.707334042, 0.707343757, -2.62521735e-006, 0.707093, 0.707071185, -1.00027835, 3.43534703e-006, 4.43342998e-007)
  2383. p1.CanCollide = false
  2384. p1.Locked = true
  2385. p1.TopSurface = Enum.SurfaceType.Smooth
  2386. b1 = Instance.new("SpecialMesh", p1)
  2387. b1.MeshType = Enum.MeshType.Wedge
  2388. b1.Name = "Mesh"
  2389. b1.Scale = Vector3.new(0.200000003, 1, 1)
  2390. p2 = Instance.new("WedgePart", m)
  2391. p2.BrickColor = BrickColor.new("Royal purple")
  2392. p2.Material = Enum.Material.Neon
  2393. p2.Name = "Wedge"
  2394. p2.FormFactor = Enum.FormFactor.Custom
  2395. p2.Size = Vector3.new(1, 1.19999981, 4)
  2396. p2.CFrame = CFrame.new(60.8306694, 8.39941502, -12.5672398, 1.56085741e-006, -0.707337618, 0.707340181, -2.7146209e-006, 0.707089424, 0.707074761, -1.00027835, 3.34575839e-006, 4.06471969e-007)
  2397. p2.CanCollide = false
  2398. p2.Locked = true
  2399. p2.TopSurface = Enum.SurfaceType.Smooth
  2400. b2 = Instance.new("SpecialMesh", p2)
  2401. b2.MeshType = Enum.MeshType.Wedge
  2402. b2.Name = "Mesh"
  2403. b2.Scale = Vector3.new(0.200000003, 1, 1)
  2404. p3 = Instance.new("WedgePart", m)
  2405. p3.BrickColor = BrickColor.new("Royal purple")
  2406. p3.Material = Enum.Material.Neon
  2407. p3.Name = "Wedge"
  2408. p3.FormFactor = Enum.FormFactor.Custom
  2409. p3.Size = Vector3.new(1, 1.19999981, 4)
  2410. p3.CFrame = CFrame.new(60.8312187, 8.39939976, -13.1675138, 1.66519976e-006, -0.707341254, 0.707336545, -2.72952207e-006, 0.707085788, 0.707078397, -1.00027835, 3.26143936e-006, 4.69727013e-007)
  2411. p3.CanCollide = false
  2412. p3.Locked = true
  2413. p3.TopSurface = Enum.SurfaceType.Smooth
  2414. b3 = Instance.new("SpecialMesh", p3)
  2415. b3.MeshType = Enum.MeshType.Wedge
  2416. b3.Name = "Mesh"
  2417. b3.Scale = Vector3.new(0.200000003, 1, 1)
  2418. p4 = Instance.new("WedgePart", m)
  2419. p4.BrickColor = BrickColor.new("Royal purple")
  2420. p4.Material = Enum.Material.Neon
  2421. p4.Name = "Wedge"
  2422. p4.FormFactor = Enum.FormFactor.Custom
  2423. p4.Size = Vector3.new(1, 1.19999981, 4)
  2424. p4.CFrame = CFrame.new(60.8317757, 8.39937305, -13.1676111, 1.74718321e-006, -0.70734489, 0.707332909, -2.7742235e-006, 0.707082152, 0.707082033, -1.00027835, 3.17185027e-006, 4.96093037e-007)
  2425. p4.CanCollide = false
  2426. p4.Locked = true
  2427. p4.TopSurface = Enum.SurfaceType.Smooth
  2428. b4 = Instance.new("SpecialMesh", p4)
  2429. b4.MeshType = Enum.MeshType.Wedge
  2430. b4.Name = "Mesh"
  2431. b4.Scale = Vector3.new(0.200000003, 1, 1)
  2432. p5 = Instance.new("WedgePart", m)
  2433. p5.BrickColor = BrickColor.new("Royal purple")
  2434. p5.Material = Enum.Material.Neon
  2435. p5.Name = "Wedge"
  2436. p5.FormFactor = Enum.FormFactor.Custom
  2437. p5.Size = Vector3.new(1, 1.19999981, 3.30000019)
  2438. p5.CFrame = CFrame.new(60.4623528, 9.0813055, -13.1677084, -1.74365277e-006, 0.422768414, 0.90661031, 3.01146247e-006, -0.90627563, 0.422602654, 1.00028574, -3.16541991e-006, -6.48408104e-007)
  2439. p5.CanCollide = false
  2440. p5.Locked = true
  2441. p5.TopSurface = Enum.SurfaceType.Smooth
  2442. b5 = Instance.new("SpecialMesh", p5)
  2443. b5.MeshType = Enum.MeshType.Wedge
  2444. b5.Name = "Mesh"
  2445. b5.Scale = Vector3.new(0.200000003, 1, 1)
  2446. p6 = Instance.new("WedgePart", m)
  2447. p6.BrickColor = BrickColor.new("Royal purple")
  2448. p6.Material = Enum.Material.Neon
  2449. p6.Name = "Wedge"
  2450. p6.FormFactor = Enum.FormFactor.Custom
  2451. p6.Size = Vector3.new(1, 1.19999981, 3.30000019)
  2452. p6.CFrame = CFrame.new(60.4629173, 9.08128643, -13.7679863, -1.75857326e-006, 0.422772557, 0.906618714, 3.13068858e-006, -0.906274974, 0.422602147, 1.00029314, -3.27979569e-006, -6.11540997e-007)
  2453. p6.CanCollide = false
  2454. p6.Locked = true
  2455. p6.TopSurface = Enum.SurfaceType.Smooth
  2456. b6 = Instance.new("SpecialMesh", p6)
  2457. b6.MeshType = Enum.MeshType.Wedge
  2458. b6.Name = "Mesh"
  2459. b6.Scale = Vector3.new(0.200000003, 1, 1)
  2460. p7 = Instance.new("WedgePart", m)
  2461. p7.BrickColor = BrickColor.new("Royal purple")
  2462. p7.Material = Enum.Material.Neon
  2463. p7.Name = "Wedge"
  2464. p7.FormFactor = Enum.FormFactor.Custom
  2465. p7.Size = Vector3.new(1, 1.19999981, 3.30000019)
  2466. p7.CFrame = CFrame.new(60.4634781, 9.0812645, -12.5677195, -1.77349398e-006, 0.422776699, 0.906627119, 3.24991538e-006, -0.906274319, 0.42260164, 1.00030053, -3.39417238e-006, -5.74673834e-007)
  2467. p7.CanCollide = false
  2468. p7.Locked = true
  2469. p7.TopSurface = Enum.SurfaceType.Smooth
  2470. b7 = Instance.new("SpecialMesh", p7)
  2471. b7.MeshType = Enum.MeshType.Wedge
  2472. b7.Name = "Mesh"
  2473. b7.Scale = Vector3.new(0.200000003, 1, 1)
  2474. p8 = Instance.new("Part", m)
  2475. p8.BrickColor = BrickColor.new("Really black")
  2476. p8.Material = Enum.Material.Neon
  2477. p8.FormFactor = Enum.FormFactor.Custom
  2478. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2479. p8.CFrame = CFrame.new(62.1344833, 9.89923668, -14.2683573, 1.0003655, -9.00030136e-006, -1.6914961e-006, -8.34465027e-007, 0.999961495, 3.15914986e-006, -2.15653972e-006, 3.05826416e-006, 1.00030792)
  2480. p8.CanCollide = false
  2481. p8.Locked = true
  2482. p8.BottomSurface = Enum.SurfaceType.Smooth
  2483. p8.TopSurface = Enum.SurfaceType.Smooth
  2484. b8 = Instance.new("SpecialMesh", p8)
  2485. b8.MeshType = Enum.MeshType.Sphere
  2486. b8.Name = "Mesh"
  2487. p9 = Instance.new("Part", m)
  2488. p9.BrickColor = BrickColor.new("Really black")
  2489. p9.Material = Enum.Material.Neon
  2490. p9.FormFactor = Enum.FormFactor.Custom
  2491. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2492. p9.CFrame = CFrame.new(62.1350441, 7.19933271, -14.2684784, 1.00037432, -9.11423649e-006, -1.78677055e-006, -8.82557742e-007, 0.999960482, 3.17407398e-006, -2.19382355e-006, 3.14769591e-006, 1.00031543)
  2493. p9.CanCollide = false
  2494. p9.Locked = true
  2495. p9.BottomSurface = Enum.SurfaceType.Smooth
  2496. p9.TopSurface = Enum.SurfaceType.Smooth
  2497. b9 = Instance.new("SpecialMesh", p9)
  2498. b9.MeshType = Enum.MeshType.Sphere
  2499. b9.Name = "Mesh"
  2500. p10 = Instance.new("Part", m)
  2501. p10.BrickColor = BrickColor.new("Royal purple")
  2502. p10.Material = Enum.Material.Neon
  2503. p10.FormFactor = Enum.FormFactor.Custom
  2504. p10.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  2505. p10.CFrame = CFrame.new(62.4732666, 7.92819929, -14.2685785, -0.906659067, -0.422771662, -1.80169195e-006, 0.422602057, -0.906270981, 3.2933026e-006, 3.38190716e-006, -1.99476835e-006, 1.00032294)
  2506. p10.CanCollide = false
  2507. p10.Locked = true
  2508. p10.BottomSurface = Enum.SurfaceType.Smooth
  2509. p10.TopSurface = Enum.SurfaceType.Smooth
  2510. p11 = Instance.new("Part", m)
  2511. p11.BrickColor = BrickColor.new("Royal purple")
  2512. p11.Material = Enum.Material.Neon
  2513. p11.FormFactor = Enum.FormFactor.Custom
  2514. p11.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2515. p11.CFrame = CFrame.new(62.4794731, 9.45469475, -14.2686787, -0.819467902, 0.573809147, -1.81661335e-006, -0.573551893, -0.819118977, 3.41253167e-006, -9.27350783e-008, -4.03244348e-006, 1.00033033)
  2516. p11.CanCollide = false
  2517. p11.Locked = true
  2518. p11.BottomSurface = Enum.SurfaceType.Smooth
  2519. p11.TopSurface = Enum.SurfaceType.Smooth
  2520. p12 = Instance.new("Part", m)
  2521. p12.BrickColor = BrickColor.new("Really black")
  2522. p12.Material = Enum.Material.Neon
  2523. p12.FormFactor = Enum.FormFactor.Custom
  2524. p12.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2525. p12.CFrame = CFrame.new(62.7369499, 6.29933262, -14.2688055, 1.00040102, -9.53674316e-006, -1.84644205e-006, -1.25169754e-006, 0.999957919, 3.50196092e-006, -2.25187659e-006, 3.46763295e-006, 1.00033784)
  2526. p12.CanCollide = false
  2527. p12.Locked = true
  2528. p12.BottomSurface = Enum.SurfaceType.Smooth
  2529. p12.TopSurface = Enum.SurfaceType.Smooth
  2530. b10 = Instance.new("SpecialMesh", p12)
  2531. b10.MeshType = Enum.MeshType.Sphere
  2532. b10.Name = "Mesh"
  2533. p13 = Instance.new("Part", m)
  2534. p13.BrickColor = BrickColor.new("Royal purple")
  2535. p13.Material = Enum.Material.Neon
  2536. p13.FormFactor = Enum.FormFactor.Custom
  2537. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  2538. p13.CFrame = CFrame.new(62.8003883, 10.1991549, -13.2136488, 1.00040984, -9.59636054e-006, -1.88372474e-006, -1.43051466e-006, 0.999956846, 3.58340549e-006, -2.3487878e-006, 3.4825357e-006, 1.00034535)
  2539. p13.CanCollide = false
  2540. p13.Locked = true
  2541. p13.BottomSurface = Enum.SurfaceType.Smooth
  2542. p13.TopSurface = Enum.SurfaceType.Smooth
  2543. b11 = Instance.new("SpecialMesh", p13)
  2544. b11.MeshType = Enum.MeshType.Sphere
  2545. b11.Name = "Mesh"
  2546. p14 = Instance.new("Part", m)
  2547. p14.BrickColor = BrickColor.new("Really black")
  2548. p14.Material = Enum.Material.Neon
  2549. p14.FormFactor = Enum.FormFactor.Custom
  2550. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2551. p14.CFrame = CFrame.new(62.7374802, 9.79915905, -14.2689018, 1.00041437, -9.80505502e-006, -1.96572228e-006, -1.37091877e-006, 0.999956131, 3.62812011e-006, -2.37115751e-006, 3.4527211e-006, 1.00034904)
  2552. p14.CanCollide = false
  2553. p14.Locked = true
  2554. p14.BottomSurface = Enum.SurfaceType.Smooth
  2555. p14.TopSurface = Enum.SurfaceType.Smooth
  2556. b12 = Instance.new("SpecialMesh", p14)
  2557. b12.MeshType = Enum.MeshType.Sphere
  2558. b12.Name = "Mesh"
  2559. p15 = Instance.new("Part", m)
  2560. p15.BrickColor = BrickColor.new("Really black")
  2561. p15.Transparency = 1
  2562. p15.Material = Enum.Material.Metal
  2563. p15.Name = "Main"
  2564. p15.FormFactor = Enum.FormFactor.Custom
  2565. p15.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2566. p15.CFrame = CFrame.new(62.838131, 8.1992178, -13.1686192, 1.00041902, -9.80505047e-006, -1.96572933e-006, -1.54973122e-006, 0.999955654, 3.62813353e-006, -2.38607572e-006, 3.57197018e-006, 1.00035274)
  2567. p15.CanCollide = false
  2568. p15.Locked = true
  2569. p15.BottomSurface = Enum.SurfaceType.Smooth
  2570. p15.TopSurface = Enum.SurfaceType.Smooth
  2571. p16 = Instance.new("Part", m)
  2572. p16.BrickColor = BrickColor.new("Really black")
  2573. p16.Material = Enum.Material.Neon
  2574. p16.FormFactor = Enum.FormFactor.Custom
  2575. p16.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2576. p16.CFrame = CFrame.new(62.9387741, 8.79918098, -14.2691231, 1.0004282, -9.95411301e-006, -2.00301338e-006, -1.66894927e-006, 0.999954581, 3.71756369e-006, -2.46808372e-006, 3.61668594e-006, 1.00036013)
  2577. p16.CanCollide = false
  2578. p16.Locked = true
  2579. p16.BottomSurface = Enum.SurfaceType.Smooth
  2580. p16.TopSurface = Enum.SurfaceType.Smooth
  2581. b13 = Instance.new("SpecialMesh", p16)
  2582. b13.MeshType = Enum.MeshType.Sphere
  2583. b13.Name = "Mesh"
  2584. p17 = Instance.new("Part", m)
  2585. p17.BrickColor = BrickColor.new("Royal purple")
  2586. p17.Material = Enum.Material.Neon
  2587. p17.FormFactor = Enum.FormFactor.Custom
  2588. p17.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2589. p17.CFrame = CFrame.new(63.0825539, 6.854743, -14.2692442, -0.866409063, -0.50020963, -2.099928e-006, 0.499978155, -0.86598444, 3.73249213e-006, 4.01878242e-006, -1.94999211e-006, 1.00036764)
  2590. p17.CanCollide = false
  2591. p17.Locked = true
  2592. p17.BottomSurface = Enum.SurfaceType.Smooth
  2593. p17.TopSurface = Enum.SurfaceType.Smooth
  2594. p18 = Instance.new("Part", m)
  2595. p18.BrickColor = BrickColor.new("Royal purple")
  2596. p18.Material = Enum.Material.Neon
  2597. p18.FormFactor = Enum.FormFactor.Custom
  2598. p18.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2599. p18.CFrame = CFrame.new(63.1831665, 8.15466595, -14.2693415, -0.906707585, 0.422816038, -2.11485258e-006, -0.422596663, -0.906265914, 3.8437388e-006, 6.9698217e-007, -4.50413063e-006, 1.00037515)
  2600. p18.CanCollide = false
  2601. p18.Locked = true
  2602. p18.BottomSurface = Enum.SurfaceType.Smooth
  2603. p18.TopSurface = Enum.SurfaceType.Smooth
  2604. p19 = Instance.new("Part", m)
  2605. p19.BrickColor = BrickColor.new("Royal purple")
  2606. p19.Material = Enum.Material.Neon
  2607. p19.FormFactor = Enum.FormFactor.Custom
  2608. p19.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2609. p19.CFrame = CFrame.new(63.2069473, 8.53140068, -14.2694473, -0.707418501, 0.707425714, -2.09994369e-006, -0.707068563, -0.707078457, 3.72453474e-006, -9.59315798e-007, -4.56575162e-006, 1.00037515)
  2610. p19.CanCollide = false
  2611. p19.Locked = true
  2612. p19.BottomSurface = Enum.SurfaceType.Smooth
  2613. p19.TopSurface = Enum.SurfaceType.Smooth
  2614. p20 = Instance.new("Part", m)
  2615. p20.BrickColor = BrickColor.new("Royal purple")
  2616. p20.Material = Enum.Material.Neon
  2617. p20.FormFactor = Enum.FormFactor.Custom
  2618. p20.Size = Vector3.new(0.200000048, 0.899999917, 0.200000048)
  2619. p20.CFrame = CFrame.new(63.2280884, 9.68191624, -14.2694416, -0.342169315, 0.940117717, -2.11486008e-006, -0.93964541, -0.342010528, 3.84375198e-006, -2.7989995e-006, -3.73256239e-006, 1.00037885)
  2620. p20.CanCollide = false
  2621. p20.Locked = true
  2622. p20.BottomSurface = Enum.SurfaceType.Smooth
  2623. p20.TopSurface = Enum.SurfaceType.Smooth
  2624. p21 = Instance.new("Part", m)
  2625. p21.BrickColor = BrickColor.new("Royal purple")
  2626. p21.Material = Enum.Material.Neon
  2627. p21.FormFactor = Enum.FormFactor.Custom
  2628. p21.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  2629. p21.CFrame = CFrame.new(63.3539009, 9.07959557, -14.2694454, 0.707428038, 0.707422554, -2.12876989e-006, -0.707079053, 0.707067132, 3.83015185e-006, -4.56554562e-006, 9.7875602e-007, 1.00037885)
  2630. p21.CanCollide = false
  2631. p21.Locked = true
  2632. p21.BottomSurface = Enum.SurfaceType.Smooth
  2633. p21.TopSurface = Enum.SurfaceType.Smooth
  2634. p22 = Instance.new("Part", m)
  2635. p22.BrickColor = BrickColor.new("Really black")
  2636. p22.Material = Enum.Material.Neon
  2637. p22.FormFactor = Enum.FormFactor.Custom
  2638. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2639. p22.CFrame = CFrame.new(63.4412346, 7.49916172, -14.269558, 1.0004549, -5.30481339e-006, -2.11486781e-006, -7.24196434e-006, 0.999951959, 3.84376608e-006, -2.5650661e-006, 4.02606338e-006, 1.00038254)
  2640. p22.CanCollide = false
  2641. p22.Locked = true
  2642. p22.BottomSurface = Enum.SurfaceType.Smooth
  2643. p22.TopSurface = Enum.SurfaceType.Smooth
  2644. b14 = Instance.new("SpecialMesh", p22)
  2645. b14.MeshType = Enum.MeshType.Sphere
  2646. b14.Name = "Mesh"
  2647. p23 = Instance.new("Part", m)
  2648. p23.BrickColor = BrickColor.new("Really black")
  2649. p23.Material = Enum.Material.Neon
  2650. p23.FormFactor = Enum.FormFactor.Custom
  2651. p23.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2652. p23.CFrame = CFrame.new(63.5412827, 8.29912186, -14.2695541, 1.00045943, -5.54520193e-006, -2.12978443e-006, -7.22709638e-006, 0.999951601, 3.96298356e-006, -2.56507747e-006, 4.02606247e-006, 1.00038624)
  2653. p23.CanCollide = false
  2654. p23.Locked = true
  2655. p23.BottomSurface = Enum.SurfaceType.Smooth
  2656. p23.TopSurface = Enum.SurfaceType.Smooth
  2657. b15 = Instance.new("SpecialMesh", p23)
  2658. b15.MeshType = Enum.MeshType.Sphere
  2659. b15.Name = "Mesh"
  2660. p24 = Instance.new("Part", m)
  2661. p24.BrickColor = BrickColor.new("Really black")
  2662. p24.Material = Enum.Material.Neon
  2663. p24.FormFactor = Enum.FormFactor.Custom
  2664. p24.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2665. p24.CFrame = CFrame.new(63.7413521, 9.49905682, -14.2695513, 1.00045943, -5.51538596e-006, -2.12978443e-006, -7.25689733e-006, 0.999951601, 3.96298356e-006, -2.56507769e-006, 4.02606247e-006, 1.00038624)
  2666. p24.CanCollide = false
  2667. p24.Locked = true
  2668. p24.BottomSurface = Enum.SurfaceType.Smooth
  2669. p24.TopSurface = Enum.SurfaceType.Smooth
  2670. b16 = Instance.new("SpecialMesh", p24)
  2671. b16.MeshType = Enum.MeshType.Sphere
  2672. b16.Name = "Mesh"
  2673. w1 = Instance.new("Weld", p1)
  2674. w1.Name = "Wedge_Weld"
  2675. w1.Part0 = p1
  2676. w1.C0 = CFrame.new(-13.7623367, 38.4686089, -47.5196228, 1.82382877e-007, -1.21785519e-007, -1.0000037, -0.707109988, 0.707106709, -1.20249211e-007, 0.707110047, 0.707106352, 1.16605563e-007)
  2677. w1.Part1 = p2
  2678. w1.C1 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-007, -9.19831891e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  2679. w2 = Instance.new("Weld", p2)
  2680. w2.Name = "Wedge_Weld"
  2681. w2.Part0 = p2
  2682. w2.C0 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-007, -9.19831891e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  2683. w2.Part1 = p3
  2684. w2.C1 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-007, -9.1983182e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  2685. w3 = Instance.new("Weld", p3)
  2686. w3.Name = "Wedge_Weld"
  2687. w3.Part0 = p3
  2688. w3.C0 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-007, -9.1983182e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  2689. w3.Part1 = p4
  2690. w3.C1 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-007, -1.21785519e-007, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-007, 0.707110107, 0.707106352, 1.16605577e-007)
  2691. w4 = Instance.new("Weld", p4)
  2692. w4.Name = "Wedge_Weld"
  2693. w4.Part0 = p4
  2694. w4.C0 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-007, -1.21785519e-007, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-007, 0.707110107, 0.707106352, 1.16605577e-007)
  2695. w4.Part1 = p5
  2696. w4.C1 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069863e-008)
  2697. w5 = Instance.new("Weld", p5)
  2698. w5.Name = "Wedge_Weld"
  2699. w5.Part0 = p5
  2700. w5.C0 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069863e-008)
  2701. w5.Part1 = p6
  2702. w5.C1 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069792e-008)
  2703. w6 = Instance.new("Weld", p6)
  2704. w6.Name = "Wedge_Weld"
  2705. w6.Part0 = p6
  2706. w6.C0 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069792e-008)
  2707. w6.Part1 = p7
  2708. w6.C1 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069721e-008)
  2709. w7 = Instance.new("Weld", p7)
  2710. w7.Name = "Part_Weld"
  2711. w7.Part0 = p7
  2712. w7.C0 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069721e-008)
  2713. w7.Part1 = p8
  2714. w7.C1 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-007, -3.7252903e-008, 1.71363354e-007, 0.999999285, -1.49011612e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2715. w8 = Instance.new("Weld", p8)
  2716. w8.Name = "Part_Weld"
  2717. w8.Part0 = p8
  2718. w8.C0 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-007, -3.7252903e-008, 1.71363354e-007, 0.999999285, -1.49011612e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2719. w8.Part1 = p9
  2720. w8.C1 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2721. w9 = Instance.new("Weld", p9)
  2722. w9.Name = "Part_Weld"
  2723. w9.Part0 = p9
  2724. w9.C0 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2725. w9.Part1 = p10
  2726. w9.C1 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-009, -0.422620118, -0.906307399, -6.66151578e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  2727. w10 = Instance.new("Weld", p10)
  2728. w10.Name = "Part_Weld"
  2729. w10.Part0 = p10
  2730. w10.C0 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-009, -0.422620118, -0.906307399, -6.66151578e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  2731. w10.Part1 = p11
  2732. w10.C1 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-008, 0.573578954, -0.8191517, -3.17313607e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  2733. w11 = Instance.new("Weld", p11)
  2734. w11.Name = "Part_Weld"
  2735. w11.Part0 = p11
  2736. w11.C0 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-008, 0.573578954, -0.8191517, -3.17313607e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  2737. w11.Part1 = p12
  2738. w11.C1 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2739. w12 = Instance.new("Weld", p12)
  2740. w12.Name = "Part_Weld"
  2741. w12.Part0 = p12
  2742. w12.C0 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2743. w12.Part1 = p13
  2744. w12.C1 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2745. w13 = Instance.new("Weld", p13)
  2746. w13.Name = "Part_Weld"
  2747. w13.Part0 = p13
  2748. w13.C0 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2749. w13.Part1 = p14
  2750. w13.C1 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  2751. w14 = Instance.new("Weld", p14)
  2752. w14.Name = "Part_Weld"
  2753. w14.Part0 = p14
  2754. w14.C0 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  2755. w14.Part1 = p15
  2756. w14.C1 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-007, 2.98023295e-008, 8.94069672e-008, 0.999999523, 5.9604659e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  2757. w15 = Instance.new("Weld", p15)
  2758. w15.Name = "Part_Weld"
  2759. w15.Part0 = p15
  2760. w15.C0 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-007, 2.98023295e-008, 8.94069672e-008, 0.999999523, 5.9604659e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  2761. w15.Part1 = p16
  2762. w15.C1 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2763. w16 = Instance.new("Weld", p16)
  2764. w16.Name = "Part_Weld"
  2765. w16.Part0 = p16
  2766. w16.C0 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2767. w16.Part1 = p17
  2768. w16.C1 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-015, -0.500002086, -0.86602509, -5.96046448e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2769. w17 = Instance.new("Weld", p17)
  2770. w17.Name = "Part_Weld"
  2771. w17.Part0 = p17
  2772. w17.C0 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-015, -0.500002086, -0.86602509, -5.96046448e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2773. w17.Part1 = p18
  2774. w17.C1 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-008, 0.422620177, -0.906307578, -4.1425146e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  2775. w18 = Instance.new("Weld", p18)
  2776. w18.Name = "Part_Weld"
  2777. w18.Part0 = p18
  2778. w18.C0 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-008, 0.422620177, -0.906307578, -4.1425146e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  2779. w18.Part1 = p19
  2780. w18.C1 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-008, 0.707109928, -0.70710659, -2.1073431e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  2781. w19 = Instance.new("Weld", p19)
  2782. w19.Name = "Part_Weld"
  2783. w19.Part0 = p19
  2784. w19.C0 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-008, 0.707109928, -0.70710659, -2.1073431e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  2785. w19.Part1 = p20
  2786. w19.C1 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-008, 0.939692557, -0.342020333, 6.23934611e-008, -4.47034836e-008, 5.96044387e-008, 1)
  2787. w20 = Instance.new("Weld", p20)
  2788. w20.Name = "Part_Weld"
  2789. w20.Part0 = p20
  2790. w20.C0 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-008, 0.939692557, -0.342020333, 6.23934611e-008, -4.47034836e-008, 5.96044387e-008, 1)
  2791. w20.Part1 = p21
  2792. w20.C1 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-008, 0.707107842, 0.707105696, 8.91225582e-009, -5.86070712e-008, 4.60033966e-008, 1)
  2793. w21 = Instance.new("Weld", p21)
  2794. w21.Name = "Part_Weld"
  2795. w21.Part0 = p21
  2796. w21.C0 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-008, 0.707107842, 0.707105696, 8.91225582e-009, -5.86070712e-008, 4.60033966e-008, 1)
  2797. w21.Part1 = p22
  2798. w21.C1 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-007, 2.98023224e-008, 7.4505806e-008, 0.999999642, 5.96046448e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  2799. w22 = Instance.new("Weld", p22)
  2800. w22.Name = "Part_Weld"
  2801. w22.Part0 = p22
  2802. w22.C0 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-007, 2.98023224e-008, 7.4505806e-008, 0.999999642, 5.96046448e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  2803. w22.Part1 = p23
  2804. w22.C1 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  2805. w23 = Instance.new("Weld", p23)
  2806. w23.Name = "Part_Weld"
  2807. w23.Part0 = p23
  2808. w23.C0 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  2809. w23.Part1 = p24
  2810. w23.C1 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  2811. w24 = Instance.new("Weld", p24)
  2812. w24.Name = "Part_Weld"
  2813. w24.Part0 = p24
  2814. w24.C0 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  2815. m.Parent = larm
  2816. m:MakeJoints()
  2817. ----------------------------------------------------
  2818. local cor3 = Instance.new("Part", larm.LeftArm)
  2819. cor3.Name = "Thingy"
  2820. cor3.Locked = true
  2821. cor3.BottomSurface = 0
  2822. cor3.CanCollide = false
  2823. cor3.Size = Vector3.new(2, 1, 1)
  2824. cor3.Transparency = 1
  2825. cor3.TopSurface = 0
  2826. corw2 = Instance.new("Weld", cor3)
  2827. corw2.Part0 = larm
  2828. corw2.Part1 = cor3
  2829. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2830. corw2.C1 = CFrame.new(0, 0, 0)
  2831. weld2 = Instance.new("Weld", larm.LeftArm)
  2832. weld2.Part0 = cor3
  2833. weld2.Part1 = p15
  2834. weld2.C0 = CFrame.new(0, 0, .6)
  2835. ----------------------------------------------------
  2836. ----------------------------------------------------
  2837. local m = Instance.new("Model")
  2838. m.Name = "RightArm"
  2839. p1 = Instance.new("WedgePart", m)
  2840. p1.BrickColor = BrickColor.new("Royal purple")
  2841. p1.Material = Enum.Material.Neon
  2842. p1.Name = "Wedge"
  2843. p1.FormFactor = Enum.FormFactor.Custom
  2844. p1.Size = Vector3.new(1, 1.19999981, 3.30000019)
  2845. p1.CFrame = CFrame.new(71.7528229, 9.08148766, -13.7657108, 2.20961255e-007, -0.422704399, -0.906498253, -1.70178805e-006, -0.906287491, 0.422612786, -1.00018191, -1.16194826e-006, 2.39246219e-006)
  2846. p1.CanCollide = false
  2847. p1.Locked = true
  2848. p1.TopSurface = Enum.SurfaceType.Smooth
  2849. b1 = Instance.new("SpecialMesh", p1)
  2850. b1.MeshType = Enum.MeshType.Wedge
  2851. b1.Name = "Mesh"
  2852. b1.Scale = Vector3.new(0.200000003, 1, 1)
  2853. p2 = Instance.new("WedgePart", m)
  2854. p2.BrickColor = BrickColor.new("Royal purple")
  2855. p2.Material = Enum.Material.Neon
  2856. p2.Name = "Wedge"
  2857. p2.FormFactor = Enum.FormFactor.Custom
  2858. p2.Size = Vector3.new(1, 1.19999981, 3.30000019)
  2859. p2.CFrame = CFrame.new(71.7534714, 9.08147335, -12.5655851, 3.25293399e-007, -0.422708124, -0.906506479, -1.7167032e-006, -0.906286299, 0.422612339, -1.0001893, -1.13135729e-006, 2.49332743e-006)
  2860. p2.CanCollide = false
  2861. p2.Locked = true
  2862. p2.TopSurface = Enum.SurfaceType.Smooth
  2863. b2 = Instance.new("SpecialMesh", p2)
  2864. b2.MeshType = Enum.MeshType.Wedge
  2865. b2.Name = "Mesh"
  2866. b2.Scale = Vector3.new(0.200000003, 1, 1)
  2867. p3 = Instance.new("WedgePart", m)
  2868. p3.BrickColor = BrickColor.new("Royal purple")
  2869. p3.Material = Enum.Material.Neon
  2870. p3.Name = "Wedge"
  2871. p3.FormFactor = Enum.FormFactor.Custom
  2872. p3.Size = Vector3.new(1, 1.19999981, 3.30000019)
  2873. p3.CFrame = CFrame.new(71.7541199, 9.08145237, -13.1658068, 4.29627249e-007, -0.422711849, -0.906514704, -1.73161834e-006, -0.906285107, 0.422611892, -1.0001967, -1.10076587e-006, 2.59419403e-006)
  2874. p3.CanCollide = false
  2875. p3.Locked = true
  2876. p3.TopSurface = Enum.SurfaceType.Smooth
  2877. b3 = Instance.new("SpecialMesh", p3)
  2878. b3.MeshType = Enum.MeshType.Wedge
  2879. b3.Name = "Mesh"
  2880. b3.Scale = Vector3.new(0.200000003, 1, 1)
  2881. p4 = Instance.new("WedgePart", m)
  2882. p4.BrickColor = BrickColor.new("Royal purple")
  2883. p4.Material = Enum.Material.Neon
  2884. p4.Name = "Wedge"
  2885. p4.FormFactor = Enum.FormFactor.Custom
  2886. p4.Size = Vector3.new(1, 1.19999981, 4)
  2887. p4.CFrame = CFrame.new(71.4245453, 8.39948177, -13.7660398, -5.32960883e-007, 0.70726943, -0.707265258, 1.90324067e-006, 0.707083881, 0.707096815, 1.0001967, 9.87842554e-008, 2.61978244e-006)
  2888. p4.CanCollide = false
  2889. p4.Locked = true
  2890. p4.TopSurface = Enum.SurfaceType.Smooth
  2891. b4 = Instance.new("SpecialMesh", p4)
  2892. b4.MeshType = Enum.MeshType.Wedge
  2893. b4.Name = "Mesh"
  2894. b4.Scale = Vector3.new(0.200000003, 1, 1)
  2895. p5 = Instance.new("WedgePart", m)
  2896. p5.BrickColor = BrickColor.new("Royal purple")
  2897. p5.Material = Enum.Material.Neon
  2898. p5.Name = "Wedge"
  2899. p5.FormFactor = Enum.FormFactor.Custom
  2900. p5.Size = Vector3.new(1, 1.19999981, 4)
  2901. p5.CFrame = CFrame.new(71.4251862, 8.39946651, -13.1660223, -6.3729243e-007, 0.707273066, -0.707261622, 1.91814229e-006, 0.707080245, 0.707100451, 1.0001967, 1.62003985e-007, 2.53547341e-006)
  2902. p5.CanCollide = false
  2903. p5.Locked = true
  2904. p5.TopSurface = Enum.SurfaceType.Smooth
  2905. b5 = Instance.new("SpecialMesh", p5)
  2906. b5.MeshType = Enum.MeshType.Wedge
  2907. b5.Name = "Mesh"
  2908. b5.Scale = Vector3.new(0.200000003, 1, 1)
  2909. p6 = Instance.new("WedgePart", m)
  2910. p6.BrickColor = BrickColor.new("Royal purple")
  2911. p6.Material = Enum.Material.Neon
  2912. p6.Name = "Wedge"
  2913. p6.FormFactor = Enum.FormFactor.Custom
  2914. p6.Size = Vector3.new(1, 1.19999981, 4)
  2915. p6.CFrame = CFrame.new(71.4258194, 8.39945126, -12.5660009, -7.41623865e-007, 0.707276702, -0.707257986, 1.93304436e-006, 0.707076609, 0.707104087, 1.0001967, 2.25224142e-007, 2.45116462e-006)
  2916. p6.CanCollide = false
  2917. p6.Locked = true
  2918. p6.TopSurface = Enum.SurfaceType.Smooth
  2919. b6 = Instance.new("SpecialMesh", p6)
  2920. b6.MeshType = Enum.MeshType.Wedge
  2921. b6.Name = "Mesh"
  2922. b6.Scale = Vector3.new(0.200000003, 1, 1)
  2923. p7 = Instance.new("Part", m)
  2924. p7.BrickColor = BrickColor.new("Really black")
  2925. p7.Material = Enum.Material.Neon
  2926. p7.FormFactor = Enum.FormFactor.Custom
  2927. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2928. p7.CFrame = CFrame.new(70.3255081, 6.6994977, -14.2663507, 1.00023162, 1.31726265e-005, -7.92685455e-007, -1.94311142e-005, 0.999976158, 1.97985287e-006, -1.62725564e-006, 1.86058458e-006, 1.00020039)
  2929. p7.CanCollide = false
  2930. p7.Locked = true
  2931. p7.BottomSurface = Enum.SurfaceType.Smooth
  2932. p7.TopSurface = Enum.SurfaceType.Smooth
  2933. b7 = Instance.new("SpecialMesh", p7)
  2934. b7.MeshType = Enum.MeshType.Sphere
  2935. b7.Name = "Mesh"
  2936. p8 = Instance.new("Part", m)
  2937. p8.BrickColor = BrickColor.new("Royal purple")
  2938. p8.Material = Enum.Material.Neon
  2939. p8.FormFactor = Enum.FormFactor.Custom
  2940. p8.Size = Vector3.new(0.200000048, 0.999999881, 0.200000048)
  2941. p8.CFrame = CFrame.new(70.0060196, 9.16293144, -14.2664633, 0.881308079, -0.429463804, -0.198316693, 0.401435703, 0.900625467, -0.166355878, 0.250050306, 0.0670034215, 0.966122985)
  2942. p8.CanCollide = false
  2943. p8.Locked = true
  2944. p8.BottomSurface = Enum.SurfaceType.Smooth
  2945. p8.TopSurface = Enum.SurfaceType.Smooth
  2946. p9 = Instance.new("Part", m)
  2947. p9.BrickColor = BrickColor.new("Really black")
  2948. p9.Material = Enum.Material.Neon
  2949. p9.FormFactor = Enum.FormFactor.Custom
  2950. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2951. p9.CFrame = CFrame.new(70.2268219, 8.59942532, -14.2665701, 1.00024557, 1.30422413e-005, -8.7916851e-007, -1.95577741e-005, 0.999974489, 1.9967556e-006, -1.75833702e-006, 2.01165676e-006, 1.00021148)
  2952. p9.CanCollide = false
  2953. p9.Locked = true
  2954. p9.BottomSurface = Enum.SurfaceType.Smooth
  2955. p9.TopSurface = Enum.SurfaceType.Smooth
  2956. b8 = Instance.new("SpecialMesh", p9)
  2957. b8.MeshType = Enum.MeshType.Sphere
  2958. b8.Name = "Mesh"
  2959. p10 = Instance.new("Part", m)
  2960. p10.BrickColor = BrickColor.new("Really black")
  2961. p10.Material = Enum.Material.Neon
  2962. p10.FormFactor = Enum.FormFactor.Custom
  2963. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2964. p10.CFrame = CFrame.new(69.8274002, 9.5993948, -14.266675, 1.00025487, 1.30049675e-005, -9.23888138e-007, -1.9595207e-005, 0.999973536, 2.11597762e-006, -1.80306665e-006, 2.13088947e-006, 1.00021887)
  2965. p10.CanCollide = false
  2966. p10.Locked = true
  2967. p10.BottomSurface = Enum.SurfaceType.Smooth
  2968. p10.TopSurface = Enum.SurfaceType.Smooth
  2969. b9 = Instance.new("SpecialMesh", p10)
  2970. b9.MeshType = Enum.MeshType.Sphere
  2971. b9.Name = "Mesh"
  2972. p11 = Instance.new("Part", m)
  2973. p11.BrickColor = BrickColor.new("Royal purple")
  2974. p11.Material = Enum.Material.Neon
  2975. p11.FormFactor = Enum.FormFactor.Custom
  2976. p11.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  2977. p11.CFrame = CFrame.new(69.693718, 7.37976837, -14.2265854, 0.690841019, -0.711695194, -0.129447505, 0.678571701, 0.699464202, -0.224133074, 0.250056893, 0.0670053288, 0.966144204)
  2978. p11.CanCollide = false
  2979. p11.Locked = true
  2980. p11.BottomSurface = Enum.SurfaceType.Smooth
  2981. p11.TopSurface = Enum.SurfaceType.Smooth
  2982. p12 = Instance.new("Part", m)
  2983. p12.BrickColor = BrickColor.new("Royal purple")
  2984. p12.Material = Enum.Material.Neon
  2985. p12.FormFactor = Enum.FormFactor.Custom
  2986. p12.Size = Vector3.new(0.200000048, 1.5999999, 0.200000048)
  2987. p12.CFrame = CFrame.new(69.47966, 8.73308277, -14.2467909, 0.176576898, -0.984305978, 0.022559464, 0.951990068, 0.164877579, -0.257825077, 0.25006038, 0.0670051575, 0.966151059)
  2988. p12.CanCollide = false
  2989. p12.Locked = true
  2990. p12.BottomSurface = Enum.SurfaceType.Smooth
  2991. p12.TopSurface = Enum.SurfaceType.Smooth
  2992. p13 = Instance.new("Part", m)
  2993. p13.BrickColor = BrickColor.new("Royal purple")
  2994. p13.Material = Enum.Material.Neon
  2995. p13.FormFactor = Enum.FormFactor.Custom
  2996. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  2997. p13.CFrame = CFrame.new(69.3920746, 10.1993351, -13.2118578, 1.00028241, 1.27716921e-005, -1.06170774e-006, -1.99186616e-005, 0.999970496, 2.39908695e-006, -1.93528831e-006, 2.38418579e-006, 1.00024128)
  2998. p13.CanCollide = false
  2999. p13.Locked = true
  3000. p13.BottomSurface = Enum.SurfaceType.Smooth
  3001. p13.TopSurface = Enum.SurfaceType.Smooth
  3002. b10 = Instance.new("SpecialMesh", p13)
  3003. b10.MeshType = Enum.MeshType.Sphere
  3004. b10.Name = "Mesh"
  3005. p14 = Instance.new("Part", m)
  3006. p14.BrickColor = BrickColor.new("Really black")
  3007. p14.Material = Enum.Material.Metal
  3008. p14.Name = "Main"
  3009. p14.Transparency = 1
  3010. p14.FormFactor = Enum.FormFactor.Custom
  3011. p14.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  3012. p14.CFrame = CFrame.new(69.4298401, 8.19937706, -13.1668339, 1.00029147, 1.25630004e-005, -1.16605349e-006, -2.0008245e-005, 0.999969125, 2.41400744e-006, -2.03963987e-006, 2.39908786e-006, 1.00024867)
  3013. p14.CanCollide = false
  3014. p14.Locked = true
  3015. p14.BottomSurface = Enum.SurfaceType.Smooth
  3016. p14.TopSurface = Enum.SurfaceType.Smooth
  3017. p15 = Instance.new("Part", m)
  3018. p15.BrickColor = BrickColor.new("Really black")
  3019. p15.Material = Enum.Material.Neon
  3020. p15.FormFactor = Enum.FormFactor.Custom
  3021. p15.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  3022. p15.CFrame = CFrame.new(69.1303406, 7.89936399, -14.2672224, 1.00030053, 1.24437429e-005, -1.24804228e-006, -2.02170359e-005, 0.999968052, 2.45872889e-006, -2.07692119e-006, 2.48851507e-006, 1.00025606)
  3023. p15.CanCollide = false
  3024. p15.Locked = true
  3025. p15.BottomSurface = Enum.SurfaceType.Smooth
  3026. p15.TopSurface = Enum.SurfaceType.Smooth
  3027. b11 = Instance.new("SpecialMesh", p15)
  3028. b11.MeshType = Enum.MeshType.Sphere
  3029. b11.Name = "Mesh"
  3030. p16 = Instance.new("Part", m)
  3031. p16.BrickColor = BrickColor.new("Royal purple")
  3032. p16.Material = Enum.Material.Neon
  3033. p16.FormFactor = Enum.FormFactor.Custom
  3034. p16.Size = Vector3.new(0.200000048, 0.899999857, 0.200000048)
  3035. p16.CFrame = CFrame.new(68.9101486, 8.4345789, -14.2572756, 0.881372392, -0.429496199, -0.198331535, 0.401431859, 0.900618315, -0.166353673, 0.250065029, 0.0670081601, 0.966180325)
  3036. p16.CanCollide = false
  3037. p16.Locked = true
  3038. p16.BottomSurface = Enum.SurfaceType.Smooth
  3039. p16.TopSurface = Enum.SurfaceType.Smooth
  3040. p17 = Instance.new("Part", m)
  3041. p17.BrickColor = BrickColor.new("Royal purple")
  3042. p17.Material = Enum.Material.Neon
  3043. p17.FormFactor = Enum.FormFactor.Custom
  3044. p17.Size = Vector3.new(0.200000048, 0.599999785, 0.200000048)
  3045. p17.CFrame = CFrame.new(68.8972092, 7.71862125, -14.2674294, -0.70732069, -0.707330942, -1.25169754e-006, 0.707094371, -0.707072854, 2.48849392e-006, 3.42912972e-006, -4.32133675e-007, 1.00026357)
  3046. p17.CanCollide = false
  3047. p17.Locked = true
  3048. p17.BottomSurface = Enum.SurfaceType.Smooth
  3049. p17.TopSurface = Enum.SurfaceType.Smooth
  3050. p18 = Instance.new("Part", m)
  3051. p18.BrickColor = BrickColor.new("Really black")
  3052. p18.Material = Enum.Material.Neon
  3053. p18.FormFactor = Enum.FormFactor.Custom
  3054. p18.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  3055. p18.CFrame = CFrame.new(68.6320877, 8.89929676, -14.2675419, 1.000319, 7.09295273e-006, -1.29642399e-006, -1.53779984e-005, 0.999966145, 2.53321537e-006, -2.20864695e-006, 2.76013293e-006, 1.00027096)
  3056. p18.CanCollide = false
  3057. p18.Locked = true
  3058. p18.BottomSurface = Enum.SurfaceType.Smooth
  3059. p18.TopSurface = Enum.SurfaceType.Smooth
  3060. b12 = Instance.new("SpecialMesh", p18)
  3061. b12.MeshType = Enum.MeshType.Sphere
  3062. b12.Name = "Mesh"
  3063. p19 = Instance.new("Part", m)
  3064. p19.BrickColor = BrickColor.new("Really black")
  3065. p19.Material = Enum.Material.Neon
  3066. p19.FormFactor = Enum.FormFactor.Custom
  3067. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  3068. p19.CFrame = CFrame.new(68.6320801, 7.49934578, -14.2675457, 1.00032365, 7.02587113e-006, -1.41567671e-006, -1.53780693e-005, 0.999965429, 2.48852461e-006, -2.20865695e-006, 2.76013111e-006, 1.00027466)
  3069. p19.CanCollide = false
  3070. p19.Locked = true
  3071. p19.BottomSurface = Enum.SurfaceType.Smooth
  3072. p19.TopSurface = Enum.SurfaceType.Smooth
  3073. b13 = Instance.new("SpecialMesh", p19)
  3074. b13.MeshType = Enum.MeshType.Sphere
  3075. b13.Name = "Mesh"
  3076. w1 = Instance.new("Weld", p1)
  3077. w1.Name = "Wedge_Weld"
  3078. w1.Part0 = p1
  3079. w1.C0 = CFrame.new(-13.7623348, 36.7341995, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.9372038e-008)
  3080. w1.Part1 = p2
  3081. w1.C1 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720344e-008)
  3082. w2 = Instance.new("Weld", p2)
  3083. w2.Name = "Wedge_Weld"
  3084. w2.Part0 = p2
  3085. w2.C0 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720344e-008)
  3086. w2.Part1 = p3
  3087. w2.C1 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720415e-008)
  3088. w3 = Instance.new("Weld", p3)
  3089. w3.Name = "Wedge_Weld"
  3090. w3.Part0 = p3
  3091. w3.C0 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720415e-008)
  3092. w3.Part1 = p4
  3093. w3.C1 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-008, 4.26051052e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  3094. w4 = Instance.new("Weld", p4)
  3095. w4.Name = "Wedge_Weld"
  3096. w4.Part0 = p4
  3097. w4.C0 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-008, 4.26051052e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  3098. w4.Part1 = p5
  3099. w4.C1 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-008, 4.26051088e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  3100. w5 = Instance.new("Weld", p5)
  3101. w5.Name = "Wedge_Weld"
  3102. w5.Part0 = p5
  3103. w5.C0 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-008, 4.26051088e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  3104. w5.Part1 = p6
  3105. w5.C1 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-008, 4.2605091e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-008, -0.707109869, 0.707106531, -1.51036659e-008)
  3106. w6 = Instance.new("Weld", p6)
  3107. w6.Name = "Part_Weld"
  3108. w6.Part0 = p6
  3109. w6.C0 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-008, 4.2605091e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-008, -0.707109869, 0.707106531, -1.51036659e-008)
  3110. w6.Part1 = p7
  3111. w6.C1 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-007, 4.47034942e-008, 1.41560378e-007, 1, -7.45055218e-008, -4.47034836e-008, 7.45055289e-008, 1)
  3112. w7 = Instance.new("Weld", p7)
  3113. w7.Name = "Part_Weld"
  3114. w7.Part0 = p7
  3115. w7.C0 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-007, 4.47034942e-008, 1.41560378e-007, 1, -7.45055218e-008, -4.47034836e-008, 7.45055289e-008, 1)
  3116. w7.Part1 = p8
  3117. w7.C1 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449)
  3118. w8 = Instance.new("Weld", p8)
  3119. w8.Name = "Part_Weld"
  3120. w8.Part0 = p8
  3121. w8.C0 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449)
  3122. w8.Part1 = p9
  3123. w8.C1 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  3124. w9 = Instance.new("Weld", p9)
  3125. w9.Name = "Part_Weld"
  3126. w9.Part0 = p9
  3127. w9.C0 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  3128. w9.Part1 = p10
  3129. w9.C1 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  3130. w10 = Instance.new("Weld", p10)
  3131. w10.Name = "Part_Weld"
  3132. w10.Part0 = p10
  3133. w10.C0 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  3134. w10.Part1 = p11
  3135. w10.C1 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449)
  3136. w11 = Instance.new("Weld", p11)
  3137. w11.Name = "Part_Weld"
  3138. w11.Part0 = p11
  3139. w11.C0 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449)
  3140. w11.Part1 = p12
  3141. w11.C1 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389)
  3142. w12 = Instance.new("Weld", p12)
  3143. w12.Name = "Part_Weld"
  3144. w12.Part0 = p12
  3145. w12.C0 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389)
  3146. w12.Part1 = p13
  3147. w12.C1 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  3148. w13 = Instance.new("Weld", p13)
  3149. w13.Name = "Part_Weld"
  3150. w13.Part0 = p13
  3151. w13.C0 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  3152. w13.Part1 = p14
  3153. w13.C1 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  3154. w14 = Instance.new("Weld", p14)
  3155. w14.Name = "Part_Weld"
  3156. w14.Part0 = p14
  3157. w14.C0 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  3158. w14.Part1 = p15
  3159. w14.C1 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-007, 2.98023188e-008, 1.1920929e-007, 0.999999583, 5.96046412e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  3160. w15 = Instance.new("Weld", p15)
  3161. w15.Name = "Part_Weld"
  3162. w15.Part0 = p15
  3163. w15.C0 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-007, 2.98023188e-008, 1.1920929e-007, 0.999999583, 5.96046412e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  3164. w15.Part1 = p16
  3165. w15.C1 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389)
  3166. w16 = Instance.new("Weld", p16)
  3167. w16.Name = "Part_Weld"
  3168. w16.Part0 = p16
  3169. w16.C0 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389)
  3170. w16.Part1 = p17
  3171. w16.C1 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-008, -0.707110047, -0.707106292, -6.32202699e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  3172. w17 = Instance.new("Weld", p17)
  3173. w17.Name = "Part_Weld"
  3174. w17.Part0 = p17
  3175. w17.C0 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-008, -0.707110047, -0.707106292, -6.32202699e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  3176. w17.Part1 = p18
  3177. w17.C1 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-007, -4.47034836e-008, 1.63912773e-007, 0.999999285, -2.98023224e-008, -7.4505806e-008, -1.49011612e-008, 1.0000037)
  3178. w18 = Instance.new("Weld", p18)
  3179. w18.Name = "Part_Weld"
  3180. w18.Part0 = p18
  3181. w18.C0 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-007, -4.47034836e-008, 1.63912773e-007, 0.999999285, -2.98023224e-008, -7.4505806e-008, -1.49011612e-008, 1.0000037)
  3182. w18.Part1 = p19
  3183. w18.C1 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  3184. w19 = Instance.new("Weld", p19)
  3185. w19.Name = "Wedge_Weld"
  3186. w19.Part0 = p19
  3187. w19.C0 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  3188. m.Parent = rarm
  3189. m:MakeJoints()
  3190. ----------------------------------------------------
  3191. local cor4 = Instance.new("Part", rarm.RightArm)
  3192. cor4.Name = "Thingy"
  3193. cor4.Locked = true
  3194. cor4.BottomSurface = 0
  3195. cor4.CanCollide = false
  3196. cor4.Size = Vector3.new(2, 1, 1)
  3197. cor4.Transparency = 1
  3198. cor4.TopSurface = 0
  3199. corw2 = Instance.new("Weld", cor4)
  3200. corw2.Part0 = rarm
  3201. corw2.Part1 = cor4
  3202. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3203. corw2.C1 = CFrame.new(0, 0, 0)
  3204. weld2 = Instance.new("Weld", rarm.RightArm)
  3205. weld2.Part0 = cor4
  3206. weld2.Part1 = p14
  3207. weld2.C0 = CFrame.new(0, 0, .6)
  3208. ----------------------------------------------------
  3209. local m = Instance.new("Model")
  3210. m.Name = "RightLeg"
  3211. p1 = Instance.new("Part", m)
  3212. p1.BrickColor = BrickColor.new("Really black")
  3213. p1.Material = Enum.Material.Neon
  3214. p1.FormFactor = Enum.FormFactor.Custom
  3215. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  3216. p1.CFrame = CFrame.new(67.2429962, 5.49923229, -14.269578, 1.00045943, -5.51538596e-006, -2.14306033e-006, -7.25689733e-006, 0.999951601, 3.93318305e-006, -2.55180248e-006, 4.05587616e-006, 1.00038624)
  3217. p1.CanCollide = false
  3218. p1.Locked = true
  3219. p1.BottomSurface = Enum.SurfaceType.Smooth
  3220. p1.TopSurface = Enum.SurfaceType.Smooth
  3221. b1 = Instance.new("SpecialMesh", p1)
  3222. b1.MeshType = Enum.MeshType.Sphere
  3223. b1.Name = "Mesh"
  3224. p2 = Instance.new("Part", m)
  3225. p2.BrickColor = BrickColor.new("Really black")
  3226. p2.Material = Enum.Material.Neon
  3227. p2.FormFactor = Enum.FormFactor.Custom
  3228. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  3229. p2.CFrame = CFrame.new(67.6437836, 4.79925013, -14.2696915, 1.00046372, -5.51538369e-006, -2.14306829e-006, -7.37613163e-006, 0.999951243, 3.93319806e-006, -2.57999613e-006, 4.14531632e-006, 1.00039005)
  3230. p2.CanCollide = false
  3231. p2.Locked = true
  3232. p2.BottomSurface = Enum.SurfaceType.Smooth
  3233. p2.TopSurface = Enum.SurfaceType.Smooth
  3234. b2 = Instance.new("SpecialMesh", p2)
  3235. b2.MeshType = Enum.MeshType.Sphere
  3236. b2.Name = "Mesh"
  3237. p3 = Instance.new("Part", m)
  3238. p3.BrickColor = BrickColor.new("Royal purple")
  3239. p3.Material = Enum.Material.Neon
  3240. p3.FormFactor = Enum.FormFactor.Custom
  3241. p3.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  3242. p3.CFrame = CFrame.new(66.8881302, 5.17327356, -14.2696877, -0.707441688, -0.707433701, -2.14858301e-006, 0.707077265, -0.707066894, 4.0476084e-006, 4.7538756e-006, -1.07312485e-006, 1.00039387)
  3243. p3.CanCollide = false
  3244. p3.Locked = true
  3245. p3.BottomSurface = Enum.SurfaceType.Smooth
  3246. p3.TopSurface = Enum.SurfaceType.Smooth
  3247. p4 = Instance.new("Part", m)
  3248. p4.BrickColor = BrickColor.new("Really black")
  3249. p4.Material = Enum.Material.Neon
  3250. p4.FormFactor = Enum.FormFactor.Custom
  3251. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  3252. p4.CFrame = CFrame.new(66.5432739, 4.7992568, -14.2696896, 1.00046802, -5.54323196e-006, -2.17126149e-006, -7.42077827e-006, 0.999950886, 4.02261594e-006, -2.58000705e-006, 4.14531496e-006, 1.00039387)
  3253. p4.CanCollide = false
  3254. p4.Locked = true
  3255. p4.BottomSurface = Enum.SurfaceType.Smooth
  3256. p4.TopSurface = Enum.SurfaceType.Smooth
  3257. b3 = Instance.new("SpecialMesh", p4)
  3258. b3.MeshType = Enum.MeshType.Sphere
  3259. b3.Name = "Mesh"
  3260. p5 = Instance.new("Part", m)
  3261. p5.BrickColor = BrickColor.new("Royal purple")
  3262. p5.Material = Enum.Material.Neon
  3263. p5.FormFactor = Enum.FormFactor.Custom
  3264. p5.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  3265. p5.CFrame = CFrame.new(67.8495178, 4.41932487, -14.269804, -0.906733274, 0.422823101, -2.17126944e-006, -0.422590762, -0.906265974, 4.0226314e-006, 5.74146384e-007, -4.94026517e-006, 1.00039768)
  3266. p5.CanCollide = false
  3267. p5.Locked = true
  3268. p5.BottomSurface = Enum.SurfaceType.Smooth
  3269. p5.TopSurface = Enum.SurfaceType.Smooth
  3270. p6 = Instance.new("Part", m)
  3271. p6.BrickColor = BrickColor.new("Royal purple")
  3272. p6.Material = Enum.Material.Neon
  3273. p6.FormFactor = Enum.FormFactor.Custom
  3274. p6.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  3275. p6.CFrame = CFrame.new(66.5438004, 4.21363878, -14.2698011, 1.00047636, -7.68899918e-006, -2.17678416e-006, -5.51342964e-006, 0.999950111, 4.13704174e-006, -2.63088032e-006, 4.20975539e-006, 1.0004015)
  3276. p6.CanCollide = false
  3277. p6.Locked = true
  3278. p6.BottomSurface = Enum.SurfaceType.Smooth
  3279. p6.TopSurface = Enum.SurfaceType.Smooth
  3280. p7 = Instance.new("Part", m)
  3281. p7.BrickColor = BrickColor.new("Really black")
  3282. p7.Material = Enum.Material.Metal
  3283. p7.Name = "Main"
  3284. p7.Transparency = 1
  3285. p7.FormFactor = Enum.FormFactor.Custom
  3286. p7.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  3287. p7.CFrame = CFrame.new(67.2447891, 3.99926972, -13.1694622, 1.00048089, -5.69129634e-006, -2.186149e-006, -7.65911773e-006, 0.999949753, 4.1418657e-006, -2.63640663e-006, 4.32419529e-006, 1.00040531)
  3288. p7.CanCollide = false
  3289. p7.Locked = true
  3290. p7.BottomSurface = Enum.SurfaceType.Smooth
  3291. p7.TopSurface = Enum.SurfaceType.Smooth
  3292. p8 = Instance.new("Part", m)
  3293. p8.BrickColor = BrickColor.new("Royal purple")
  3294. p8.Material = Enum.Material.Neon
  3295. p8.FormFactor = Enum.FormFactor.Custom
  3296. p8.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  3297. p8.CFrame = CFrame.new(67.1560593, 4.19274044, -14.2700233, -0.766423643, -0.643097878, -2.21435107e-006, 0.642760634, -0.766000509, 4.23129995e-006, 4.88720252e-006, -1.69966381e-006, 1.00041294)
  3298. p8.CanCollide = false
  3299. p8.Locked = true
  3300. p8.BottomSurface = Enum.SurfaceType.Smooth
  3301. p8.TopSurface = Enum.SurfaceType.Smooth
  3302. p9 = Instance.new("WedgePart", m)
  3303. p9.BrickColor = BrickColor.new("Royal purple")
  3304. p9.Material = Enum.Material.Neon
  3305. p9.Name = "Wedge"
  3306. p9.FormFactor = Enum.FormFactor.Custom
  3307. p9.Size = Vector3.new(1, 1.19999981, 4)
  3308. p9.CFrame = CFrame.new(67.3460693, 3.49928832, -10.7686377, -1.00049889, -4.27957411e-006, 4.5400966e-006, 8.07642937e-006, 0.906259179, -0.422600418, 2.61850914e-006, -0.422791958, -0.906690836)
  3309. p9.CanCollide = false
  3310. p9.Locked = true
  3311. p9.TopSurface = Enum.SurfaceType.Smooth
  3312. b4 = Instance.new("SpecialMesh", p9)
  3313. b4.MeshType = Enum.MeshType.Wedge
  3314. b4.Name = "Mesh"
  3315. b4.Scale = Vector3.new(0.600000024, 1, 1)
  3316. p10 = Instance.new("Part", m)
  3317. p10.BrickColor = BrickColor.new("Really black")
  3318. p10.Material = Enum.Material.Neon
  3319. p10.FormFactor = Enum.FormFactor.Custom
  3320. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  3321. p10.CFrame = CFrame.new(68.0469971, 3.99923301, -14.2702446, 1.00050783, -6.09550762e-006, -2.27330474e-006, -8.07715332e-006, 0.999947786, 4.38094139e-006, -2.69438578e-006, 4.64916229e-006, 1.0004282)
  3322. p10.CanCollide = false
  3323. p10.Locked = true
  3324. p10.BottomSurface = Enum.SurfaceType.Smooth
  3325. p10.TopSurface = Enum.SurfaceType.Smooth
  3326. b5 = Instance.new("SpecialMesh", p10)
  3327. b5.MeshType = Enum.MeshType.Sphere
  3328. b5.Name = "Mesh"
  3329. p11 = Instance.new("Part", m)
  3330. p11.BrickColor = BrickColor.new("Really black")
  3331. p11.Material = Enum.Material.Neon
  3332. p11.FormFactor = Enum.FormFactor.Custom
  3333. p11.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  3334. p11.CFrame = CFrame.new(66.5467682, 3.59925723, -14.2703533, 1.00051641, -6.21477238e-006, -2.30150818e-006, -8.22622587e-006, 0.999947011, 4.47037792e-006, -2.72259308e-006, 4.73860473e-006, 1.00043583)
  3335. p11.CanCollide = false
  3336. p11.Locked = true
  3337. p11.BottomSurface = Enum.SurfaceType.Smooth
  3338. p11.TopSurface = Enum.SurfaceType.Smooth
  3339. b6 = Instance.new("SpecialMesh", p11)
  3340. b6.MeshType = Enum.MeshType.Sphere
  3341. b6.Name = "Mesh"
  3342. p12 = Instance.new("Part", m)
  3343. p12.BrickColor = BrickColor.new("Royal purple")
  3344. p12.Material = Enum.Material.Neon
  3345. p12.FormFactor = Enum.FormFactor.Custom
  3346. p12.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  3347. p12.CFrame = CFrame.new(67.558609, 3.39274073, -14.2704687, -0.766450763, -0.643119991, -2.33134415e-006, 0.642759323, -0.765998006, 4.5598149e-006, 5.20550884e-006, -1.92419975e-006, 1.00044346)
  3348. p12.CanCollide = false
  3349. p12.Locked = true
  3350. p12.BottomSurface = Enum.SurfaceType.Smooth
  3351. p12.TopSurface = Enum.SurfaceType.Smooth
  3352. p13 = Instance.new("Part", m)
  3353. p13.BrickColor = BrickColor.new("Really black")
  3354. p13.Material = Enum.Material.Neon
  3355. p13.FormFactor = Enum.FormFactor.Custom
  3356. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  3357. p13.CFrame = CFrame.new(67.0482101, 2.79927826, -14.2705812, 1.00053358, -6.43730164e-006, -2.36118058e-006, -8.5234642e-006, 0.999945402, 4.64126742e-006, -2.78064022e-006, 4.90151251e-006, 1.00045109)
  3358. p13.CanCollide = false
  3359. p13.Locked = true
  3360. p13.BottomSurface = Enum.SurfaceType.Smooth
  3361. p13.TopSurface = Enum.SurfaceType.Smooth
  3362. b7 = Instance.new("SpecialMesh", p13)
  3363. b7.MeshType = Enum.MeshType.Sphere
  3364. b7.Name = "Mesh"
  3365. p14 = Instance.new("WedgePart", m)
  3366. p14.BrickColor = BrickColor.new("Royal purple")
  3367. p14.Material = Enum.Material.Neon
  3368. p14.Name = "Wedge"
  3369. p14.FormFactor = Enum.FormFactor.Custom
  3370. p14.Size = Vector3.new(1, 0.699999809, 1.29999995)
  3371. p14.CFrame = CFrame.new(66.8462448, 2.3492887, -14.7586241, 1.00054216, -6.55656913e-006, -2.38459074e-006, -8.61293847e-006, 0.999944568, 4.66311894e-006, -2.81690609e-006, 5.04259924e-006, 1.00045872)
  3372. p14.CanCollide = false
  3373. p14.Locked = true
  3374. p14.TopSurface = Enum.SurfaceType.Smooth
  3375. b8 = Instance.new("SpecialMesh", p14)
  3376. b8.MeshType = Enum.MeshType.Wedge
  3377. b8.Name = "Mesh"
  3378. b8.Scale = Vector3.new(0.200000003, 1, 1)
  3379. p15 = Instance.new("WedgePart", m)
  3380. p15.BrickColor = BrickColor.new("Royal purple")
  3381. p15.Material = Enum.Material.Neon
  3382. p15.Name = "Wedge"
  3383. p15.FormFactor = Enum.FormFactor.Custom
  3384. p15.Size = Vector3.new(1, 0.699999809, 1.29999995)
  3385. p15.CFrame = CFrame.new(68.0474777, 2.34926867, -14.7587423, 1.00055075, -6.67583618e-006, -2.41442808e-006, -8.73221416e-006, 0.999943614, 4.74457238e-006, -2.84674707e-006, 5.12405404e-006, 1.00046635)
  3386. p15.CanCollide = false
  3387. p15.Locked = true
  3388. p15.TopSurface = Enum.SurfaceType.Smooth
  3389. b9 = Instance.new("SpecialMesh", p15)
  3390. b9.MeshType = Enum.MeshType.Wedge
  3391. b9.Name = "Mesh"
  3392. b9.Scale = Vector3.new(0.200000003, 1, 1)
  3393. p16 = Instance.new("WedgePart", m)
  3394. p16.BrickColor = BrickColor.new("Royal purple")
  3395. p16.Material = Enum.Material.Neon
  3396. p16.Name = "Wedge"
  3397. p16.FormFactor = Enum.FormFactor.Custom
  3398. p16.Size = Vector3.new(1, 0.699999809, 1.29999995)
  3399. p16.CFrame = CFrame.new(67.4477234, 2.34926438, -14.7588549, 1.00055933, -6.79510413e-006, -2.44426587e-006, -8.85149075e-006, 0.99994266, 4.82602672e-006, -2.8765885e-006, 5.20550975e-006, 1.00047398)
  3400. p16.CanCollide = false
  3401. p16.Locked = true
  3402. p16.TopSurface = Enum.SurfaceType.Smooth
  3403. b10 = Instance.new("SpecialMesh", p16)
  3404. b10.MeshType = Enum.MeshType.Wedge
  3405. b10.Name = "Mesh"
  3406. b10.Scale = Vector3.new(0.200000003, 1, 1)
  3407. w1 = Instance.new("Weld", p1)
  3408. w1.Name = "Part_Weld"
  3409. w1.Part0 = p1
  3410. w1.C0 = CFrame.new(-67.2025909, -3.50003719, 14.2622871, 1, -8.94065977e-008, 5.79734944e-008, 8.94065977e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  3411. w1.Part1 = p2
  3412. w1.C1 = CFrame.new(-67.6028976, -2.80003333, 14.2623405, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3413. w2 = Instance.new("Weld", p2)
  3414. w2.Name = "Part_Weld"
  3415. w2.Part0 = p2
  3416. w2.C0 = CFrame.new(-67.6028976, -2.80003333, 14.2623405, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3417. w2.Part1 = p3
  3418. w2.C1 = CFrame.new(45.023777, 49.5125847, 14.2622843, -0.707106769, 0.707106769, -6.37114681e-008, -0.707106769, -0.707106769, 1.37820813e-008, -3.53054119e-008, 5.47962173e-008, 1)
  3419. w3 = Instance.new("Weld", p3)
  3420. w3.Name = "Part_Weld"
  3421. w3.Part0 = p3
  3422. w3.C0 = CFrame.new(45.023777, 49.5125847, 14.2622843, -0.707106769, 0.707106769, -6.37114681e-008, -0.707106769, -0.707106769, 1.37820813e-008, -3.53054119e-008, 5.47962173e-008, 1)
  3423. w3.Part1 = p4
  3424. w3.C1 = CFrame.new(-66.5026016, -2.80003667, 14.2622871, 1, -8.94065835e-008, 5.79734944e-008, 8.94065835e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  3425. w4 = Instance.new("Weld", p4)
  3426. w4.Name = "Part_Weld"
  3427. w4.Part0 = p4
  3428. w4.C0 = CFrame.new(-66.5026016, -2.80003667, 14.2622871, 1, -8.94065835e-008, 5.79734944e-008, 8.94065835e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  3429. w4.Part1 = p5
  3430. w4.C1 = CFrame.new(62.4776497, -26.4635353, 14.2623405, -0.906311512, -0.422618151, -5.2200086e-008, 0.422620177, -0.906307399, -4.14251318e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3431. w5 = Instance.new("Weld", p5)
  3432. w5.Name = "Part_Weld"
  3433. w5.Part0 = p5
  3434. w5.C0 = CFrame.new(62.4776497, -26.4635353, 14.2623405, -0.906311512, -0.422618151, -5.2200086e-008, 0.422620177, -0.906307399, -4.14251318e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3435. w5.Part1 = p6
  3436. w5.C1 = CFrame.new(-66.5025787, -2.21426678, 14.2622843, 1, 1.90734295e-006, 3.53052521e-008, -1.90734295e-006, 1, -5.47961676e-008, -3.53053551e-008, 5.47961001e-008, 1)
  3437. w6 = Instance.new("Weld", p6)
  3438. w6.Name = "Part_Weld"
  3439. w6.Part0 = p6
  3440. w6.C0 = CFrame.new(-66.5025787, -2.21426678, 14.2622843, 1, 1.90734295e-006, 3.53052521e-008, -1.90734295e-006, 1, -5.47961676e-008, -3.53053551e-008, 5.47961001e-008, 1)
  3441. w6.Part1 = p7
  3442. w6.C1 = CFrame.new(-67.202919, -2.00003123, 13.1623335, 1.00000453, -2.38418579e-007, 2.98023295e-008, 8.94069672e-008, 0.999999642, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  3443. w7 = Instance.new("Weld", p7)
  3444. w7.Name = "Part_Weld"
  3445. w7.Part0 = p7
  3446. w7.C0 = CFrame.new(-67.202919, -2.00003123, 13.1623335, 1.00000453, -2.38418579e-007, 2.98023295e-008, 8.94069672e-008, 0.999999642, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  3447. w7.Part1 = p8
  3448. w7.C1 = CFrame.new(50.0020561, 44.8201294, 14.2623405, -0.766047955, 0.642787397, 1.54832112e-008, -0.642790377, -0.766044199, -6.48163692e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3449. w8 = Instance.new("Weld", p8)
  3450. w8.Name = "Wedge_Weld"
  3451. w8.Part0 = p8
  3452. w8.C0 = CFrame.new(50.0020561, 44.8201294, 14.2623405, -0.766047955, 0.642787397, 1.54832112e-008, -0.642790377, -0.766044199, -6.48163692e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3453. w8.Part1 = p9
  3454. w8.C1 = CFrame.new(67.3029327, -5.90784931, -9.1200285, -1.00000453, 3.57627869e-007, -9.07683528e-008, 2.33116921e-007, 0.906307459, -0.422619879, 7.83834153e-009, -0.42261824, -0.906311214)
  3455. w9 = Instance.new("Weld", p9)
  3456. w9.Name = "Part_Weld"
  3457. w9.Part0 = p9
  3458. w9.C0 = CFrame.new(67.3029327, -5.90784931, -9.1200285, -1.00000453, 3.57627869e-007, -9.07683528e-008, 2.33116921e-007, 0.906307459, -0.422619879, 7.83834153e-009, -0.42261824, -0.906311214)
  3459. w9.Part1 = p10
  3460. w9.C1 = CFrame.new(-68.0029068, -2.00003219, 14.2623405, 1.00000441, -2.08616257e-007, 2.98023135e-008, 5.96046448e-008, 0.999999642, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3461. w10 = Instance.new("Weld", p10)
  3462. w10.Name = "Part_Weld"
  3463. w10.Part0 = p10
  3464. w10.C0 = CFrame.new(-68.0029068, -2.00003219, 14.2623405, 1.00000441, -2.08616257e-007, 2.98023135e-008, 5.96046448e-008, 0.999999642, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3465. w10.Part1 = p11
  3466. w10.C1 = CFrame.new(-66.5028687, -1.60003603, 14.2623405, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3467. w11 = Instance.new("Weld", p11)
  3468. w11.Name = "Part_Weld"
  3469. w11.Part0 = p11
  3470. w11.C0 = CFrame.new(-66.5028687, -1.60003603, 14.2623405, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3471. w11.Part1 = p12
  3472. w11.C1 = CFrame.new(50.8226891, 44.4644012, 14.2623415, -0.766047835, 0.642787337, 1.03502398e-008, -0.642790318, -0.76604414, -5.86991185e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  3473. w12 = Instance.new("Weld", p12)
  3474. w12.Name = "Part_Weld"
  3475. w12.Part0 = p12
  3476. w12.C0 = CFrame.new(50.8226891, 44.4644012, 14.2623415, -0.766047835, 0.642787337, 1.03502398e-008, -0.642790318, -0.76604414, -5.86991185e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  3477. w12.Part1 = p13
  3478. w12.C1 = CFrame.new(-67.0028915, -0.800035119, 14.2623415, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  3479. w13 = Instance.new("Weld", p13)
  3480. w13.Name = "Wedge_Weld"
  3481. w13.Part0 = p13
  3482. w13.C0 = CFrame.new(-67.0028915, -0.800035119, 14.2623415, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  3483. w13.Part1 = p14
  3484. w13.C1 = CFrame.new(-66.8004532, -0.350028068, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  3485. w14 = Instance.new("Weld", p14)
  3486. w14.Name = "Wedge_Weld"
  3487. w14.Part0 = p14
  3488. w14.C0 = CFrame.new(-66.8004532, -0.350028068, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  3489. w14.Part1 = p15
  3490. w14.C1 = CFrame.new(-68.0004578, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  3491. w15 = Instance.new("Weld", p15)
  3492. w15.Name = "Wedge_Weld"
  3493. w15.Part0 = p15
  3494. w15.C0 = CFrame.new(-68.0004578, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  3495. w15.Part1 = p16
  3496. w15.C1 = CFrame.new(-67.4004517, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  3497. m.Parent = rleg
  3498. m:MakeJoints()
  3499. ----------------------------------------------------
  3500. local cor6 = Instance.new("Part", rleg.RightLeg)
  3501. cor6.Name = "Thingy"
  3502. cor6.Locked = true
  3503. cor6.BottomSurface = 0
  3504. cor6.CanCollide = false
  3505. cor6.Size = Vector3.new(2, 1, 1)
  3506. cor6.Transparency = 1
  3507. cor6.TopSurface = 0
  3508. corw2 = Instance.new("Weld", cor6)
  3509. corw2.Part0 = rleg
  3510. corw2.Part1 = cor6
  3511. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3512. corw2.C1 = CFrame.new(0, 0, 0)
  3513. weld2 = Instance.new("Weld", rleg.RightLeg)
  3514. weld2.Part0 = cor6
  3515. weld2.Part1 = p7
  3516. weld2.C0 = CFrame.new(0, 0, .6)
  3517. ----------------------------------------------------
  3518. local m = Instance.new("Model")
  3519. m.Name = "LeftLeg"
  3520. p1 = Instance.new("WedgePart", m)
  3521. p1.BrickColor = BrickColor.new("Royal purple")
  3522. p1.Material = Enum.Material.Neon
  3523. p1.Name = "Wedge"
  3524. p1.FormFactor = Enum.FormFactor.Custom
  3525. p1.Size = Vector3.new(1, 0.699999809, 1.29999995)
  3526. p1.CFrame = CFrame.new(64.3107605, 2.34980536, -14.7520046, 1.00008786, -7.1526415e-007, 2.00803143e-007, -2.2649931e-006, 0.999990404, 5.36453001e-007, -1.27237047e-006, 7.81809263e-007, 1.00007522)
  3527. p1.CanCollide = false
  3528. p1.Locked = true
  3529. p1.TopSurface = Enum.SurfaceType.Smooth
  3530. b1 = Instance.new("SpecialMesh", p1)
  3531. b1.MeshType = Enum.MeshType.Wedge
  3532. b1.Name = "Mesh"
  3533. b1.Scale = Vector3.new(0.200000003, 1, 1)
  3534. p2 = Instance.new("WedgePart", m)
  3535. p2.BrickColor = BrickColor.new("Royal purple")
  3536. p2.Material = Enum.Material.Neon
  3537. p2.Name = "Wedge"
  3538. p2.FormFactor = Enum.FormFactor.Custom
  3539. p2.Size = Vector3.new(1, 1.19999981, 4)
  3540. p2.CFrame = CFrame.new(64.9138336, 3.49979234, -10.7640553, -1.00009644, -6.38643314e-007, 1.81689501e-007, 2.53323037e-006, 0.906298041, -0.422614515, 1.23479219e-006, -0.422652602, -0.906383216)
  3541. p2.CanCollide = false
  3542. p2.Locked = true
  3543. p2.TopSurface = Enum.SurfaceType.Smooth
  3544. b2 = Instance.new("SpecialMesh", p2)
  3545. b2.MeshType = Enum.MeshType.Wedge
  3546. b2.Name = "Mesh"
  3547. b2.Scale = Vector3.new(0.600000024, 1, 1)
  3548. p3 = Instance.new("Part", m)
  3549. p3.BrickColor = BrickColor.new("Really black")
  3550. p3.Material = Enum.Material.Metal
  3551. p3.Name = "Main"
  3552. p3.Transparency = 1
  3553. p3.FormFactor = Enum.FormFactor.Custom
  3554. p3.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  3555. p3.CFrame = CFrame.new(65.0144501, 3.99976897, -13.1643734, 1.00010526, -9.43461771e-007, 1.5135204e-007, -2.48442234e-006, 0.999988973, 7.74860382e-007, -1.32394814e-006, 8.94069672e-007, 1.00009048)
  3556. p3.CanCollide = false
  3557. p3.Locked = true
  3558. p3.BottomSurface = Enum.SurfaceType.Smooth
  3559. p3.TopSurface = Enum.SurfaceType.Smooth
  3560. p4 = Instance.new("Part", m)
  3561. p4.BrickColor = BrickColor.new("Really black")
  3562. p4.Material = Enum.Material.Neon
  3563. p4.FormFactor = Enum.FormFactor.Custom
  3564. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  3565. p4.CFrame = CFrame.new(64.8149185, 4.09976244, -14.2645903, 1.00011396, -1.07351866e-006, 1.23178822e-007, -2.62327239e-006, 0.999988258, 8.64272579e-007, -1.33881622e-006, 1.01328953e-006, 1.00009811)
  3566. p4.CanCollide = false
  3567. p4.Locked = true
  3568. p4.BottomSurface = Enum.SurfaceType.Smooth
  3569. p4.TopSurface = Enum.SurfaceType.Smooth
  3570. b3 = Instance.new("SpecialMesh", p4)
  3571. b3.MeshType = Enum.MeshType.Sphere
  3572. b3.Name = "Mesh"
  3573. p5 = Instance.new("WedgePart", m)
  3574. p5.BrickColor = BrickColor.new("Royal purple")
  3575. p5.Material = Enum.Material.Neon
  3576. p5.Name = "Wedge"
  3577. p5.FormFactor = Enum.FormFactor.Custom
  3578. p5.Size = Vector3.new(1, 0.699999809, 1.29999995)
  3579. p5.CFrame = CFrame.new(64.9130707, 2.34976578, -14.7524614, 1.00012243, -1.19274011e-006, 9.97973828e-008, -2.74250215e-006, 0.999987364, 8.94081438e-007, -1.37342522e-006, 1.15432931e-006, 1.00010574)
  3580. p5.CanCollide = false
  3581. p5.Locked = true
  3582. p5.TopSurface = Enum.SurfaceType.Smooth
  3583. b4 = Instance.new("SpecialMesh", p5)
  3584. b4.MeshType = Enum.MeshType.Wedge
  3585. b4.Name = "Mesh"
  3586. b4.Scale = Vector3.new(0.200000003, 1, 1)
  3587. p6 = Instance.new("Part", m)
  3588. p6.BrickColor = BrickColor.new("Royal purple")
  3589. p6.Material = Enum.Material.Neon
  3590. p6.FormFactor = Enum.FormFactor.Custom
  3591. p6.Size = Vector3.new(0.200000048, 1.29999971, 0.200000048)
  3592. p6.CFrame = CFrame.new(65.1539307, 3.56787443, -14.2648125, -0.81925869, 0.573652625, 6.3568308e-008, -0.573566198, -0.819142461, 1.03511331e-006, 4.69596898e-007, -1.7646264e-006, 1.00011337)
  3593. p6.CanCollide = false
  3594. p6.Locked = true
  3595. p6.BottomSurface = Enum.SurfaceType.Smooth
  3596. p6.TopSurface = Enum.SurfaceType.Smooth
  3597. p7 = Instance.new("Part", m)
  3598. p7.BrickColor = BrickColor.new("Royal purple")
  3599. p7.Material = Enum.Material.Neon
  3600. p7.FormFactor = Enum.FormFactor.Custom
  3601. p7.Size = Vector3.new(0.200000048, 0.999999642, 0.200000048)
  3602. p7.CFrame = CFrame.new(64.9899063, 4.4266243, -14.2649202, 0.86614728, 0.500068843, 4.87115699e-008, -0.499995351, 0.866011381, 1.14634361e-006, -1.86828663e-006, 3.82691809e-007, 1.000121)
  3603. p7.CanCollide = false
  3604. p7.Locked = true
  3605. p7.BottomSurface = Enum.SurfaceType.Smooth
  3606. p7.TopSurface = Enum.SurfaceType.Smooth
  3607. p8 = Instance.new("Part", m)
  3608. p8.BrickColor = BrickColor.new("Really black")
  3609. p8.Material = Enum.Material.Neon
  3610. p8.FormFactor = Enum.FormFactor.Custom
  3611. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  3612. p8.CFrame = CFrame.new(65.2172623, 4.89969873, -14.2650318, 1.00014877, -1.43051147e-006, 2.05365609e-008, -3.09944153e-006, 0.99998486, 1.2357583e-006, -1.44150738e-006, 1.38478742e-006, 1.00012863)
  3613. p8.CanCollide = false
  3614. p8.Locked = true
  3615. p8.BottomSurface = Enum.SurfaceType.Smooth
  3616. p8.TopSurface = Enum.SurfaceType.Smooth
  3617. b5 = Instance.new("SpecialMesh", p8)
  3618. b5.MeshType = Enum.MeshType.Sphere
  3619. b5.Name = "Mesh"
  3620. p9 = Instance.new("Part", m)
  3621. p9.BrickColor = BrickColor.new("Really black")
  3622. p9.Material = Enum.Material.Neon
  3623. p9.FormFactor = Enum.FormFactor.Custom
  3624. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  3625. p9.CFrame = CFrame.new(65.517868, 2.99971151, -14.2651463, 1.00015736, -1.5520751e-006, -9.27031252e-009, -3.21633729e-006, 0.999984026, 1.32517368e-006, -1.46969478e-006, 1.46621869e-006, 1.00013626)
  3626. p9.CanCollide = false
  3627. p9.Locked = true
  3628. p9.BottomSurface = Enum.SurfaceType.Smooth
  3629. p9.TopSurface = Enum.SurfaceType.Smooth
  3630. b6 = Instance.new("SpecialMesh", p9)
  3631. b6.MeshType = Enum.MeshType.Sphere
  3632. b6.Name = "Mesh"
  3633. p10 = Instance.new("Part", m)
  3634. p10.BrickColor = BrickColor.new("Royal purple")
  3635. p10.Material = Enum.Material.Neon
  3636. p10.FormFactor = Enum.FormFactor.Custom
  3637. p10.Size = Vector3.new(0.200000048, 1.09999967, 0.200000048)
  3638. p10.CFrame = CFrame.new(64.79879, 5.1497221, -14.2652512, -0.642893076, 0.766172707, -3.7446263e-008, -0.766029418, -0.64277941, 1.40660427e-006, -2.27817864e-007, -2.14863894e-006, 1.00014389)
  3639. p10.CanCollide = false
  3640. p10.Locked = true
  3641. p10.BottomSurface = Enum.SurfaceType.Smooth
  3642. p10.TopSurface = Enum.SurfaceType.Smooth
  3643. p11 = Instance.new("Part", m)
  3644. p11.BrickColor = BrickColor.new("Royal purple")
  3645. p11.Material = Enum.Material.Neon
  3646. p11.FormFactor = Enum.FormFactor.Custom
  3647. p11.Size = Vector3.new(0.200000048, 0.699999809, 0.200000048)
  3648. p11.CFrame = CFrame.new(65.2189484, 5.30325174, -14.2653618, 1.00017476, -1.78813934e-006, -6.56227002e-008, -3.4570694e-006, 0.999982595, 1.49602079e-006, -1.52770292e-006, 1.64505627e-006, 1.00015152)
  3649. p11.CanCollide = false
  3650. p11.Locked = true
  3651. p11.BottomSurface = Enum.SurfaceType.Smooth
  3652. p11.TopSurface = Enum.SurfaceType.Smooth
  3653. p12 = Instance.new("WedgePart", m)
  3654. p12.BrickColor = BrickColor.new("Royal purple")
  3655. p12.Material = Enum.Material.Neon
  3656. p12.Name = "Wedge"
  3657. p12.FormFactor = Enum.FormFactor.Custom
  3658. p12.Size = Vector3.new(1, 0.699999809, 1.29999995)
  3659. p12.CFrame = CFrame.new(65.5171509, 2.34969687, -14.7532635, 1.00018334, -1.89246384e-006, -8.90070169e-008, -3.54650388e-006, 0.999981821, 1.52583425e-006, -1.56231545e-006, 1.78610321e-006, 1.00015914)
  3660. p12.CanCollide = false
  3661. p12.Locked = true
  3662. p12.TopSurface = Enum.SurfaceType.Smooth
  3663. b7 = Instance.new("SpecialMesh", p12)
  3664. b7.MeshType = Enum.MeshType.Wedge
  3665. b7.Name = "Mesh"
  3666. b7.Scale = Vector3.new(0.200000003, 1, 1)
  3667. p13 = Instance.new("Part", m)
  3668. p13.BrickColor = BrickColor.new("Really black")
  3669. p13.Material = Enum.Material.Neon
  3670. p13.FormFactor = Enum.FormFactor.Custom
  3671. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  3672. p13.CFrame = CFrame.new(64.3198929, 5.59963703, -14.2655821, 1.00019193, -1.97098893e-006, -1.23608402e-007, -3.67657594e-006, 0.999981046, 1.66687016e-006, -1.58571254e-006, 1.81590929e-006, 1.00016677)
  3673. p13.CanCollide = false
  3674. p13.Locked = true
  3675. p13.BottomSurface = Enum.SurfaceType.Smooth
  3676. p13.TopSurface = Enum.SurfaceType.Smooth
  3677. b8 = Instance.new("SpecialMesh", p13)
  3678. b8.MeshType = Enum.MeshType.Sphere
  3679. b8.Name = "Mesh"
  3680. p14 = Instance.new("Part", m)
  3681. p14.BrickColor = BrickColor.new("Really black")
  3682. p14.Material = Enum.Material.Neon
  3683. p14.FormFactor = Enum.FormFactor.Custom
  3684. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  3685. p14.CFrame = CFrame.new(65.2206192, 5.79961872, -14.2656937, 1.00020039, -2.10105645e-006, -1.51786239e-007, -3.75511786e-006, 0.99998033, 1.7562885e-006, -1.6139021e-006, 1.90533035e-006, 1.0001744)
  3686. p14.CanCollide = false
  3687. p14.Locked = true
  3688. p14.BottomSurface = Enum.SurfaceType.Smooth
  3689. p14.TopSurface = Enum.SurfaceType.Smooth
  3690. b9 = Instance.new("SpecialMesh", p14)
  3691. b9.MeshType = Enum.MeshType.Sphere
  3692. b9.Name = "Mesh"
  3693. w1 = Instance.new("Weld", p1)
  3694. w1.Name = "Wedge_Weld"
  3695. w1.Part0 = p1
  3696. w1.C0 = CFrame.new(-64.3004303, -0.350028396, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  3697. w1.Part1 = p2
  3698. w1.C1 = CFrame.new(64.9028854, -5.90785694, -9.12002754, -1.00000429, 3.57627869e-007, -9.07683386e-008, 2.9341092e-007, 0.906307459, -0.422619879, -5.58450353e-009, -0.42261821, -0.906311214)
  3699. w2 = Instance.new("Weld", p2)
  3700. w2.Name = "Part_Weld"
  3701. w2.Part0 = p2
  3702. w2.C0 = CFrame.new(64.9028854, -5.90785694, -9.12002754, -1.00000429, 3.57627869e-007, -9.07683386e-008, 2.9341092e-007, 0.906307459, -0.422619879, -5.58450353e-009, -0.42261821, -0.906311214)
  3703. w2.Part1 = p3
  3704. w2.C1 = CFrame.new(-65.0029144, -2.00002885, 13.1623335, 1.00000453, -2.19451294e-007, 2.98023295e-008, 6.97858056e-008, 0.999999702, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  3705. w3 = Instance.new("Weld", p3)
  3706. w3.Name = "Part_Weld"
  3707. w3.Part0 = p3
  3708. w3.C0 = CFrame.new(-65.0029144, -2.00002885, 13.1623335, 1.00000453, -2.19451294e-007, 2.98023295e-008, 6.97858056e-008, 0.999999702, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  3709. w3.Part1 = p4
  3710. w3.C1 = CFrame.new(-64.8028488, -2.10003614, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3711. w4 = Instance.new("Weld", p4)
  3712. w4.Name = "Wedge_Weld"
  3713. w4.Part0 = p4
  3714. w4.C0 = CFrame.new(-64.8028488, -2.10003614, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3715. w4.Part1 = p5
  3716. w4.C1 = CFrame.new(-64.9004364, -0.350028336, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  3717. w5 = Instance.new("Weld", p5)
  3718. w5.Name = "Part_Weld"
  3719. w5.Part0 = p5
  3720. w5.C0 = CFrame.new(-64.9004364, -0.350028336, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  3721. w5.Part1 = p6
  3722. w5.C1 = CFrame.new(54.2596054, -36.0786095, 14.2623415, -0.819155633, -0.573575974, -5.40201484e-008, 0.573578835, -0.819151759, -2.51900261e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  3723. w6 = Instance.new("Weld", p6)
  3724. w6.Name = "Part_Weld"
  3725. w6.Part0 = p6
  3726. w6.C0 = CFrame.new(54.2596054, -36.0786095, 14.2623415, -0.819155633, -0.573575974, -5.40201484e-008, 0.573578835, -0.819151759, -2.51900261e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  3727. w6.Part1 = p7
  3728. w6.C1 = CFrame.new(-55.0575066, -34.589859, 14.2623396, 0.866029263, -0.50000006, -3.99274924e-009, 0.500002325, 0.866025031, 6.65203004e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  3729. w7 = Instance.new("Weld", p7)
  3730. w7.Name = "Part_Weld"
  3731. w7.Part0 = p7
  3732. w7.C0 = CFrame.new(-55.0575066, -34.589859, 14.2623396, 0.866029263, -0.50000006, -3.99274924e-009, 0.500002325, 0.866025031, 6.65203004e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  3733. w7.Part1 = p8
  3734. w7.C1 = CFrame.new(-65.2028809, -2.90003395, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3735. w8 = Instance.new("Weld", p8)
  3736. w8.Name = "Part_Weld"
  3737. w8.Part0 = p8
  3738. w8.C0 = CFrame.new(-65.2028809, -2.90003395, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3739. w8.Part1 = p9
  3740. w8.C1 = CFrame.new(-65.5028763, -1.00002885, 14.2623425, 1.00000429, -2.06278372e-007, 2.98023135e-008, 8.70690755e-008, 0.999999523, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  3741. w9 = Instance.new("Weld", p9)
  3742. w9.Name = "Part_Weld"
  3743. w9.Part0 = p9
  3744. w9.C0 = CFrame.new(-65.5028763, -1.00002885, 14.2623425, 1.00000429, -2.06278372e-007, 2.98023135e-008, 8.70690755e-008, 0.999999523, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  3745. w9.Part1 = p10
  3746. w9.C1 = CFrame.new(44.0550385, -47.6020889, 14.2623405, -0.642790556, -0.766044021, -6.48163621e-008, 0.766047776, -0.642787576, -1.54832289e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3747. w10 = Instance.new("Weld", p10)
  3748. w10.Name = "Part_Weld"
  3749. w10.Part0 = p10
  3750. w10.C0 = CFrame.new(44.0550385, -47.6020889, 14.2623405, -0.642790556, -0.766044021, -6.48163621e-008, 0.766047776, -0.642787576, -1.54832289e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3751. w10.Part1 = p11
  3752. w10.C1 = CFrame.new(-65.2028656, -3.3036263, 14.2623405, 1.00000429, -1.93715096e-007, 2.98023153e-008, 1.1920929e-007, 0.999999702, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3753. w11 = Instance.new("Weld", p11)
  3754. w11.Name = "Wedge_Weld"
  3755. w11.Part0 = p11
  3756. w11.C0 = CFrame.new(-65.2028656, -3.3036263, 14.2623405, 1.00000429, -1.93715096e-007, 2.98023153e-008, 1.1920929e-007, 0.999999702, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3757. w11.Part1 = p12
  3758. w11.C1 = CFrame.new(-65.5004425, -0.350028276, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  3759. w12 = Instance.new("Weld", p12)
  3760. w12.Name = "Part_Weld"
  3761. w12.Part0 = p12
  3762. w12.C0 = CFrame.new(-65.5004425, -0.350028276, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  3763. w12.Part1 = p13
  3764. w12.C1 = CFrame.new(-64.3028641, -3.60003614, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3765. w13 = Instance.new("Weld", p13)
  3766. w13.Name = "Part_Weld"
  3767. w13.Part0 = p13
  3768. w13.C0 = CFrame.new(-64.3028641, -3.60003614, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3769. w13.Part1 = p14
  3770. w13.C1 = CFrame.new(-65.202858, -3.80003428, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3771. w14 = Instance.new("Weld", p14)
  3772. w14.Name = "Wedge_Weld"
  3773. w14.Part0 = p14
  3774. w14.C0 = CFrame.new(-65.202858, -3.80003428, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3775. m.Parent = lleg
  3776. m:MakeJoints()
  3777. ----------------------------------------------------
  3778. local cor7 = Instance.new("Part", lleg.LeftLeg)
  3779. cor7.Name = "Thingy"
  3780. cor7.Locked = true
  3781. cor7.BottomSurface = 0
  3782. cor7.CanCollide = false
  3783. cor7.Size = Vector3.new(2, 1, 1)
  3784. cor7.Transparency = 1
  3785. cor7.TopSurface = 0
  3786. corw2 = Instance.new("Weld", cor7)
  3787. corw2.Part0 = lleg
  3788. corw2.Part1 = cor7
  3789. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3790. corw2.C1 = CFrame.new(0, 0, 0)
  3791. weld2 = Instance.new("Weld", lleg.LeftLeg)
  3792. weld2.Part0 = cor7
  3793. weld2.Part1 = p3
  3794. weld2.C0 = CFrame.new(0, 0, .6)
  3795. ----------------------------------------------------
  3796. Blast = function()
  3797. local Colors = {"Royal purple", "Really black"}
  3798. local wave = Instance.new("Part", torso)
  3799. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  3800. wave.Anchored = true
  3801. wave.CanCollide = false
  3802. wave.Locked = true
  3803. wave.Size = Vector3.new(1, 1, 1)
  3804. wave.TopSurface = "Smooth"
  3805. wave.BottomSurface = "Smooth"
  3806. wave.Transparency = 0.35
  3807. wave.CFrame = rarm.CFrame
  3808. wm = Instance.new("SpecialMesh", wave)
  3809. wm.MeshType = "Sphere"
  3810. wm.Scale = Vector3.new(1,1,1)
  3811. z = Instance.new("Sound",wave)
  3812. z.SoundId = "rbxassetid://237035051"
  3813. z.Volume = 1
  3814. z.Pitch = .9
  3815. z:Play()
  3816. coroutine.wrap(function()
  3817. for i = 1, 30, 1 do
  3818. wave.Size = Vector3.new(1 + i*4, 1 + i*4, 1 + i*4)
  3819. --wave.Size = wm.Scale
  3820. wave.CFrame = rarm.CFrame
  3821. wave.Transparency = (1/14)
  3822. rs:wait()
  3823. end
  3824. rs:wait()
  3825. wave:Destroy()
  3826. z:Destroy()
  3827. end)()
  3828. end
  3829. ----------------------------------------------------
  3830. rarm.Touched:connect(function(ht)
  3831. hit = ht.Parent
  3832. if ht and hit:IsA("Model") then
  3833. if hit:FindFirstChild("Humanoid") then
  3834. if hit.Name ~= p.Name then
  3835. if Debounces.RPunch == true and Debounces.RPunched == false then
  3836. Debounces.RPunched = true
  3837. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  3838. if Debounces.ks==true then
  3839. z = Instance.new("Sound",hed)
  3840. z.SoundId = "rbxassetid://169380525"
  3841. z.Pitch = ptz[math.random(1,#ptz)]
  3842. z.Volume = 1
  3843. z:Play()
  3844. end
  3845. wait(.2)
  3846. Debounces.RPunched = false
  3847. end
  3848. end
  3849. end
  3850. elseif ht and hit:IsA("Hat") then
  3851. if hit.Parent.Name ~= p.Name then
  3852. if hit.Parent:FindFirstChild("Humanoid") then
  3853. if Debounces.RPunch == true and Debounces.RPunched == false then
  3854. Debounces.RPunched = true
  3855. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  3856. if Debounces.ks==true then
  3857. z = Instance.new("Sound",hed)
  3858. z.SoundId = "rbxassetid://169380525"
  3859. z.Pitch = ptz[math.random(1,#ptz)]
  3860. z.Volume = 1
  3861. z:Play()
  3862. end
  3863. wait(.2)
  3864. Debounces.RPunched = false
  3865. end
  3866. end
  3867. end
  3868. end
  3869. end)
  3870. larm.Touched:connect(function(ht)
  3871. hit = ht.Parent
  3872. if ht and hit:IsA("Model") then
  3873. if hit:FindFirstChild("Humanoid") then
  3874. if hit.Name ~= p.Name then
  3875. if Debounces.LPunch == true and Debounces.LPunched == false then
  3876. Debounces.LPunched = true
  3877. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  3878. if Debounces.ks2==true then
  3879. z = Instance.new("Sound",hed)
  3880. z.SoundId = "rbxassetid://169380525"
  3881. z.Pitch = ptz[math.random(1,#ptz)]
  3882. z.Volume = 1
  3883. z:Play()
  3884. end
  3885. wait(.2)
  3886. Debounces.LPunched = false
  3887. end
  3888. end
  3889. end
  3890. elseif ht and hit:IsA("Hat") then
  3891. if hit.Parent.Name ~= p.Name then
  3892. if hit.Parent:FindFirstChild("Humanoid") then
  3893. if Debounces.LPunch == true and Debounces.LPunched == false then
  3894. Debounces.LPunched = true
  3895. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  3896. if Debounces.ks2==true then
  3897. z = Instance.new("Sound",hed)
  3898. z.SoundId = "rbxassetid://169380525"
  3899. z.Pitch = ptz[math.random(1,#ptz)]
  3900. z.Volume = 1
  3901. z:Play()
  3902. end
  3903. wait(.2)
  3904. Debounces.LPunched = false
  3905. end
  3906. end
  3907. end
  3908. end
  3909. end)
  3910. ----------------------------------------------------
  3911. mod4 = Instance.new("Model",char)
  3912.  
  3913. ptez = {0.7, 0.8, 0.9, 1}
  3914.  
  3915. function FindNearestTorso(Position,Distance,SinglePlayer)
  3916. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3917. local List = {}
  3918. for i,v in pairs(workspace:GetChildren())do
  3919. if v:IsA("Model")then
  3920. if v:findFirstChild("Torso")then
  3921. if v ~= char then
  3922. if(v.Torso.Position -Position).magnitude <= Distance then
  3923. table.insert(List,v)
  3924. end
  3925. end
  3926. end
  3927. end
  3928. end
  3929. return List
  3930. end
  3931.  
  3932. function Punch()
  3933. part=Instance.new('Part',mod4)
  3934. part.Anchored=true
  3935. part.CanCollide=false
  3936. part.FormFactor='Custom'
  3937. part.Size=Vector3.new(.2,.2,.2)
  3938. part.CFrame=root.CFrame*CFrame.new(0,1.5,-2.4)*CFrame.Angles(math.rad(0),0,0)
  3939. part.Transparency=.7
  3940. part.BrickColor=BrickColor.new('Really black')
  3941. mesh=Instance.new('SpecialMesh',part)
  3942. mesh.MeshId='http://www.roblox.com/asset/?id=9982590'
  3943. mesh.Scale=Vector3.new(3,3,3)
  3944. part2=Instance.new('Part',mod4)
  3945. part2.Anchored=true
  3946. part2.CanCollide=false
  3947. part2.FormFactor='Custom'
  3948. part2.Size=Vector3.new(.2,.2,.2)
  3949. part2.CFrame=root.CFrame*CFrame.new(0,1.5,-2.4)*CFrame.Angles(math.rad(90),0,0)
  3950. part2.Transparency=.7
  3951. part2.BrickColor=BrickColor.new('Royal purple')
  3952. mesh2=Instance.new('SpecialMesh',part2)
  3953. mesh2.MeshId='http://www.roblox.com/asset/?id=9982590'
  3954. mesh2.Scale=Vector3.new(3,1.5,3)
  3955. for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do
  3956. if v:FindFirstChild('Humanoid') then
  3957. v.Humanoid:TakeDamage(math.random(2,6))
  3958. end
  3959. end
  3960. coroutine.resume(coroutine.create(function()
  3961. for i=0,0.62,0.4 do
  3962. wait()
  3963. part.CFrame=part.CFrame
  3964. part.Transparency=i
  3965. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  3966. part2.CFrame=part2.CFrame
  3967. part2.Transparency=i
  3968. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  3969. end
  3970. part.Parent=nil
  3971. part2.Parent=nil
  3972. end))
  3973. end
  3974. ----------------------------------------------------
  3975. rarm.Touched:connect(function(ht)
  3976. hit = ht.Parent
  3977. if ht and hit:IsA("Model") then
  3978. if hit:FindFirstChild("Humanoid") then
  3979. if hit.Name ~= p.Name then
  3980. if Debounces.RPunch == true and Debounces.RPunched == false then
  3981. Debounces.RPunched = true
  3982. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  3983. if Debounces.ks==true then
  3984. z = Instance.new("Sound",hed)
  3985. z.SoundId = "rbxassetid://169380525"
  3986. z.Pitch = ptz[math.random(1,#ptz)]
  3987. z.Volume = 1
  3988. z:Play()
  3989. end
  3990. wait(.2)
  3991. Debounces.RPunched = false
  3992. end
  3993. end
  3994. end
  3995. elseif ht and hit:IsA("Hat") then
  3996. if hit.Parent.Name ~= p.Name then
  3997. if hit.Parent:FindFirstChild("Humanoid") then
  3998. if Debounces.RPunch == true and Debounces.RPunched == false then
  3999. Debounces.RPunched = true
  4000. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  4001. if Debounces.ks==true then
  4002. z = Instance.new("Sound",hed)
  4003. z.SoundId = "rbxassetid://169380525"
  4004. z.Pitch = ptz[math.random(1,#ptz)]
  4005. z.Volume = 1
  4006. z:Play()
  4007. end
  4008. wait(.2)
  4009. Debounces.RPunched = false
  4010. end
  4011. end
  4012. end
  4013. end
  4014. end)
  4015. larm.Touched:connect(function(ht)
  4016. hit = ht.Parent
  4017. if ht and hit:IsA("Model") then
  4018. if hit:FindFirstChild("Humanoid") then
  4019. if hit.Name ~= p.Name then
  4020. if Debounces.LPunch == true and Debounces.LPunched == false then
  4021. Debounces.LPunched = true
  4022. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  4023. if Debounces.ks2==true then
  4024. z = Instance.new("Sound",hed)
  4025. z.SoundId = "rbxassetid://169380525"
  4026. z.Pitch = ptz[math.random(1,#ptz)]
  4027. z.Volume = 1
  4028. z:Play()
  4029. end
  4030. wait(.2)
  4031. Debounces.LPunched = false
  4032. end
  4033. end
  4034. end
  4035. elseif ht and hit:IsA("Hat") then
  4036. if hit.Parent.Name ~= p.Name then
  4037. if hit.Parent:FindFirstChild("Humanoid") then
  4038. if Debounces.LPunch == true and Debounces.LPunched == false then
  4039. Debounces.LPunched = true
  4040. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  4041. if Debounces.ks2==true then
  4042. z = Instance.new("Sound",hed)
  4043. z.SoundId = "rbxassetid://169380525"
  4044. z.Pitch = ptz[math.random(1,#ptz)]
  4045. z.Volume = 1
  4046. z:Play()
  4047. end
  4048. wait(.2)
  4049. Debounces.LPunched = false
  4050. end
  4051. end
  4052. end
  4053. end
  4054. end)
  4055. ----------------------------------------------------
  4056. local player = game.Players.LocalPlayer
  4057. local pchar = player.Character
  4058. local mouse = player:GetMouse()
  4059. local cam = workspace.CurrentCamera
  4060.  
  4061. local rad = math.rad
  4062.  
  4063. local keysDown = {}
  4064. local flySpeed = 0
  4065. local MAX_FLY_SPEED = 150
  4066.  
  4067. local canFly = false
  4068. local flyToggled = false
  4069.  
  4070. local forward, side = 0, 0
  4071. local lastForward, lastSide = 0, 0
  4072.  
  4073. local floatBP = Instance.new("BodyPosition")
  4074. floatBP.maxForce = Vector3.new(0, math.huge, 0)
  4075. local flyBV = Instance.new("BodyVelocity")
  4076. flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  4077. local turnBG = Instance.new("BodyGyro")
  4078. turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  4079.  
  4080. mouse.KeyDown:connect(function(key)
  4081. keysDown[key] = true
  4082.  
  4083. if key == "f" then
  4084. flyToggled = not flyToggled
  4085.  
  4086. if not flyToggled then
  4087. stanceToggle = "Normal"
  4088. floatBP.Parent = nil
  4089. flyBV.Parent = nil
  4090. turnBG.Parent = nil
  4091. root.Velocity = Vector3.new()
  4092. pchar.Humanoid.PlatformStand = false
  4093. end
  4094. end
  4095.  
  4096. end)
  4097. mouse.KeyUp:connect(function(key)
  4098. keysDown[key] = nil
  4099. end)
  4100.  
  4101. local function updateFly()
  4102.  
  4103. if not flyToggled then return end
  4104.  
  4105. lastForward = forward
  4106. lastSide = side
  4107.  
  4108. forward = 0
  4109. side = 0
  4110.  
  4111. if keysDown.w then
  4112. forward = forward + 1
  4113. end
  4114. if keysDown.s then
  4115. forward = forward - 1
  4116. end
  4117. if keysDown.a then
  4118. side = side - 1
  4119. end
  4120. if keysDown.d then
  4121. side = side + 1
  4122. end
  4123.  
  4124. canFly = (forward ~= 0 or side ~= 0)
  4125.  
  4126. if canFly then
  4127. stanceToggle = "Floating"
  4128. turnBG.Parent = root
  4129. floatBP.Parent = nil
  4130. flyBV.Parent = root
  4131.  
  4132. flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
  4133. if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
  4134. else
  4135. floatBP.position = root.Position
  4136. floatBP.Parent = root
  4137.  
  4138. flySpeed = flySpeed - 1
  4139. if flySpeed < 0 then flySpeed = 0 end
  4140. end
  4141.  
  4142. local camCF = cam.CoordinateFrame
  4143. local in_forward = canFly and forward or lastForward
  4144. local in_side = canFly and side or lastSide
  4145.  
  4146. flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side,
  4147. in_forward * 0.2, 0).p) - camCF.p) * flySpeed
  4148.  
  4149. turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0,
  4150. 0)
  4151. end
  4152.  
  4153. game:service'RunService'.RenderStepped:connect(function()
  4154. if flyToggled then
  4155. pchar.Humanoid.PlatformStand = true
  4156. end
  4157. updateFly()
  4158. end)
  4159. -------------------------------
  4160. mouse.KeyDown:connect(function(key)
  4161. if key == "q" then
  4162. if Debounces.CanAttack == true then
  4163. Debounces.CanAttack = false
  4164. Debounces.NoIdl = true
  4165. Debounces.on = true
  4166. function FindNearestTorso(Position,Distance,SinglePlayer)
  4167. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  4168. local List = {}
  4169. for i,v in pairs(workspace:GetChildren())do
  4170. if v:IsA("Model")then
  4171. if v:findFirstChild("Torso")then
  4172. if v ~= char then
  4173. if(v.Torso.Position -Position).magnitude <= Distance then
  4174. table.insert(List,v)
  4175. end
  4176. end
  4177. end
  4178. end
  4179. end
  4180. return List
  4181. end
  4182. z = Instance.new("Sound",hed)
  4183. z.SoundId = "rbxassetid://232213955"
  4184. z.Pitch = 1
  4185. z.Volume = 1
  4186. wait(0.2)
  4187. z:Play()
  4188. sp = Instance.new("Part",rarm)
  4189. sp.Anchored = true
  4190. sp.CanCollide = false
  4191. sp.Locked = true
  4192. sp.Transparency = 0
  4193. sp.Material = "Neon"
  4194. sp.Size = Vector3.new(1,1,1)
  4195. sp.TopSurface = "SmoothNoOutlines"
  4196. sp.BottomSurface = "SmoothNoOutlines"
  4197. sp.BrickColor = BrickColor.new("Royal purple")
  4198. spm = Instance.new("SpecialMesh",sp)
  4199. spm.MeshType = "Sphere"
  4200. spm.Scale = Vector3.new(21,21,21)
  4201. sp2 = Instance.new("Part", rarm)
  4202. sp2.Name = "Energy"
  4203. sp2.BrickColor = BrickColor.new("Royal purple")
  4204. sp2.Size = Vector3.new(1, 1, 1)
  4205. sp2.Shape = "Ball"
  4206. sp2.CanCollide = false
  4207. sp2.Anchored = true
  4208. sp2.Locked = true
  4209. sp2.TopSurface = 0
  4210. sp2.BottomSurface = 0
  4211. sp2.Transparency = 1
  4212. spm2 = Instance.new("SpecialMesh",sp2)
  4213. spm2.MeshId = "rbxassetid://9982590"
  4214. spm2.Scale = Vector3.new(2,2,2)
  4215. for i = 1, 20 do
  4216. spm.Scale = spm.Scale - Vector3.new(1,1,1)
  4217. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  4218. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8)), 0.4)
  4219. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.4)
  4220. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  4221. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  4222. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  4223. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  4224. if Debounces.on == false then break end
  4225. rs:wait()
  4226. end
  4227. for i = 1, 100, 20 do rs:wait()
  4228. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  4229. end
  4230. for i = 1, 20 do
  4231. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  4232. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(8)), 0.4)
  4233. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.4)
  4234. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(10),math.rad(-30),0), 0.4)
  4235. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(40), math.rad(0)), 0.4)
  4236. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  4237. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  4238. if Debounces.on == false then break end
  4239. rs:wait()
  4240. end
  4241. sp.Transparency = 1
  4242. for i = 1, 20 do
  4243. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(8)), 0.4)
  4244. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.62,-.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.4)
  4245. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.4)
  4246. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(-50), math.rad(0)), 0.4)
  4247. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  4248. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  4249. if Debounces.on == false then break end
  4250. rs:wait()
  4251. end
  4252. wait(1)
  4253. sp.Transparency = 0
  4254. sp2.Transparency = 0.84
  4255. for i = 1, 20 do
  4256. --spm.Scale = spm.Scale - Vector3.new(1,1,1)
  4257. sp.CFrame = rarm.CFrame*CFrame.new(0,-1,0)
  4258. sp2.CFrame = sp.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  4259. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(110),math.rad(-6),math.rad(140)), 0.4)
  4260. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(80),math.rad(6),math.rad(-40)), 0.2)
  4261. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(30),0), 0.2)
  4262. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.3)
  4263. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-14)), 0.2)
  4264. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-16), 0, math.rad(8)), 0.2)
  4265. if Debounces.on == false then break end
  4266. rs:wait()
  4267. end
  4268. for i = 1, 2880, 50 do
  4269. rs:wait()
  4270. sp.CFrame = rarm.CFrame*CFrame.new(0,-1,0)
  4271. sp2.CFrame = rarm.CFrame * CFrame.new(0,-1,0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10))
  4272. rs:wait()
  4273. end
  4274. sp:Destroy()
  4275. sp2:Destroy()
  4276. local X = Instance.new("Part",char)
  4277. local O = Instance.new("ObjectValue",X)
  4278. O.Name = "creator"
  4279. X.Locked = true
  4280. X.Name = "Shell"
  4281. X.Anchored = false
  4282. X.CanCollide = false
  4283. X.Transparency = 0
  4284. X.Reflectance = 0
  4285. X.BottomSurface = 0
  4286. X.TopSurface = 0
  4287. X.Shape = 0
  4288. local V = Instance.new("ObjectValue",X)
  4289. V.Value = char
  4290. V.Name = "creator"
  4291. X.BrickColor = BrickColor.new("Royal purple")
  4292. X.Size = Vector3.new(2,2,2)
  4293. X.Material = "Neon"
  4294. local Z = Instance.new("SpecialMesh",X)
  4295. Z.MeshType = "Sphere"
  4296. Z.Scale = Vector3.new(0.5,0.5,1)
  4297. X.CFrame = rarm.CFrame*CFrame.new(-3,0,0)
  4298. local bv = Instance.new("BodyVelocity",X)
  4299. bv.maxForce = Vector3.new(99999,99999,99999)
  4300. X.CFrame = CFrame.new(X.Position,mouse.Hit.p)
  4301. bv.velocity = X.CFrame.lookVector*65
  4302.  
  4303. Explode = X.Touched:connect(function(hit)
  4304. if hit ~= char and hit.Name ~= "Shell" then
  4305. local cf = X.CFrame
  4306. bv:Destroy()
  4307. X.Anchored = true
  4308. Z:Remove()
  4309. Explode:disconnect()
  4310. X.Size = Vector3.new(3,3,3)
  4311. X.Touched:connect(function(hit) end)
  4312. X.CanCollide = false
  4313. local part3 = Instance.new("Part", rarm)
  4314. part3.Anchored=true
  4315. part3.CanCollide=false
  4316. part3.Locked = true
  4317. part3.TopSurface = "SmoothNoOutlines"
  4318. part3.BottomSurface = "SmoothNoOutlines"
  4319. part3.FormFactor='Custom'
  4320. part3.Size=Vector3.new(1,1, 1)
  4321. part3.CFrame=X.CFrame
  4322. part3.Transparency=0
  4323. part3.BrickColor=BrickColor.new("Royal purple")
  4324. local mesh3 = Instance.new("SpecialMesh",part3)
  4325. mesh3.MeshType = "Sphere"
  4326. mesh3.Scale = Vector3.new(1,1,1)
  4327. --debris:AddItem(X,8)
  4328. local part4 = Instance.new("Part", rarm)
  4329. part4.Material = "Neon"
  4330. part4.Anchored=true
  4331. part4.CanCollide=false
  4332. part4.Locked = true
  4333. part4.TopSurface = "SmoothNoOutlines"
  4334. part4.BottomSurface = "SmoothNoOutlines"
  4335. part4.FormFactor='Custom'
  4336. part4.Size=Vector3.new(1,1, 1)
  4337. part4.CFrame=X.CFrame
  4338. part4.Transparency=0
  4339. part4.BrickColor=BrickColor.new("Hot pink")
  4340. local mesh4 = Instance.new("SpecialMesh",part4)
  4341. mesh4.MeshType = "Sphere"
  4342. mesh4.Scale = Vector3.new(.5,.5,.5)
  4343. local part7 = Instance.new("Part", rarm)
  4344. part7.Material = "Neon"
  4345. part7.Anchored=true
  4346. part7.CanCollide=false
  4347. part7.Locked = true
  4348. part7.TopSurface = "SmoothNoOutlines"
  4349. part7.BottomSurface = "SmoothNoOutlines"
  4350. part7.FormFactor='Custom'
  4351. part7.Size=Vector3.new(1,1, 1)
  4352. part7.CFrame=X.CFrame
  4353. part7.Transparency=0
  4354. part7.BrickColor=BrickColor.new("Really black")
  4355. local mesh7 = Instance.new("SpecialMesh",part7)
  4356. mesh7.MeshType = "Sphere"
  4357. mesh7.Scale = Vector3.new(0.1, 0.1, 0.1)
  4358. for i,v in pairs(FindNearestTorso(X.CFrame.p,140))do
  4359. if v:FindFirstChild('Humanoid') then
  4360. v.Humanoid:TakeDamage(math.random(60,90))
  4361. v.Humanoid.PlatformStand = true
  4362. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  4363. end
  4364. end
  4365.  
  4366. local acos = math.acos
  4367. local sqrt = math.sqrt
  4368. local Vec3 = Vector3.new
  4369. local fromAxisAngle = CFrame.fromAxisAngle
  4370.  
  4371. local function toAxisAngle(CFr)
  4372. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  4373. local Angle = math.acos((R00+R11+R22-1)/2)
  4374. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  4375. A = A == 0 and 0.00001 or A
  4376. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  4377. B = B == 0 and 0.00001 or B
  4378. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  4379. C = C == 0 and 0.00001 or C
  4380. local x = (R21-R12)/sqrt(A)
  4381. local y = (R02-R20)/sqrt(B)
  4382. local z = (R10-R01)/sqrt(C)
  4383. return Vec3(x,y,z),Angle
  4384. end
  4385.  
  4386. function ApplyTrig(Num,Func)
  4387. local Min,Max = Func(0),Func(1)
  4388. local i = Func(Num)
  4389. return (i-Min)/(Max-Min)
  4390. end
  4391.  
  4392. function LerpCFrame(CFrame1,CFrame2,Num)
  4393. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  4394. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  4395. end
  4396.  
  4397. function Crater(Torso,Radius)
  4398. Spawn(function()
  4399. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  4400. local Ignore = {}
  4401. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  4402. if v.Character ~= nil then
  4403. Ignore[#Ignore+1] = v.Character
  4404. end
  4405. end
  4406. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  4407. if Hit == nil then return end
  4408. local Parts = {}
  4409. for i = 1,360,10 do
  4410. local P = Instance.new("Part",Torso.Parent)
  4411. P.Anchored = true
  4412. P.FormFactor = "Custom"
  4413. P.BrickColor = Hit.BrickColor
  4414. P.Material = Hit.Material
  4415. P.TopSurface = "Smooth"
  4416. P.BottomSurface = "Smooth"
  4417. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  4418. 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)))
  4419. 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}
  4420. if math.random(0,5) == 0 then -- rubble
  4421. local P = Instance.new("Part",Torso.Parent)
  4422. P.Anchored = true
  4423. P.FormFactor = "Custom"
  4424. P.BrickColor = Hit.BrickColor
  4425. P.Material = Hit.Material
  4426. P.TopSurface = "Smooth"
  4427. P.BottomSurface = "Smooth"
  4428. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  4429. 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)))
  4430. 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}
  4431. end
  4432. end
  4433. for i = 0,1,0.05 do
  4434. for i2,v in pairs(Parts) do
  4435. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  4436. end
  4437. wait(0.02)
  4438. end
  4439. for i,v in pairs(Parts) do
  4440. if v[1].Size.X > 2.1 then
  4441. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  4442. end
  4443. v[1].Anchored = false
  4444. end
  4445. for i = 0,1,0.05 do
  4446. for i2,v in pairs(Parts) do
  4447. v[1].Transparency = i
  4448. if i == 1 then
  4449. v[1]:Destroy()
  4450. elseif i >= 0.25 then
  4451. v[1].CanCollide = false
  4452. end
  4453. end
  4454. wait(0.02)
  4455. end
  4456. Parts = nil
  4457. end)
  4458. end
  4459.  
  4460. ROW = function(out, trans, s, wt, t, ang, plus)
  4461. for i = 1, 360, 360/t do
  4462. local c = Instance.new("Part", game.Workspace)
  4463. c.FormFactor = 3
  4464. c.TopSurface = 0
  4465. c.BottomSurface = 0
  4466. c.Size = s
  4467. c.Anchored = true
  4468. c.CanCollide = wt
  4469. c.Material=workspace.Base.Material
  4470. c.Transparency = trans
  4471. c.BrickColor = workspace.Base.BrickColor
  4472. c.CFrame = CFrame.new(X.CFrame.x,0,X.CFrame.z) * CFrame.Angles(0, math.rad(i + plus), 0) * CFrame.new(0, 0, out) * ang
  4473. c.Locked=true
  4474. game.Debris:AddItem(c,15)
  4475. end
  4476. end
  4477.  
  4478. Part = function(x,y,z,color,tr,cc,an,parent)
  4479. local p = Instance.new('Part',parent or Weapon)
  4480. p.formFactor = 'Custom'
  4481. p.Size = Vector3.new(x,y,z)
  4482. p.BrickColor = BrickColor.new(color)
  4483. p.CanCollide = cc
  4484. p.Transparency = tr
  4485. p.Anchored = an
  4486. p.TopSurface,p.BottomSurface = 0,0
  4487. p.Locked=true
  4488. p:BreakJoints()
  4489. return p end
  4490.  
  4491. Mesh = function(par,num,x,y,z)
  4492. local msh = _
  4493. if num == 1 then msh = Instance.new("CylinderMesh",par)
  4494. elseif num == 2 then msh = Instance.new("SpecialMesh",par) msh.MeshType = 3
  4495. elseif num == 3 then msh = Instance.new("BlockMesh",par)
  4496. elseif num == 4 then msh = Instance.new("SpecialMesh",par) msh.MeshType = "Torso"
  4497. elseif type(num) == 'string' then msh = Instance.new("SpecialMesh",par) msh.MeshId = num
  4498. end msh.Scale = Vector3.new(x,y,z)
  4499. return msh end
  4500.  
  4501. function explosion(col1,col2,cfr,sz,rng,dmg)
  4502. local a= Part(1,1,1,col1,.5,false,true,workspace)
  4503. local a2= Part(1,1,1,col2,.5,false,true,workspace)
  4504. local a3= Part(1,1,1,col2,.5,false,true,workspace)
  4505. v1,v2,v3=sz.x,sz.y,sz.z
  4506. local m= Mesh(a,'http://www.roblox.com/asset/?id=1185246',v1,v2,v3)
  4507. local m2= Mesh(a2,3,v1/3,v2/3,v3/3)
  4508. local m3= Mesh(a3,3,v1/3,v2/3,v3/3)
  4509. a.CFrame=cfr
  4510. a2.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  4511. a3.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  4512.  
  4513. Spawn(function()
  4514. while wait() do
  4515. if a.Transparency >= 1 then a:Destroy() a2:Destroy() a3:Destroy() break end
  4516. m.Scale=m.Scale+Vector3.new(.1,0.1,0.1)
  4517. m2.Scale=m2.Scale+Vector3.new(.1,0.1,0.1)
  4518. m3.Scale=m3.Scale+Vector3.new(.1,0.1,0.1)
  4519. a.Transparency=a.Transparency+0.05
  4520. a2.Transparency=a2.Transparency+0.05
  4521. a3.Transparency=a3.Transparency+0.05
  4522. end
  4523. end)
  4524. end
  4525.  
  4526. Crater(X,20)
  4527. ROW(12, 0, Vector3.new(34.5, 30, 3), true, 8, CFrame.Angles(math.rad(math.random (30,60)), 0, math.rad (math.random(-30,30))), 0)
  4528. z = Instance.new("Sound",X)
  4529. z.SoundId = "rbxassetid://231917744"
  4530. z.Pitch = .5
  4531. z.Volume = 10
  4532. z1 = Instance.new("Sound",X)
  4533. z1.SoundId = "rbxassetid://231917744"
  4534. z1.Pitch = .5
  4535. z1.Volume = 10
  4536. z2 = Instance.new("Sound",X)
  4537. z2.SoundId = "rbxassetid://231917744"
  4538. z2.Pitch = .5
  4539. z2.Volume = 10
  4540. z3 = Instance.new("Sound",X)
  4541. z3.SoundId = "rbxassetid://245537790"
  4542. z3.Pitch = .7
  4543. z3.Volume = 1
  4544. z4 = Instance.new("Sound",X)
  4545. z4.SoundId = "rbxassetid://245537790"
  4546. z4.Pitch = .7
  4547. z4.Volume = 1
  4548. wait(0.1)
  4549. z:Play()
  4550. z1:Play()
  4551. z2:Play()
  4552. z3:Play()
  4553. z4:Play()
  4554.  
  4555. local part=Instance.new('Part',rarm)
  4556. part.Anchored=true
  4557. part.CanCollide=false
  4558. part.Locked = true
  4559. part.FormFactor='Custom'
  4560. part.Size=Vector3.new(1,1,1)
  4561. part.CFrame=X.CFrame*CFrame.new(0,0,0)
  4562. part.Transparency=0
  4563. part.BrickColor=BrickColor.new('Really black')
  4564. local mesh=Instance.new('SpecialMesh',part)
  4565. mesh.MeshId='http://www.roblox.com/asset/?id=9982590'
  4566. mesh.Scale=Vector3.new(2,2,2)
  4567. local part2=part:clone()
  4568. part2.Parent = rarm
  4569. part2.BrickColor=BrickColor.new("Royal purple")
  4570. local part5=part:clone()
  4571. part5.Parent = rarm
  4572. part5.BrickColor=BrickColor.new("Magenta")
  4573. local part6=part:clone()
  4574. part6.Parent = rarm
  4575. part6.BrickColor=BrickColor.new("Black")
  4576. local mesh2=mesh:clone()
  4577. mesh2.Parent=part2
  4578. mesh2.Scale=Vector3.new(3, 3, 3)
  4579. local mesh5=mesh:clone()
  4580. mesh5.Parent=part5
  4581. mesh5.Scale=Vector3.new(3, 3, 3)
  4582. local mesh6=mesh:clone()
  4583. mesh6.Parent=part6
  4584. mesh6.Scale=Vector3.new(3, 3, 3)
  4585. local blast = Instance.new("Part", rarm)
  4586. blast.BrickColor = BrickColor.new("Really black")
  4587. blast.Anchored = true
  4588. blast.CanCollide = false
  4589. blast.Locked = true
  4590. blast.Size = Vector3.new(1, 1, 1)
  4591. blast.TopSurface = "Smooth"
  4592. blast.BottomSurface = "Smooth"
  4593. blast.Transparency = 0
  4594. blast.CFrame = HandCF
  4595. local bm = Instance.new("SpecialMesh", blast)
  4596. bm.Scale = Vector3.new(5,1,5)
  4597. bm.MeshId = "rbxassetid://9982590"
  4598. local blast2 = Instance.new("Part", rarm)
  4599. blast2.BrickColor = BrickColor.new("Really black")
  4600. blast2.Anchored = true
  4601. blast2.CanCollide = false
  4602. blast2.Locked = true
  4603. blast2.Size = Vector3.new(1, 1, 1)
  4604. blast2.TopSurface = "Smooth"
  4605. blast2.BottomSurface = "Smooth"
  4606. blast2.Transparency = 0
  4607. blast2.CFrame = HandCF
  4608. local bm2 = Instance.new("SpecialMesh", blast2)
  4609. bm2.Scale = Vector3.new(3,1,3)
  4610. bm2.MeshId = "rbxassetid://9982590"
  4611. local blast3 = Instance.new("Part", rarm)
  4612. blast3.BrickColor = BrickColor.new("Really black")
  4613. blast3.Anchored = true
  4614. blast3.CanCollide = false
  4615. blast3.Locked = true
  4616. blast3.Size = Vector3.new(1, 1, 1)
  4617. blast3.TopSurface = "Smooth"
  4618. blast3.BottomSurface = "Smooth"
  4619. blast3.Transparency = 0
  4620. blast3.CFrame = HandCF
  4621. local bm3 = Instance.new("SpecialMesh", blast3)
  4622. bm3.Scale = Vector3.new(3,1,3)
  4623. bm3.MeshId = "rbxassetid://9982590"
  4624. for i = 1,120 do rs:wait()
  4625. X.Transparency = X.Transparency + (1/120)
  4626. part.Transparency = part.Transparency + (1/120)
  4627. part2.Transparency = part2.Transparency + (1/120)
  4628. part3.Transparency = part3.Transparency + (1/120)
  4629. part4.Transparency = part4.Transparency + (1/120)
  4630. part5.Transparency = part5.Transparency + (1/120)
  4631. part6.Transparency = part6.Transparency + (1/120)
  4632. part7.Transparency = part7.Transparency + (1/120)
  4633. blast.Transparency = blast.Transparency + (1/120)
  4634. blast2.Transparency = blast2.Transparency + (1/120)
  4635. blast3.Transparency = blast3.Transparency + (1/120)
  4636. X.Size = X.Size + Vector3.new(.8,.8,.8)
  4637. --part3.Size = part3.Size + Vector3.new(3,3,3)
  4638. mesh.Scale = mesh.Scale + Vector3.new(1,.2,1)
  4639. mesh2.Scale = mesh2.Scale + Vector3.new(1.1,.2,1.1)
  4640. mesh3.Scale = mesh3.Scale + Vector3.new(3,3,3)
  4641. mesh4.Scale = mesh4.Scale + Vector3.new(1.7,1.7,1.7)
  4642. mesh5.Scale = mesh5.Scale + Vector3.new(1.6,.2,1.6)
  4643. mesh6.Scale = mesh6.Scale + Vector3.new(2,.2,2)
  4644. mesh7.Scale = mesh7.Scale + Vector3.new(4,4,4)
  4645. bm.Scale = bm.Scale + Vector3.new(6,6,.2)
  4646. bm2.Scale = bm2.Scale + Vector3.new(4,4,.2)
  4647. bm3.Scale = bm3.Scale + Vector3.new(4,4,.2)
  4648. X.CFrame = cf
  4649. part.CFrame=X.CFrame * CFrame.Angles(0,math.rad(i*2),0)
  4650. part2.CFrame=X.CFrame * CFrame.Angles(0,math.rad(-i*2),0)
  4651. part3.CFrame=X.CFrame
  4652. part4.CFrame=X.CFrame
  4653. part7.CFrame=X.CFrame
  4654. part5.CFrame=X.CFrame * CFrame.Angles(0,math.rad(i*2.6),0)
  4655. part6.CFrame=X.CFrame * CFrame.Angles(0,math.rad(-i*2.4),0)
  4656. blast.CFrame=X.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  4657. blast2.CFrame=X.CFrame * CFrame.Angles(math.rad(-i*4), math.rad(i*4), math.rad(0))
  4658. blast3.CFrame=X.CFrame * CFrame.Angles(math.rad(180+i*4), math.rad(90-i*4), math.rad(0))
  4659. rs:wait()
  4660. end
  4661. X:Destroy()
  4662. part:Destroy()
  4663. part2:Destroy()
  4664. part3:Destroy()
  4665. part4:Destroy()
  4666. part5:Destroy()
  4667. part6:Destroy()
  4668. blast:Destroy()
  4669. blast2:Destroy()
  4670. blast3:Destroy()
  4671. z:Destroy()
  4672. z1:Destroy()
  4673. z2:Destroy()
  4674. z3:Destroy()
  4675. z4:Destroy()
  4676. end
  4677. end)
  4678. for i = 1, 20 do
  4679. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(70),math.rad(-6),math.rad(-20)), 0.2)
  4680. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.2)
  4681. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  4682. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(0)), 0.4)
  4683. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), 0, math.rad(-8)), 0.2)
  4684. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-6), 0, math.rad(8)), 0.2)
  4685. if Debounces.on == false then break end
  4686. rs:wait()
  4687. end
  4688. if Debounces.CanAttack == false then
  4689. Debounces.CanAttack = true
  4690. Debounces.NoIdl = false
  4691. Debounces.on = false
  4692. end
  4693. end
  4694. end
  4695. end)
  4696. ----------------------------------------------------
  4697. mouse.KeyDown:connect(function(key)
  4698. if key == "v" then
  4699. if Debounces.CanAttack == true then
  4700. Debounces.CanAttack = false
  4701. Debounces.on = true
  4702. Debounces.NoIdl = true
  4703. for i = 1, 15 do
  4704. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.2)
  4705. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.6)
  4706. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  4707. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.4)
  4708. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  4709. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  4710. if Debounces.on == false then break end
  4711. rs:wait(2.7)
  4712. end
  4713. so("http://roblox.com/asset/?id=231917788",hed,1,0.7)
  4714. x = Instance.new("Sound",char.Head)
  4715. x.SoundId = "rbxassetid://183763515"
  4716. x.Pitch = 0.7
  4717. x.Volume = .8
  4718. x3 = Instance.new("Sound",char.Head)
  4719. x3.SoundId = "rbxassetid://183763487"
  4720. x3.Pitch = 1
  4721. x3.Volume = .8
  4722. wait(.1)
  4723. x:Play()
  4724. x3:Play()
  4725.  
  4726. if holy == true then
  4727. so("http://roblox.com/asset/?id=233091161",hed,1,0.6)
  4728. so("http://roblox.com/asset/?id=2233091183",hed,1,1)
  4729. else
  4730. end
  4731.  
  4732. Debounces.on = false
  4733. Debounces.Here = false
  4734. shot = shot + 1
  4735. local rng = Instance.new("Part", larm)
  4736. rng.Anchored = true
  4737.  
  4738. if holy ~= true then
  4739. rng.BrickColor = BrickColor.new("Really black")
  4740. else
  4741. rng.BrickColor = BrickColor.new("Cyan")
  4742. end
  4743.  
  4744. rng.Material = "Neon"
  4745. rng.CanCollide = false
  4746. rng.FormFactor = 3
  4747. rng.Name = "Ring"
  4748. rng.Size = Vector3.new(1, 1, 1)
  4749. rng.Transparency = 0.35
  4750. rng.TopSurface = 0
  4751. rng.BottomSurface = 0
  4752. rng2 = rng:clone()
  4753. rng3 = rng2:clone()
  4754. rng4 = rng2:clone()
  4755. local rngm = Instance.new("SpecialMesh", rng)
  4756. rngm.MeshId = "http://www.roblox.com/asset/?id=9982590"
  4757. rngm.Scale = Vector3.new(10, 10, 1)
  4758. rngm2 = rngm:clone()
  4759. rngm2.Scale = Vector3.new(5, 5, 3)
  4760. rngm3=rngm2:clone()
  4761. rngm3.Parent = rng3
  4762. rngm3.Scale = Vector3.new(8, 8, 1)
  4763. rngm4 = rngm2:clone()
  4764. rngm4.Parent = rng4
  4765. rngm4.Scale = Vector3.new(6, 6, 1)
  4766. local bem = Instance.new("Part", larm)
  4767. bem.Anchored = true
  4768.  
  4769. if holy == false then
  4770. bem.BrickColor = BrickColor.new("Really black")
  4771. else
  4772. bem.BrickColor = BrickColor.new("Cyan")
  4773. end
  4774.  
  4775. bem.CanCollide = false
  4776. bem.Material = "Neon"
  4777. bem.FormFactor = 3
  4778. bem.Name = "Beam" .. shot
  4779. bem.Size = Vector3.new(1, 1, 1)
  4780. bem.Transparency = 0.35
  4781. bem.TopSurface = 0
  4782. bem.BottomSurface = 0
  4783. local bemm = Instance.new("SpecialMesh", bem)
  4784. bemm.MeshType = 4
  4785. bemm.Scale = Vector3.new(1, 4, 4)
  4786. local out = Instance.new("Part", larm)
  4787. out.Anchored = true
  4788. out.Material = "Neon"
  4789.  
  4790. if holy == false then
  4791. out.BrickColor = BrickColor.new("Really black")
  4792. else
  4793. out.BrickColor = BrickColor.new("Cyan")
  4794. end
  4795.  
  4796. out.CanCollide = false
  4797. out.FormFactor = 3
  4798. out.Name = "Out"
  4799. out.Size = Vector3.new(4, 4, 4)
  4800. out.Transparency = 0.35
  4801. out.TopSurface = 0
  4802. out.BottomSurface = 0
  4803. local outm = Instance.new("SpecialMesh", out)
  4804. outm.MeshId = "http://www.roblox.com/asset/?id=9982590"
  4805. outm.Scale = Vector3.new(6, 4, 6)
  4806. local bnd = Instance.new("Part", larm)
  4807. bnd.Anchored = true
  4808. bnd.BrickColor = BrickColor.new("Royal purple")
  4809. bnd.CanCollide = false
  4810. bnd.FormFactor = 3
  4811. bnd.Name = "Bend"
  4812. bnd.Size = Vector3.new(1, 1, 1)
  4813. bnd.Transparency = 1
  4814. bnd.TopSurface = 0
  4815. bnd.BottomSurface = 0
  4816. local bndm = Instance.new("SpecialMesh", bnd)
  4817. bndm.MeshType = 3
  4818. bndm.Scale = Vector3.new(8, 8, 8)
  4819. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  4820. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  4821. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  4822. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  4823. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  4824. rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  4825. Debounces.Shewt = true
  4826. coroutine.wrap(function()
  4827. for i = 1, 20, 0.2 do
  4828. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  4829. rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
  4830. rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
  4831. rng.Transparency = i/20
  4832. rng3.Transparency = 1/24
  4833. rng4.Transparency = i/26
  4834. wait()
  4835. end
  4836. wait()
  4837. rng:Destroy()
  4838. end)()
  4839. if Debounces.Shewt == true then
  4840. larm:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  4841. hit = ht.Parent
  4842. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  4843. if HasntTouched(hit.Name) == true and deb == false then
  4844. deb = true
  4845. coroutine.wrap(function()
  4846. hit:FindFirstChild("Humanoid").PlatformStand = true
  4847. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4848. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  4849. end)()
  4850. table.insert(Touche, hit.Name)
  4851. deb = false
  4852. end
  4853. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  4854. if HasntTouched(hit.Parent.Name) == true and deb == false then
  4855. deb = true
  4856. coroutine.wrap(function()
  4857. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  4858. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4859. wait(1)
  4860. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  4861. end)()
  4862. table.insert(Touche, hit.Parent.Name)
  4863. deb = false
  4864. for i, v in pairs(Touche) do
  4865. print(v)
  4866. end
  4867. end
  4868. end
  4869. end)
  4870. end
  4871. for i = 0, 260, 8 do
  4872. bem.Size = Vector3.new(i, 3, 3)
  4873. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  4874. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  4875. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  4876. bnd.Size = Vector3.new(1,1,1)
  4877. bndm.Scale = Vector3.new(8,8,8)
  4878. if i % 10 == 0 then
  4879. local newRng = rng2:Clone()
  4880. newRng.Parent = larm
  4881. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  4882. local newRngm = rngm2:clone()
  4883. newRngm.Parent=newRng
  4884. coroutine.wrap(function()
  4885. for i = 1, 10, 0.2 do
  4886. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
  4887. newRng.Transparency = i/10
  4888. wait()
  4889. end
  4890. wait()
  4891. newRng:Destroy()
  4892. end)()
  4893. end
  4894. wait()
  4895. end
  4896. wait()
  4897. Debounces.Shewt = false
  4898. bem:Destroy()
  4899. out:Destroy()
  4900. bnd:Destroy()
  4901. Debounces.Ready = false
  4902. for i, v in pairs(Touche) do
  4903. table.remove(Touche, i)
  4904. end
  4905. wait()
  4906. table.insert(Touche, char.Name)
  4907. Debounces.NoIdl = false
  4908. if Debounces.CanAttack == false then
  4909. Debounces.CanAttack = true
  4910. end
  4911. end
  4912. end
  4913. end)
  4914. local orbt={}
  4915. local stlt={}
  4916. local chot={}
  4917. local cfxt={}
  4918. local pfxt={}
  4919. local cns=0
  4920. local cnOrb=nil
  4921. mouse.KeyDown:connect(function(key)
  4922. if key == "u" then
  4923. if Debounces.CanAttack == true then
  4924. Debounces.CanAttack = false
  4925. Debounces.NoIdl = true
  4926. Debounces.on = true
  4927. orbt={}
  4928. stlt={}
  4929. chot={}
  4930. cfxt={}
  4931. for i,v in pairs (char.Claw:GetChildren()) do
  4932. if v:IsA("Part") then
  4933. v.Transparency=0
  4934. end
  4935. end
  4936. for i,v in pairs (char.Claw:GetChildren()) do
  4937. if v:IsA("WedgePart") then
  4938. v.Transparency=0
  4939. end
  4940. end
  4941.  
  4942. for i = 1, 20 do
  4943.  
  4944. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(170),math.rad(-20),math.rad(-30)), 0.2)
  4945.  
  4946. if Debounces.on == false then end
  4947. rs:wait()
  4948. end
  4949. z = Instance.new("Sound",char)
  4950. z.SoundId = "rbxassetid://170053944"
  4951. z.Pitch = 1.07
  4952. z.Volume = 1
  4953. wait(0.1)
  4954. z:Play()
  4955. cnOrb=nwPrt(char,Vector3.new(1,1,1),larm.CFrame*CFrame.new(0,-3.4,-0.1),"Really black")
  4956. debris:AddItem(cnOrb,50)
  4957. cnOrb.Mesh.MeshType=3
  4958. table.insert(orbt,cnOrb)
  4959. table.insert(stlt,cnOrb)
  4960. local nt=0
  4961. for i=0,5,0.02 do
  4962. nt=nt+1
  4963. cns=i
  4964. if nt>=2 then
  4965. nt=0
  4966. local cho=nwPrt(mod3,Vector3.new(2,2,2),cnOrb.CFrame*CFrame.Angles(math.rad(math.random(-180,180)),math.rad(math.random(-180,180)),math.rad(math.random(-180,180)))*CFrame.new(0,5+cns,0),"Really black")
  4967. debris:AddItem(cho,1)
  4968. cho.Mesh.MeshType=3
  4969. table.insert(chot,cho)
  4970. end
  4971. cnOrb.CFrame=larm.CFrame*CFrame.new(0,-3.4-(cns/2),-0.1)
  4972. cnOrb.Mesh.Scale=Vector3.new(i,i,i)
  4973. wait()
  4974. end
  4975. for i = 1, 14 do
  4976. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.6)
  4977. if Debounces.on == false then end
  4978. rs:wait()
  4979. end
  4980. coroutine.wrap(function()
  4981. for i = 1, 20 do
  4982.  
  4983. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(70),math.rad(20),math.rad(50)), 0.6)
  4984.  
  4985. if Debounces.on == false then end
  4986. rs:wait()
  4987. end
  4988. end)()
  4989. wait(0.1)
  4990. stlt={}
  4991. local ry,ht,ps=newRay(root.CFrame*CFrame.new(0,0,-4),root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)*CFrame.new(0,0,-2),160,{char})
  4992. cnOrb.CFrame=root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)
  4993. local nt=0
  4994. for i=0,160,3 do
  4995. cnOrb.CFrame=cnOrb.CFrame*CFrame.new(0,0,-3)
  4996. nt=nt+1
  4997. if nt>=6 then
  4998. nt=0
  4999. local cfx=nwPrt(mod3,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.new(0,0,2)*CFrame.Angles(math.rad(90),0,0),"Really black")
  5000. cfx.Mesh.MeshId="rbxassetid://9982590"
  5001. cfx.Transparency=0.4
  5002. table.insert(cfxt,cfx)
  5003. debris:AddItem(cfx,1)
  5004. end
  5005. if (cnOrb.Position-ps).magnitude<6 then
  5006. break
  5007. end
  5008. wait()
  5009. end
  5010. orbt={}
  5011.  
  5012. for i=0,1,0.1 do
  5013. local cs=cnOrb.Mesh.Scale
  5014. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,10,i),Tween(cs.Y,10,i),Tween(cs.Z,10,i))
  5015. wait()
  5016. end
  5017. local ofx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  5018. ofx.Transparency=0.5
  5019. ofx.Mesh.MeshType=3
  5020. ofx.Mesh.Scale=Vector3.new(30,30,30)
  5021. for _,v in pairs(game:service"Players":GetChildren()) do
  5022. pcall(function()
  5023. for _,c in pairs(v.Character:GetChildren()) do
  5024. if v~=p and c:IsA("Part") and (cnOrb.CFrame.p-c.CFrame.p).magnitude<60 and (cnOrb.CFrame.p-c.CFrame.p).magnitude>15 then
  5025. local hrp=v.Character:FindFirstChild("HumanoidRootPart")
  5026. hrp.Velocity=CFrame.new(hrp.CFrame.p,(cnOrb.CFrame*CFrame.new(0,10,0)).p).lookVector*150
  5027. end
  5028. end
  5029. end)
  5030. end
  5031. for i=0,1,0.05 do
  5032. local cs=cnOrb.Mesh.Scale
  5033. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,0.1,i),Tween(cs.Y,0.1,i),Tween(cs.Z,0.1,i))
  5034. local ofs=ofx.Mesh.Scale
  5035. ofx.Mesh.Scale=Vector3.new(Tween(ofs.X,0.1,i),Tween(ofs.Y,0.1,i),Tween(ofs.Z,0.1,i))
  5036. ofx.Transparency=Tween(ofx.Transparency,1,i)
  5037. wait()
  5038. end
  5039. ofx:Destroy()
  5040. cnOrb.CFrame=CFrame.new(cnOrb.Position)*CFrame.new(0,10,0)
  5041. local cnfx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  5042. cnfx.Mesh.MeshType=3
  5043. cnOrb.Transparency=0.05
  5044. local cnr=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  5045. cnr.Mesh.MeshType=3
  5046. local rn1=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.Angles(math.rad(90),0,0),"Really black")
  5047. rn1.Transparency=1
  5048. rn1.Mesh.MeshId="rbxassetid://9982590"
  5049. local rn2=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  5050. rn2.Transparency=1
  5051. rn2.Mesh.MeshId="rbxassetid://9982590"
  5052. local nt=0
  5053. local cs=nil
  5054. for i=0,1,0.05 do
  5055. cs=cnOrb.Mesh.Scale
  5056. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,100,i),Tween(cs.Y,100,i),Tween(cs.Z,100,i))
  5057. local fs=cnfx.Mesh.Scale
  5058. cnfx.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,120,i))
  5059. cnfx.Transparency=cnfx.Transparency+0.05
  5060. rn1.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  5061. rn2.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  5062. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  5063. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  5064. rn1.Transparency=Tween(rn1.Transparency,0.8,i)
  5065. rn2.Transparency=Tween(rn2.Transparency,0.8,i)
  5066. local rs=cnr.Mesh.Scale
  5067. cnr.Mesh.Scale=Vector3.new(Tween(rs.X,10,i),Tween(rs.Y,10,i),Tween(rs.Z,10,i))
  5068. nt=nt+1
  5069. if nt>=6 then
  5070. local pls={}
  5071. for _,v in pairs(game.Players:GetChildren()) do
  5072. table.insert(pls,v)
  5073. end
  5074. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  5075. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  5076. pffx.Mesh.MeshId="rbxassetid://9982590"
  5077. pffx.Mesh.Scale=Vector3.new(cs.X,cs.Y/5,cs.Z)
  5078. debris:AddItem(pffx,2)
  5079. table.insert(pfxt,pffx)
  5080. nt=0
  5081. end
  5082. wait()
  5083. end
  5084. local int=0
  5085. coroutine.wrap(function()
  5086. for i=1,500 do
  5087. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  5088. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  5089. nt=nt+1
  5090. int=int+1
  5091. local htd={p}
  5092. for _,v in pairs(game:service"Players":GetChildren()) do
  5093. pcall(function()
  5094. for _,c in pairs(v.Character:GetChildren()) do
  5095. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  5096. v.Character:FindFirstChild("Humanoid").Health=v.Character:FindFirstChild("Humanoid").Health-2
  5097. v.Character:FindFirstChild("HumanoidRootPart").Velocity=Vector3.new(0,0,0)
  5098. table.insert(htd,v)
  5099. end
  5100. end
  5101. end)
  5102. end
  5103. htd={p}
  5104. if int>=6 then
  5105. for _,v in pairs(game:service"Players":GetChildren()) do
  5106. pcall(function()
  5107. for _,c in pairs(v.Character:GetChildren()) do
  5108. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  5109. table.insert(htd,v)
  5110. local hfx=nwPrt(mod3,Vector3.new(1,1,1),c.CFrame*CFrame.new(math.random(-2,2),math.random(-2,2),math.random(-2,2)),"Really black")
  5111. hfx.Mesh.Scale=Vector3.new(2,2,2)
  5112. hfx.Mesh.MeshType=3
  5113. debris:AddItem(hfx,2)
  5114. coroutine.wrap(function()
  5115. pcall(function()
  5116. for i=0,1,0.05 do
  5117. pcall(function()
  5118. local hs=hfx.Mesh.Scale
  5119. hfx.CFrame=Lerp(hfx.CFrame,cnOrb.CFrame,i)
  5120. hfx.Mesh.Scale=Vector3.new(Tween(hs.X,0.1,i),Tween(hs.Y,0.1,i),Tween(hs.Z,0.1,i))
  5121. end)
  5122. wait()
  5123. end
  5124. hfx:Destroy()
  5125. end)
  5126. end)()
  5127. end
  5128. end
  5129. end)
  5130. end
  5131. int=0
  5132. end
  5133. if nt>=4 then
  5134. local pls={}
  5135. for _,v in pairs(game.Players:GetChildren()) do
  5136. table.insert(pls,v)
  5137. end
  5138. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  5139. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  5140. pffx.Transparency=0.4
  5141. pffx.Mesh.MeshId="rbxassetid://9982590"
  5142. pffx.Mesh.Scale=Vector3.new(cs.X-10,cs.Y/5,cs.Z-10)
  5143. debris:AddItem(pffx,2)
  5144. table.insert(pfxt,pffx)
  5145. nt=0
  5146. end
  5147. wait()
  5148. end
  5149. cnOrb:Destroy()
  5150. cnfx:Destroy()
  5151. for i,v in pairs (char.Claw:GetChildren()) do
  5152. if v:IsA("Part") then
  5153. v.Transparency=1
  5154. end
  5155. end
  5156. for i,v in pairs (char.Claw:GetChildren()) do
  5157. if v:IsA("WedgePart") then
  5158. v.Transparency=1
  5159. end
  5160. end
  5161. for _,v in pairs(mod3:GetChildren()) do
  5162. v:Destroy()
  5163. end
  5164. orbt={}
  5165. stlt={}
  5166. chot={}
  5167. cfxt={}
  5168. pfxt={}
  5169. end)()
  5170. if Debounces.CanAttack == false then
  5171. Debounces.CanAttack = true
  5172. Debounces.NoIdl = false
  5173. Debounces.on = false
  5174. end
  5175. end
  5176. end
  5177. end)
  5178. ----------------------------------------------------
  5179. mouse.KeyDown:connect(function(key)
  5180. if key == "e" then
  5181. if Debounces.CanAttack == true then
  5182. Debounces.CanAttack = false
  5183. Debounces.on = true
  5184. Debounces.NoIdl = true
  5185. pt = {1, 1.1, 1.2, 1.3, 1.4, 1.5}
  5186. z = Instance.new("Sound", rarm)
  5187. z.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  5188. z.Volume = .6
  5189. z.Pitch = pt[math.random(1,#pt)]
  5190. z.Looped = false
  5191. z:Play()
  5192. Debounces.RPunch = true
  5193. Debounces.LPunch = true
  5194. Debounces.ks = true
  5195. Debounces.ks2 = true
  5196. for i = 1, 3 do
  5197. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  5198. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  5199. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5200. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5201. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  5202. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  5203. if Debounces.on == false then break end
  5204. wait()
  5205. end
  5206. z2 = Instance.new("Sound", larm)
  5207. z2.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5208. z2.Volume = .6
  5209. z2.Pitch = pt[math.random(1,#pt)]
  5210. z2.Looped = false
  5211. z2:Play()
  5212. for i = 1, 3 do
  5213. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5214. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  5215. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5216. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5217. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5218. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5219. if Debounces.on == false then break end
  5220. wait()
  5221. end
  5222. z3 = Instance.new("Sound", rarm)
  5223. z3.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5224. z3.Volume = 0.6
  5225. z3.Pitch = pt[math.random(1,#pt)]
  5226. z3.Looped = false
  5227. z3:Play()
  5228. for i = 1, 3 do
  5229. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  5230. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  5231. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5232. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5233. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  5234. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  5235. if Debounces.on == false then break end
  5236. wait()
  5237. end
  5238. z4 = Instance.new("Sound", larm)
  5239. z4.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5240. z4.Volume = .6
  5241. z4.Pitch = pt[math.random(1,#pt)]
  5242. z4.Looped = false
  5243. z4:Play()
  5244. for i = 1, 3 do
  5245. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5246. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  5247. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5248. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5249. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5250. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5251. if Debounces.on == false then break end
  5252. wait()
  5253. end
  5254. z5 = Instance.new("Sound", rarm)
  5255. z5.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5256. z5.Volume = .6
  5257. z5.Pitch = pt[math.random(1,#pt)]
  5258. z5.Looped = false
  5259. z5:Play()
  5260. for i = 1, 3 do
  5261. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  5262. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  5263. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  5264. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  5265. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  5266. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  5267. if Debounces.on == false then break end
  5268. wait()
  5269. end
  5270. z6 = Instance.new("Sound", larm)
  5271. z6.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5272. z6.Volume = .6
  5273. z6.Pitch = pt[math.random(1,#pt)]
  5274. z6.Looped = false
  5275. z6:Play()
  5276. for i = 1, 3 do
  5277. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5278. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  5279. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5280. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5281. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5282. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5283. if Debounces.on == false then break end
  5284. wait()
  5285. end
  5286. z7 = Instance.new("Sound", rarm)
  5287. z7.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  5288. z7.Volume = .6
  5289. z7.Pitch = pt[math.random(1,#pt)]
  5290. z7.Looped = false
  5291. z7:Play()
  5292. for i = 1, 3 do
  5293. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  5294. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  5295. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5296. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5297. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  5298. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  5299. if Debounces.on == false then break end
  5300. wait()
  5301. end
  5302. z8 = Instance.new("Sound", larm)
  5303. z8.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5304. z8.Volume = .6
  5305. z8.Pitch = pt[math.random(1,#pt)]
  5306. z8.Looped = false
  5307. z8:Play()
  5308. for i = 1, 3 do
  5309. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5310. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  5311. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5312. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5313. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5314. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5315. if Debounces.on == false then break end
  5316. wait()
  5317. end
  5318. z9 = Instance.new("Sound", rarm)
  5319. z9.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5320. z9.Volume = 0.6
  5321. z9.Pitch = pt[math.random(1,#pt)]
  5322. z9.Looped = false
  5323. z9:Play()
  5324. for i = 1, 3 do
  5325. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  5326. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  5327. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5328. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5329. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  5330. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  5331. if Debounces.on == false then break end
  5332. wait()
  5333. end
  5334. z10 = Instance.new("Sound", larm)
  5335. z10.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5336. z10.Volume = .6
  5337. z10.Pitch = pt[math.random(1,#pt)]
  5338. z10.Looped = false
  5339. z10:Play()
  5340. for i = 1, 3 do
  5341. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5342. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  5343. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5344. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5345. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5346. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5347. if Debounces.on == false then break end
  5348. wait()
  5349. end
  5350. z11 = Instance.new("Sound", rarm)
  5351. z11.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5352. z11.Volume = .6
  5353. z11.Pitch = pt[math.random(1,#pt)]
  5354. z11.Looped = false
  5355. z11:Play()
  5356. for i = 1, 3 do
  5357. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  5358. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  5359. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  5360. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  5361. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  5362. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  5363. if Debounces.on == false then break end
  5364. wait()
  5365. end
  5366. z12 = Instance.new("Sound", larm)
  5367. z12.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5368. z12.Volume = .6
  5369. z12.Pitch = pt[math.random(1,#pt)]
  5370. z12.Looped = false
  5371. z12:Play()
  5372. for i = 1, 3 do
  5373. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5374. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  5375. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5376. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5377. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5378. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5379. if Debounces.on == false then break end
  5380. wait()
  5381. end
  5382. z13 = Instance.new("Sound", rarm)
  5383. z13.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5384. z13.Volume = 0.6
  5385. z13.Pitch = pt[math.random(1,#pt)]
  5386. z13.Looped = false
  5387. z13:Play()
  5388. for i = 1, 3 do
  5389. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  5390. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  5391. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5392. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5393. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  5394. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  5395. if Debounces.on == false then break end
  5396. wait()
  5397. end
  5398. z14 = Instance.new("Sound", larm)
  5399. z14.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5400. z14.Volume = .6
  5401. z14.Pitch = pt[math.random(1,#pt)]
  5402. z14.Looped = false
  5403. z14:Play()
  5404. for i = 1, 3 do
  5405. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5406. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  5407. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5408. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5409. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5410. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5411. if Debounces.on == false then break end
  5412. wait()
  5413. end
  5414. z15 = Instance.new("Sound", rarm)
  5415. z15.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5416. z15.Volume = .6
  5417. z15.Pitch = pt[math.random(1,#pt)]
  5418. z15.Looped = false
  5419. z15:Play()
  5420. for i = 1, 3 do
  5421. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  5422. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  5423. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  5424. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  5425. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  5426. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  5427. if Debounces.on == false then break end
  5428. wait()
  5429. end
  5430. z16 = Instance.new("Sound", larm)
  5431. z16.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5432. z16.Volume = .6
  5433. z16.Pitch = pt[math.random(1,#pt)]
  5434. z16.Looped = false
  5435. z16:Play()
  5436. for i = 1, 3 do
  5437. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5438. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  5439. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5440. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5441. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5442. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5443. if Debounces.on == false then break end
  5444. wait()
  5445. end
  5446. z17 = Instance.new("Sound", rarm)
  5447. z17.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  5448. z17.Volume = .6
  5449. z17.Pitch = pt[math.random(1,#pt)]
  5450. z17.Looped = false
  5451. z17:Play()
  5452. for i = 1, 3 do
  5453. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  5454. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  5455. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5456. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5457. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  5458. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  5459. if Debounces.on == false then break end
  5460. wait()
  5461. end
  5462. z18 = Instance.new("Sound", larm)
  5463. z18.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5464. z18.Volume = .6
  5465. z18.Pitch = pt[math.random(1,#pt)]
  5466. z18.Looped = false
  5467. z18:Play()
  5468. for i = 1, 3 do
  5469. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5470. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  5471. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5472. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5473. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5474. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5475. if Debounces.on == false then break end
  5476. wait()
  5477. end
  5478. z19 = Instance.new("Sound", rarm)
  5479. z19.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5480. z19.Volume = 0.6
  5481. z19.Pitch = pt[math.random(1,#pt)]
  5482. z19.Looped = false
  5483. z19:Play()
  5484. for i = 1, 3 do
  5485. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  5486. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  5487. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  5488. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  5489. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  5490. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  5491. if Debounces.on == false then break end
  5492. wait()
  5493. end
  5494. z20 = Instance.new("Sound", larm)
  5495. z20.SoundId = "http://www.roblox.com/asset/?id=206083107"
  5496. z20.Volume = .6
  5497. z20.Pitch = pt[math.random(1,#pt)]
  5498. z20.Looped = false
  5499. z20:Play()
  5500. for i = 1, 3 do
  5501. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  5502. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  5503. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  5504. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  5505. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  5506. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  5507. if Debounces.on == false then break end
  5508. wait()
  5509. end
  5510. z:Destroy()
  5511. z2:Destroy()
  5512. z3:Destroy()
  5513. z4:Destroy()
  5514. z5:Destroy()
  5515. z6:Destroy()
  5516. z7:Destroy()
  5517. z8:Destroy()
  5518. z9:Destroy()
  5519. z10:Destroy()
  5520. z11:Destroy()
  5521. z12:Destroy()
  5522. z13:Destroy()
  5523. z14:Destroy()
  5524. z15:Destroy()
  5525. z16:Destroy()
  5526. z17:Destroy()
  5527. z18:Destroy()
  5528. z19:Destroy()
  5529. z20:Destroy()
  5530. Debounces.LPunch = false
  5531. Debounces.RPunch = false
  5532. Debounces.ks = false
  5533. Debounces.ks2 = false
  5534. if Debounces.CanAttack == false then
  5535. Debounces.CanAttack = true
  5536. Debounces.on = false
  5537. Debounces.NoIdl = false
  5538. end
  5539. end
  5540. end
  5541. end)
  5542. ----------------------------------------------------Cero
  5543. mouse.KeyDown:connect(function(key)
  5544. if key == "c" then
  5545. if Debounces.CanAttack == true then
  5546. Debounces.CanAttack = false
  5547. Debounces.NoIdl = true
  5548. Debounces.on = true
  5549. char.Humanoid.WalkSpeed = .01
  5550. Debounces.on = true
  5551.  
  5552. xx = Instance.new("Sound")
  5553. xx.SoundId = "http://www.roblox.com/asset/?id=199145659"
  5554. xx.Parent = char.Head
  5555. xx.Looped = false
  5556. xx.Pitch = .88
  5557. xx.Volume = 1
  5558. wait(.1)
  5559. xx:Play()
  5560.  
  5561. if holy == true then
  5562. so("http://roblox.com/asset/?id=231917788",hed,1,1)
  5563. else
  5564. end
  5565.  
  5566.  
  5567. if holy ~= true then
  5568. for i = 1, 20 do
  5569. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(-18), 0, math.rad(-20)), 0.3)
  5570. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(65), 0, math.rad(-40)), 0.3)
  5571. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(-10)), 0.3)
  5572. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(8), 0, math.rad(10)), 0.3)
  5573. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-10), math.rad(-70), 0), 0.6)
  5574. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(84), 0), 0.4)
  5575. if Debounces.on==false then break end
  5576. wait()
  5577. end
  5578. wait(1)
  5579. else
  5580. for i = 1, 5 do
  5581. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(-18), 0, math.rad(-20)), 0.3)
  5582. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(65), 0, math.rad(-40)), 0.3)
  5583. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(-10)), 0.3)
  5584. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(8), 0, math.rad(10)), 0.3)
  5585. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-10), math.rad(-70), 0), 0.6)
  5586. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(84), 0), 0.4)
  5587. if Debounces.on==false then break end
  5588. wait()
  5589. end
  5590. wait(1)
  5591. end
  5592.  
  5593. x = Instance.new("Sound")
  5594. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  5595. x2 = Instance.new("Sound")
  5596. x2.SoundId = "http://www.roblox.com/asset/?id=183763506"
  5597. x.Parent = char.Head
  5598. x2.Parent = char.Head
  5599. x.Looped = false
  5600. x2.Looped = false
  5601. x.Pitch = .88
  5602. x.Volume = 1
  5603. x2.Pitch = .88
  5604. x2.Volume = 1
  5605. wait(.1)
  5606. x:Play()
  5607. x2:Play()
  5608. Debounces.on = false
  5609. Debounces.Here = false
  5610.  
  5611. for i = 1, 6 do
  5612. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(-12)), 0.4)
  5613. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(90), 0, math.rad(101)), 0.4)
  5614. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(-6)), 0.4)
  5615. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(6)), 0.4)
  5616. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0) * CFrame.Angles(math.rad(-8), math.rad(-84), 0), 0.4)
  5617. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.4)
  5618. wait()
  5619. end
  5620. local rng = Instance.new("Part", char)
  5621. rng.Anchored = true
  5622.  
  5623. if holy ~= true then
  5624. rng.BrickColor = BrickColor.new("Really black")
  5625. else
  5626. rng.BrickColor = BrickColor.new("Cyan")
  5627. end
  5628.  
  5629. rng.CanCollide = false
  5630. rng.FormFactor = 3
  5631. rng.Name = "Ring"
  5632. rng.Size = Vector3.new(1, 1, 1)
  5633. rng.Transparency = 0.35
  5634. rng.TopSurface = 0
  5635. rng.BottomSurface = 0
  5636. rng.Material = "Neon"
  5637. local rngm = Instance.new("SpecialMesh", rng)
  5638. rngm.MeshId = "http://www.roblox.com/asset/?id=9982590"
  5639. rngm.Scale = Vector3.new(10, 10, 1)
  5640. local bem = Instance.new("Part", char)
  5641. bem.Anchored = true
  5642.  
  5643. if holy ~= true then
  5644. bem.BrickColor = BrickColor.new("Really black")
  5645. else
  5646. bem.BrickColor = BrickColor.new("Cyan")
  5647. end
  5648.  
  5649. bem.Material = "Neon"
  5650. bem.CanCollide = false
  5651. bem.FormFactor = 3
  5652. bem.Name = "Beam" .. shot
  5653. bem.Size = Vector3.new(1, 1, 1)
  5654. bem.Transparency = 0.35
  5655. bem.TopSurface = 0
  5656. bem.BottomSurface = 0
  5657. local bemm = Instance.new("SpecialMesh", bem)
  5658. bemm.MeshType = 4
  5659. bemm.Scale = Vector3.new(1, 4, 4)
  5660. local out = Instance.new("Part", char)
  5661. out.Anchored = true
  5662.  
  5663. if holy ~= true then
  5664. out.BrickColor = BrickColor.new("Really black")
  5665. else
  5666. out.BrickColor = BrickColor.new("Cyan")
  5667. end
  5668.  
  5669. out.Material = "Neon"
  5670. out.CanCollide = false
  5671. out.FormFactor = 3
  5672. out.Name = "Out"
  5673. out.Size = Vector3.new(1, 1, 1)
  5674. out.Transparency = 0.35
  5675. out.TopSurface = 0
  5676. out.BottomSurface = 0
  5677. local outm = Instance.new("SpecialMesh", out)
  5678. outm.MeshId = "http://www.roblox.com/asset/?id=9982590"
  5679. outm.Scale = Vector3.new(2, 2, 2)
  5680. local bnd = Instance.new("Part", char)
  5681. bnd.Anchored = true
  5682.  
  5683. if holy ~= true then
  5684. bnd.BrickColor = BrickColor.new("Really black")
  5685. else
  5686. bnd.BrickColor = BrickColor.new("Cyan")
  5687. end
  5688.  
  5689. bnd.Material = "Neon"
  5690. bnd.CanCollide = false
  5691. bnd.FormFactor = 3
  5692. bnd.Name = "BEnd"
  5693. bnd.Size = Vector3.new(1, 1, 1)
  5694. bnd.Transparency = 0.35
  5695. bnd.TopSurface = 0
  5696. bnd.BottomSurface = 0
  5697. local bndm = Instance.new("SpecialMesh", bnd)
  5698. bndm.MeshType = 3
  5699. bndm.Scale = Vector3.new(4, 4, 4)
  5700. out.CFrame = rarm.CFrame * CFrame.new(0, -1.75, 0)
  5701. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  5702. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  5703. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  5704. Debounces.Shewt = true
  5705. coroutine.wrap(function()
  5706. for i = 1, 20, 0.2 do
  5707. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  5708. rng.Transparency = i/20
  5709. wait()
  5710. end
  5711. wait()
  5712. rng:Destroy()
  5713. end)()
  5714. if Debounces.Shewt == true then
  5715. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht) --Here
  5716. print("Hit")
  5717. hit = ht.Parent
  5718. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  5719. print("Yes")
  5720. if HasntTouched(hit.Name) == true and deb == false then
  5721. deb = true
  5722. coroutine.wrap(function()
  5723. hit:FindFirstChild("Humanoid").PlatformStand = true
  5724. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 140
  5725. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(18,63))
  5726. wait(1)
  5727. hit:FindFirstChild("Humanoid").PlatformStand = false
  5728. end)()
  5729. table.insert(Touche, hit.Name)
  5730. deb = false
  5731. end
  5732. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  5733. print("Yes")
  5734. if HasntTouched(hit.Parent.Name) == true and deb == false then
  5735. deb = true
  5736. coroutine.wrap(function()
  5737. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  5738. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 140
  5739. wait(1)
  5740. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  5741. end)()
  5742. table.insert(Touche, hit.Parent.Name)
  5743. deb = false
  5744. for i, v in pairs(Touche) do
  5745. print(v)
  5746. end
  5747. end
  5748. end
  5749. end)
  5750. end
  5751. for i = 0, 200, 7 do
  5752. bem.Size = Vector3.new(i, 1, 1)
  5753. bem.CFrame = rarm.CFrame * CFrame.new(0, -2.5 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  5754. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 0)
  5755. wait()
  5756. end
  5757. wait()
  5758. Debounces.Shewt = false
  5759. bem:Destroy()
  5760. out:Destroy()
  5761. bnd:Destroy()
  5762. char.Humanoid.WalkSpeed = 10
  5763. Debounces.Ready = false
  5764. for i, v in pairs(Touche) do
  5765. table.remove(Touche, i)
  5766. end
  5767. wait()
  5768. table.insert(Touche, char.Name)
  5769. Debounces.NoIdl = false
  5770. if Debounces.CanAttack == false then
  5771. Debounces.CanAttack = true
  5772. Debounces.on = false
  5773. end
  5774. end
  5775. end
  5776. end)
  5777. -------------------------------
  5778. mouse.KeyDown:connect(function(key)
  5779. if key == "t" then
  5780. if Debounces.CanAttack == true then
  5781. Debounces.CanAttack = false
  5782. Debounces.NoIdl = true
  5783. Debounces.on = true
  5784. Debounces.ks = true
  5785. kik = rleg.Touched:connect(function(ht)
  5786. hit = ht.Parent
  5787. if ht and hit:IsA("Model") then
  5788. if hit:FindFirstChild("Humanoid") then
  5789. if hit.Name ~= p.Name then
  5790. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  5791. Debounces.Slashed = true]]--
  5792. if Debounces.ks==true then
  5793. z = Instance.new("Sound",hed)
  5794. z.SoundId = "rbxassetid://169380525"
  5795. z.Volume = 1
  5796. z:Play()
  5797. Debounces.ks=false
  5798. end
  5799. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  5800. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -300
  5801. --Debounces.Slashed = false
  5802. --end
  5803. end
  5804. end
  5805. elseif ht and hit:IsA("Hat") then
  5806. if hit.Parent.Name ~= p.Name then
  5807. if hit.Parent:FindFirstChild("Humanoid") then
  5808. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  5809. Debounces.Slashed = true]]--
  5810. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  5811. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -300
  5812. --Debounces.Slashed = false
  5813. --end
  5814. end
  5815. end
  5816. end
  5817. end)
  5818. for i = 1,20 do
  5819. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(8)), 0.4)
  5820. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.4)
  5821. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  5822. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(90), math.rad(90)), 0.4)
  5823. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-90)), 0.4)
  5824. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  5825. if Debounces.on == false then break end
  5826. rs:wait()
  5827. end
  5828. kik:disconnect()
  5829. if Debounces.CanAttack == false then
  5830. Debounces.CanAttack = true
  5831. Debounces.NoIdl = false
  5832. Debounces.on = false
  5833. end
  5834. end
  5835. end
  5836. end)
  5837. ----------------------------------------------------
  5838. Charging = false
  5839. chargewait = false
  5840. mouse.KeyDown:connect(function(key)
  5841. if key == "h" then
  5842. if Charging == false and chargewait == false then
  5843. Charging = true
  5844. chargewait = true
  5845. if Debounces.CanAttack == true then
  5846. Debounces.CanAttack = false
  5847. Debounces.NoIdl = true
  5848. Debounces.on = true
  5849.  
  5850.  
  5851. if holy ~= true then
  5852. holy = true
  5853. else holy = false
  5854. end
  5855.  
  5856.  
  5857. for i = 1,20 do
  5858. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-40)), 0.2)
  5859. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(40)), 0.2)
  5860. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  5861. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  5862. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2)
  5863. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2)
  5864. if Debounces.on == false then break end
  5865. rs:wait()
  5866. end
  5867. pt=Instance.new('Part',torso)
  5868. pt.Anchored=true
  5869. pt.CanCollide=false
  5870. pt.Locked = true
  5871. pt.Material = "Neon"
  5872. pt.FormFactor='Custom'
  5873. pt.Size=Vector3.new(1,1,1)
  5874. pt.CFrame=root.CFrame*CFrame.new(0,-1,0)
  5875. pt.Transparency=.6
  5876.  
  5877. if holy == true then
  5878. pt.BrickColor=BrickColor.new('Cyan')
  5879. else
  5880. pt.BrickColor = BrickColor.new("Really black")
  5881. end
  5882.  
  5883. msh=Instance.new('SpecialMesh',pt)
  5884. msh.MeshId='http://www.roblox.com/asset/?id=9982590'
  5885. msh.Scale=Vector3.new(8,4,8)
  5886. pt2=pt:clone()
  5887. pt2.Parent = torso
  5888. pt2.CFrame=root.CFrame*CFrame.new(0,-1,0)
  5889.  
  5890. if holy == true then
  5891.  
  5892.  
  5893. for i,v in pairs (char.Wings:GetChildren()) do
  5894. if v:IsA("Part") then
  5895. v.BrickColor=BrickColor.new('Cyan')
  5896. end
  5897. end
  5898. for i,v in pairs (char.Claw:GetChildren()) do
  5899. if v:IsA("WedgePart") then
  5900. v.BrickColor=BrickColor.new('Cyan')
  5901. end
  5902. end
  5903.  
  5904. for i,v in pairs (char.Hair:GetChildren()) do
  5905. if v:IsA("Part") then
  5906. v.BrickColor=BrickColor.new('Cyan')
  5907. end
  5908. end
  5909. for i,v in pairs (char.Claw:GetChildren()) do
  5910. if v:IsA("WedgePart") then
  5911. v.BrickColor=BrickColor.new('Cyan')
  5912. end
  5913. end
  5914.  
  5915. for i,v in pairs (char.Claw:GetChildren()) do
  5916. if v:IsA("Part") then
  5917. v.BrickColor=BrickColor.new('Cyan')
  5918. end
  5919. end
  5920.  
  5921.  
  5922.  
  5923.  
  5924.  
  5925. for i,v in pairs (larm.LeftArm:GetChildren()) do
  5926. if v:IsA("WedgePart") then
  5927. v.BrickColor = BrickColor.new("Cyan")
  5928. end
  5929. end
  5930.  
  5931. for i,v in pairs (larm.LeftArm:GetChildren()) do
  5932. if v:IsA("Part") then
  5933. v.BrickColor=BrickColor.new('Cyan')
  5934. end
  5935. end
  5936.  
  5937.  
  5938.  
  5939.  
  5940.  
  5941. for i,v in pairs (rarm.RightArm:GetChildren()) do
  5942. if v:IsA("WedgePart") then
  5943. v.BrickColor = BrickColor.new("Cyan")
  5944. end
  5945. end
  5946.  
  5947. for i,v in pairs (rarm.RightArm:GetChildren()) do
  5948. if v:IsA("Part") then
  5949. v.BrickColor=BrickColor.new('Cyan')
  5950. end
  5951. end
  5952.  
  5953.  
  5954.  
  5955.  
  5956.  
  5957. for i,v in pairs (rleg.RightLeg:GetChildren()) do
  5958. if v:IsA("WedgePart") then
  5959. v.BrickColor = BrickColor.new("Cyan")
  5960. end
  5961. end
  5962.  
  5963. for i,v in pairs (rleg.RightLeg:GetChildren()) do
  5964. if v:IsA("Part") then
  5965. v.BrickColor=BrickColor.new('Cyan')
  5966. end
  5967. end
  5968.  
  5969.  
  5970.  
  5971.  
  5972.  
  5973. for i,v in pairs (lleg.LeftLeg:GetChildren()) do
  5974. if v:IsA("WedgePart") then
  5975. v.BrickColor = BrickColor.new("Cyan")
  5976. end
  5977. end
  5978.  
  5979. for i,v in pairs (lleg.LeftLeg:GetChildren()) do
  5980. if v:IsA("Part") then
  5981. v.BrickColor=BrickColor.new('Cyan')
  5982. end
  5983. end
  5984.  
  5985.  
  5986.  
  5987.  
  5988.  
  5989. while holy == true do -- Emit the Lightning effects randomly
  5990. wait()
  5991. local Body1 = BodyParts[math.random(#BodyParts)]
  5992. local Body2 = BodyParts[math.random(#BodyParts)]
  5993. local Pos1 = Vector3.new(
  5994. math.random(-Bounding[Body1.Name].X, Bounding[Body1.Name].X)/10,
  5995. math.random(-Bounding[Body1.Name].Y, Bounding[Body1.Name].Y)/10,
  5996. math.random(-Bounding[Body1.Name].Z, Bounding[Body1.Name].Z)/10
  5997. )
  5998. local Pos2 = Vector3.new(
  5999. math.random(-Bounding[Body2.Name].X, Bounding[Body2.Name].X)/10,
  6000. math.random(-Bounding[Body2.Name].Y, Bounding[Body2.Name].Y)/10,
  6001. math.random(-Bounding[Body2.Name].Z, Bounding[Body2.Name].Z)/10
  6002. )
  6003. local SPos1 = Body1.Position + Pos1
  6004. local SPos2 = Body2.Position + Pos2
  6005. Lightning(SPos1, SPos2, 4, 3, "Cyan", .3, .56)
  6006. end
  6007.  
  6008.  
  6009. pt2.BrickColor=BrickColor.new('Cyan')
  6010. else
  6011.  
  6012.  
  6013.  
  6014. for i,v in pairs (char.Wings:GetChildren()) do
  6015. unholy = true
  6016. if v:IsA("Part") then
  6017. v.BrickColor = BrickColor.new("Royal purple")
  6018. end
  6019. end
  6020. for i,v in pairs (char.Claw:GetChildren()) do
  6021. if v:IsA("WedgePart") then
  6022. v.BrickColor = BrickColor.new("Royal purple")
  6023. end
  6024. end
  6025.  
  6026. for i,v in pairs (larm.LeftArm:GetChildren()) do
  6027. if v:IsA("WedgePart") then
  6028. v.BrickColor = BrickColor.new("Royal purple")
  6029. end
  6030. end
  6031.  
  6032. for i,v in pairs (larm.LeftArm:GetChildren()) do
  6033. if v:IsA("Part") then
  6034. v.BrickColor=BrickColor.new("Royal purple")
  6035. end
  6036. end
  6037.  
  6038.  
  6039.  
  6040.  
  6041.  
  6042. for i,v in pairs (rarm.RightArm:GetChildren()) do
  6043. if v:IsA("WedgePart") then
  6044. v.BrickColor = BrickColor.new("Royal purple")
  6045. end
  6046. end
  6047.  
  6048. for i,v in pairs (rarm.RightArm:GetChildren()) do
  6049. if v:IsA("Part") then
  6050. v.BrickColor=BrickColor.new("Royal purple")
  6051. end
  6052. end
  6053.  
  6054.  
  6055.  
  6056.  
  6057.  
  6058. for i,v in pairs (rleg.RightLeg:GetChildren()) do
  6059. if v:IsA("WedgePart") then
  6060. v.BrickColor = BrickColor.new("Royal purple")
  6061. end
  6062. end
  6063.  
  6064. for i,v in pairs (rleg.RightLeg:GetChildren()) do
  6065. if v:IsA("Part") then
  6066. v.BrickColor=BrickColor.new("Royal purple")
  6067. end
  6068. end
  6069.  
  6070.  
  6071.  
  6072.  
  6073.  
  6074. for i,v in pairs (lleg.LeftLeg:GetChildren()) do
  6075. if v:IsA("WedgePart") then
  6076. v.BrickColor = BrickColor.new("Royal purple")
  6077. end
  6078. end
  6079.  
  6080. for i,v in pairs (lleg.LeftLeg:GetChildren()) do
  6081. if v:IsA("Part") then
  6082. v.BrickColor=BrickColor.new("Royal purple")
  6083. end
  6084. end
  6085.  
  6086. for i,v in pairs (char.Hair:GetChildren()) do
  6087. if v:IsA("Part") then
  6088. v.BrickColor = BrickColor.new("Royal purple")
  6089. end
  6090. end
  6091. for i,v in pairs (char.Claw:GetChildren()) do
  6092. if v:IsA("WedgePart") then
  6093. v.BrickColor = BrickColor.new("Royal purple")
  6094. end
  6095. end
  6096.  
  6097. for i,v in pairs (char.Claw:GetChildren()) do
  6098. if v:IsA("Part") then
  6099. v.BrickColor = BrickColor.new("Royal purple")
  6100. end
  6101. end
  6102.  
  6103.  
  6104. while holy ~= true do-- Emit the Lightning effects randomly
  6105. wait()
  6106. local Body1 = BodyParts[math.random(#BodyParts)]
  6107. local Body2 = BodyParts[math.random(#BodyParts)]
  6108. local Pos1 = Vector3.new(
  6109. math.random(-Bounding[Body1.Name].X, Bounding[Body1.Name].X)/10,
  6110. math.random(-Bounding[Body1.Name].Y, Bounding[Body1.Name].Y)/10,
  6111. math.random(-Bounding[Body1.Name].Z, Bounding[Body1.Name].Z)/10
  6112. )
  6113. local Pos2 = Vector3.new(
  6114. math.random(-Bounding[Body2.Name].X, Bounding[Body2.Name].X)/10,
  6115. math.random(-Bounding[Body2.Name].Y, Bounding[Body2.Name].Y)/10,
  6116. math.random(-Bounding[Body2.Name].Z, Bounding[Body2.Name].Z)/10
  6117. )
  6118. local SPos1 = Body1.Position + Pos1
  6119. local SPos2 = Body2.Position + Pos2
  6120. Lightning(SPos1, SPos2, 4, 3, "Royal purple", .3, .56)
  6121. end
  6122. unholy = false
  6123. pt2.BrickColor = BrickColor.new("Royal purple")
  6124. end
  6125.  
  6126.  
  6127.  
  6128.  
  6129.  
  6130. msh2=msh:clone()
  6131. msh2.Parent=pt2
  6132. msh2.Scale=Vector3.new(10,5,10)
  6133.  
  6134. custommath={25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,-25,-26,-27,-28,-29,-30,-31,-32,-33,-34,-35,-36,-37,-38,-39,-40,-41,-42,-43,-44,-45,-46,-47,-48,-49,-50,-51,-52,-53,-54,-55,-56,-57,-58,-59,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-81,-82,-83,-84,-85,-86,-87,-88,-89,-90,-91,-92,-93,-94,-95,-96,-97,-98,-99,-100}
  6135.  
  6136. bl = Instance.new("Part", char)
  6137. bl.Locked = true
  6138. bl.Name = "Shell"
  6139.  
  6140. if holy == true then
  6141. bl.BrickColor = BrickColor.new("Cyan")
  6142. else
  6143. bl.BrickColor = BrickColor.new("Really black")
  6144. end
  6145.  
  6146. bl.Anchored = true
  6147. bl.Material = "Neon"
  6148. bl.CanCollide = false
  6149. bl.Transparency = 0
  6150. bl.Reflectance = 0
  6151. bl.BottomSurface = 0
  6152. bl.TopSurface = 0
  6153. bl.Shape = 0
  6154. blm = Instance.new("SpecialMesh",bl)
  6155. blm.MeshType = "Sphere"
  6156. blm.Scale = Vector3.new(1,1,1)
  6157.  
  6158. so("http://www.roblox.com/asset/?id=340722848",hed,2,1.2)
  6159. so("http://www.roblox.com/asset/?id=340722848",torso,0.5,0.8)
  6160. so("http://roblox.com/asset/?id=168586621",torso,1,0.5)
  6161.  
  6162.  
  6163.  
  6164.  
  6165. coroutine.resume(coroutine.create(function()
  6166. for i=1, math.huge, 4 do
  6167. if Charging == true then
  6168. rs:wait()
  6169. bl.CFrame = root.CFrame * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10))
  6170. blm.Scale = blm.Scale + Vector3.new(0.5, 0.5, 0.5)
  6171. bl.Transparency = bl.Transparency + 0.05
  6172. pt.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2),0)
  6173. pt2.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2),0)
  6174. msh.Scale = msh.Scale + Vector3.new(0.05,0,0.05)
  6175. msh2.Scale = msh2.Scale + Vector3.new(0.05,0,0.05)
  6176. elseif Charging == false then break
  6177. end
  6178. end
  6179. end))
  6180.  
  6181.  
  6182. repeat
  6183. local p = Instance.new('Part',torso)
  6184. p.formFactor = 'Custom'
  6185. p.Size = Vector3.new(1,1,1)
  6186.  
  6187. if holy == true then
  6188. p.BrickColor = BrickColor.new("Cyan")
  6189. else
  6190. p.BrickColor = BrickColor.new("Really black")
  6191. end
  6192.  
  6193. p.CanCollide = false
  6194. p.Transparency = 0
  6195. p.Anchored = true
  6196. p.Locked=true
  6197. p.Material = "Neon"
  6198. s = math.random(1,40)/10
  6199. local m = Instance.new("BlockMesh",p)
  6200. m.Scale = Vector3.new(s,s,s)
  6201. p.CFrame = torso.CFrame*CFrame.new(custommath[math.random(1,#custommath)]/10,-math.random(5,7),custommath[math.random(1,#custommath)]/10)*CFrame.Angles(math.random(),math.random(),math.random())
  6202. Spawn(function()
  6203. while rs:wait() do
  6204. if Charging == true then
  6205. rarm.Weld.C0 = CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(math.random(-36,-20)),math.rad(math.random(-30,-20)),math.rad(math.random(30,50)))
  6206. larm.Weld.C0 = CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(math.random(-36,-20)),math.rad(math.random(20,30)),math.rad(math.random(-50,-30)))
  6207. hed.Weld.C0 = CFrame.new(0,1.5,.1)*CFrame.Angles(math.rad(math.random(26,34)),math.rad(math.random(-5,5)),math.rad(0))
  6208. torso.Weld.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(10), math.rad(math.random(-4,4)), math.rad(0))
  6209. lleg.Weld.C0 = CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(math.random(-10,-6)), math.rad(math.random(10,20)), math.rad(math.random(-20,-10)))
  6210. rleg.Weld.C0 = CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(math.random(-10,-6)), math.rad(math.random(-20,-10)), math.rad(math.random(10,20)))
  6211. elseif Charging == false then break
  6212. end
  6213. end
  6214. end)
  6215. Spawn(function()
  6216. while rs:wait() do
  6217. if p.Transparency >= 1 then p:Destroy() break end
  6218. p.CFrame = p.CFrame*CFrame.Angles(math.rad(2),math.rad(2),math.rad(2))+Vector3.new(0,0.2,0)
  6219. p.Transparency = p.Transparency+0.01
  6220. end
  6221. end)
  6222. wait(.3)
  6223.  
  6224.  
  6225. until Charging == false
  6226. end
  6227. end
  6228. end
  6229. end)
  6230.  
  6231. ----------------------------------------------------
  6232. mouse.KeyUp:connect(function(key)
  6233. if key == "h" then
  6234. if Charging == true and chargewait == true then
  6235. chargewait = false
  6236. wait(1)
  6237. Charging = false
  6238.  
  6239. --[[for i,v in pairs (torso:GetChildren()) do
  6240. if v:IsA("Sound") then
  6241. v:Destroy()
  6242. end
  6243. end]]
  6244.  
  6245.  
  6246. --so("http://roblox.com/asset/?id=160867463",torso,1,0.7)
  6247.  
  6248. pt:Destroy()
  6249. pt2:Destroy()
  6250. if Debounces.CanAttack == false then
  6251. Debounces.CanAttack = true
  6252. Debounces.NoIdl = false
  6253. Debounces.on = false
  6254. Debounces.grab = false
  6255.  
  6256. end
  6257. end
  6258. end
  6259. end)
  6260. --[[mouse.KeyDown:connect(function(key)
  6261. if key == "y" then
  6262. if Debounces.CanAttack == true then
  6263. Debounces.CanAttack = false
  6264. Debounces.NoIdl = true
  6265. Debounces.on = true
  6266. local shell = Instance.new("Part",torso)
  6267. shell.BrickColor = BrickColor.new("Royal purple")
  6268. shell.Anchored = false
  6269. shell.CanCollide = false
  6270. shell.Locked = true
  6271. shell.TopSurface = "SmoothNoOutlines"
  6272. shell.BottomSurface = "SmoothNoOutlines"
  6273. shell.Size = Vector3.new(1.2,1.2,1.2)
  6274. shell.FormFactor = 3
  6275. local shellm = Instance.new("SpecialMesh",shell)
  6276. shellm.MeshType = "Sphere"
  6277. shellm.Scale = Vector3.new(1.2,1.2,1.2)
  6278. Omega = function()
  6279. local X = Instance.new("Part",char)
  6280. local O = Instance.new("ObjectValue",X)
  6281. O.Name = "creator"
  6282. X.Locked = true
  6283. X.Name = "Shell"
  6284. X.Anchored = false
  6285. X.CanCollide = false
  6286. X.Transparency = 0.5
  6287. X.Reflectance = 0
  6288. X.BottomSurface = 0
  6289. X.TopSurface = 0
  6290. X.Shape = 0
  6291. local V = Instance.new("ObjectValue",X)
  6292. V.Value = char
  6293. V.Name = "creator"
  6294. X.BrickColor = BrickColor.new("Royal purple")
  6295. X.Size = Vector3.new(40,40,40)
  6296. --X.Material = "Neon"
  6297. local Z = Instance.new("SpecialMesh",X)
  6298. Z.MeshType = "Sphere"
  6299. Z.Scale = Vector3.new(0.2,0.2,0.2)
  6300. X.CFrame = rarm.CFrame*CFrame.new(0,-6,0)
  6301. local bv = Instance.new("BodyVelocity",X)
  6302. bv.maxForce = Vector3.new(99999,99999,99999)
  6303. X.CFrame = CFrame.new(X.Position,root.CFrame.lookVector*10)
  6304. bv.velocity = root.CFrame.lookVector*10
  6305. Explode = X.Touched:connect(function(hit)
  6306. if hit ~= char and hit.Name ~= "Shell" and hit ~= X and hit:IsA("Part") or hit:IsA("BasePart}") then
  6307. local cf = X.CFrame
  6308. bv:Destroy()
  6309. X.Anchored = true
  6310. Z:Remove()
  6311. Explode:disconnect()
  6312. X.Size = Vector3.new(3,3,3)
  6313. X.Touched:connect(function(hit) end)
  6314. X.CanCollide = false
  6315. for i,v in pairs(FindNearestTorso(X.CFrame.p,200))do
  6316. if v:FindFirstChild('Humanoid') then
  6317. v.Humanoid:TakeDamage(math.random(80,120))
  6318. end
  6319. end
  6320. for i = 1, (40) do rs:wait()
  6321. X.Transparency = X.Transparency + (1/40)
  6322. X.Size = X.Size + Vector3.new(1,1,1)
  6323. X.CFrame = root.CFrame * CFrame.new(0,0,-10)
  6324. end
  6325. X:Destroy()
  6326. end
  6327. end)
  6328. end
  6329. for i = 1,200 do
  6330. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6331. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(170)), 0.03)
  6332. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)
  6333. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  6334. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  6335. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6336. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6337. if Debounces.on == false then break end
  6338. rs:wait()
  6339. end
  6340. for i = 1,30 do
  6341. shell.CFrame = torso.CFrame * CFrame.new(0,8,0)
  6342. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(170)), 0.4)
  6343. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-170)), 0.4)
  6344. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  6345. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  6346. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6347. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6348. if Debounces.on == false then break end
  6349. rs:wait()
  6350. end
  6351. for i = 1,40 do
  6352. shell.CFrame = torso.CFrame * CFrame.new(0,20,0)
  6353. shell.Size = shell.Size + Vector3.new(1,1,1)
  6354. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(100)), 0.4)
  6355. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-100)), 0.4)
  6356. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  6357. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  6358. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6359. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6360. if Debounces.on == false then break end
  6361. rs:wait()
  6362. end
  6363. for i = 1,40 do
  6364. shell.CFrame = torso.CFrame * CFrame.new(0,0,-30)
  6365. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.6,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(20)), 0.4)
  6366. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.6,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.4)
  6367. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  6368. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  6369. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6370. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6371. if Debounces.on == false then break end
  6372. rs:wait()
  6373. end
  6374. for i = 1,60 do
  6375. shell.CFrame = torso.CFrame * CFrame.new(0,0,-60)
  6376. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.64,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-30)), 0.4)
  6377. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.64,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.4)
  6378. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  6379. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  6380. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6381. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6382. if Debounces.on == false then break end
  6383. rs:wait()
  6384. end
  6385. for i = 1,60 do
  6386. shell.CFrame = torso.CFrame * CFrame.new(0,0,-60)
  6387. shell.Size = shell.Size + Vector3.new(1,1,1)
  6388. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.64,0)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(120)), 0.4)
  6389. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.64,0)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(-120)), 0.4)
  6390. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  6391. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  6392. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6393. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  6394. if Debounces.on == false then break end
  6395. rs:wait()
  6396. end
  6397. if Debounces.CanAttack == false then
  6398. Debounces.CanAttack = true
  6399. Debounces.NoIdl = false
  6400. Debounces.on = false
  6401. end
  6402. end
  6403. end
  6404. end)]]--
  6405. ----------------------------------------------------
  6406. Charging = false
  6407. mouse.KeyDown:connect(function(key)
  6408. if key == "r" then
  6409. if Charging == false then
  6410. Charging = true
  6411. if Debounces.CanAttack == true then
  6412. Debounces.CanAttack = false
  6413. Debounces.NoIdl = true
  6414. Debounces.on = true
  6415. for i = 1,20 do
  6416. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-40)), 0.2)
  6417. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(40)), 0.2)
  6418. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  6419. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  6420. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2)
  6421. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2)
  6422. if Debounces.on == false then break end
  6423. rs:wait()
  6424. end
  6425. --[[for i = 1,20 do
  6426. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(-20),math.rad(50)), 0.4)
  6427. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(20),math.rad(-50)), 0.4)
  6428. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,.1)*CFrame.Angles(math.rad(34),math.rad(0),0), 0.4)
  6429. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(0)), 0.4)
  6430. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(-10)), 0.4)
  6431. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(10)), 0.4)
  6432. if Debounces.on == false then break end
  6433. rs:wait()
  6434. end]]--
  6435. pt=Instance.new('Part',torso)
  6436. pt.Anchored=true
  6437. pt.CanCollide=false
  6438. pt.Locked = true
  6439. pt.FormFactor='Custom'
  6440. pt.Size=Vector3.new(1,1,1)
  6441. pt.CFrame=root.CFrame*CFrame.new(0,-1,0)
  6442. pt.Transparency=.6
  6443. pt.BrickColor=BrickColor.new('Really black')
  6444. msh=Instance.new('SpecialMesh',pt)
  6445. msh.MeshId='http://www.roblox.com/asset/?id=9982590'
  6446. msh.Scale=Vector3.new(8,4,8)
  6447. pt2=pt:clone()
  6448. pt2.Parent = torso
  6449. pt2.CFrame=root.CFrame*CFrame.new(0,-1,0)
  6450. pt2.BrickColor=BrickColor.new("Royal purple")
  6451. msh2=msh:clone()
  6452. msh2.Parent=pt2
  6453. msh2.Scale=Vector3.new(10,5,10)
  6454.  
  6455. custommath={25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,-25,-26,-27,-28,-29,-30,-31,-32,-33,-34,-35,-36,-37,-38,-39,-40,-41,-42,-43,-44,-45,-46,-47,-48,-49,-50,-51,-52,-53,-54,-55,-56,-57,-58,-59,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-81,-82,-83,-84,-85,-86,-87,-88,-89,-90,-91,-92,-93,-94,-95,-96,-97,-98,-99,-100}
  6456.  
  6457. bl = Instance.new("Part", char)
  6458. bl.Locked = true
  6459. bl.Name = "Shell"
  6460. bl.BrickColor = BrickColor.new("Really black")
  6461. bl.Anchored = true
  6462. bl.CanCollide = false
  6463. bl.Transparency = 0
  6464. bl.Reflectance = 0
  6465. bl.BottomSurface = 0
  6466. bl.TopSurface = 0
  6467. bl.Shape = 0
  6468. blm = Instance.new("SpecialMesh",bl)
  6469. blm.MeshType = "Sphere"
  6470. blm.Scale = Vector3.new(1,1,1)
  6471. blm.MeshId = "rbxassetid://9982590"
  6472.  
  6473. coroutine.resume(coroutine.create(function()
  6474. for i=1, math.huge, 4 do
  6475. if Charging == true then
  6476. rs:wait()
  6477. bl.CFrame = root.CFrame * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10))
  6478. blm.Scale = blm.Scale + Vector3.new(0.1, 0.1, 0.1)
  6479. bl.Transparency = bl.Transparency + 0.005
  6480. pt.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2),0)
  6481. pt2.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2),0)
  6482. msh.Scale = msh.Scale + Vector3.new(0.05,0,0.05)
  6483. msh2.Scale = msh2.Scale + Vector3.new(0.05,0,0.05)
  6484. elseif Charging == false then break
  6485. end
  6486. end
  6487. end))
  6488.  
  6489. repeat
  6490. local p = Instance.new('Part',torso)
  6491. p.formFactor = 'Custom'
  6492. p.Size = Vector3.new(1,1,1)
  6493. p.BrickColor = workspace.Base.BrickColor
  6494. p.CanCollide = false
  6495. p.Transparency = 0
  6496. p.Anchored = true
  6497. p.Locked=true
  6498. p.Material = workspace.Base.Material
  6499. s = math.random(1,40)/10
  6500. local m = Instance.new("BlockMesh",p)
  6501. m.Scale = Vector3.new(s,s,s)
  6502. p.CFrame = torso.CFrame*CFrame.new(custommath[math.random(1,#custommath)]/10,-math.random(5,7),custommath[math.random(1,#custommath)]/10)*CFrame.Angles(math.random(),math.random(),math.random())
  6503. --[[coroutine.wrap(function()
  6504. wait(2)
  6505. while Charging == true do
  6506. wait(2)
  6507. GroundWave1()
  6508. wait(2)
  6509. end
  6510. end)()]]--
  6511. Spawn(function()
  6512. while rs:wait() do
  6513. if Charging == true then
  6514. rarm.Weld.C0 = CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(math.random(-36,-20)),math.rad(math.random(-30,-20)),math.rad(math.random(30,50)))
  6515. larm.Weld.C0 = CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(math.random(-36,-20)),math.rad(math.random(20,30)),math.rad(math.random(-50,-30)))
  6516. hed.Weld.C0 = CFrame.new(0,1.5,.1)*CFrame.Angles(math.rad(math.random(26,34)),math.rad(math.random(-5,5)),math.rad(0))
  6517. torso.Weld.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(10), math.rad(math.random(-4,4)), math.rad(0))
  6518. lleg.Weld.C0 = CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(math.random(-10,-6)), math.rad(math.random(10,20)), math.rad(math.random(-20,-10)))
  6519. rleg.Weld.C0 = CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(math.random(-10,-6)), math.rad(math.random(-20,-10)), math.rad(math.random(10,20)))
  6520. elseif Charging == false then break
  6521. end
  6522. end
  6523. end)
  6524. Spawn(function()
  6525. while rs:wait() do
  6526. if p.Transparency >= 1 then p:Destroy() break end
  6527. p.CFrame = p.CFrame*CFrame.Angles(math.rad(2),math.rad(2),math.rad(2))+Vector3.new(0,0.2,0)
  6528. p.Transparency = p.Transparency+0.01
  6529. end
  6530. end)
  6531. wait(.3)
  6532. until Charging == false
  6533. end
  6534. end
  6535. end
  6536. end)
  6537. ----------------------------------------------------
  6538. mouse.KeyUp:connect(function(key)
  6539. if key == "r" then
  6540. if Charging == true then
  6541. Charging = false
  6542. pt:Destroy()
  6543. pt2:Destroy()
  6544. bl:Destroy()
  6545. if Debounces.CanAttack == false then
  6546. Debounces.CanAttack = true
  6547. Debounces.NoIdl = false
  6548. Debounces.on = false
  6549. end
  6550. end
  6551. end
  6552. end)
  6553. ----------------------------------------------------
  6554. mouse.KeyDown:connect(function(key)
  6555. if key == "g" then
  6556. if Debounces.CanAttack == true then
  6557. Debounces.CanAttack = false
  6558. Debounces.NoIdl = true
  6559. Debounces.on = true
  6560. local shell = Instance.new("Part",torso)
  6561. shell.BrickColor = BrickColor.new("Royal purple")
  6562. shell.Anchored = true
  6563. shell.CanCollide = false
  6564. shell.Locked = true
  6565. shell.TopSurface = "SmoothNoOutlines"
  6566. shell.BottomSurface = "SmoothNoOutlines"
  6567. shell.Size = Vector3.new(1,1,1)
  6568. shellm = Instance.new("SpecialMesh",shell)
  6569. shellm.MeshType = "Sphere"
  6570. shellm.Scale = Vector3.new(1,1,1)
  6571. local shell2 = Instance.new("Part",torso)
  6572. shell2.BrickColor = BrickColor.new("Royal purple")
  6573. shell2.Anchored = true
  6574. shell2.CanCollide = false
  6575. shell2.Locked = true
  6576. shell2.TopSurface = "SmoothNoOutlines"
  6577. shell2.BottomSurface = "SmoothNoOutlines"
  6578. shell2.Size = Vector3.new(1,1,1)
  6579. shellm2 = Instance.new("SpecialMesh",shell2)
  6580. shellm2.MeshType = "Sphere"
  6581. shellm2.Scale = Vector3.new(1,1,1)
  6582.  
  6583. function FindNearestTorso(Position,Distance,SinglePlayer)
  6584. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  6585. local List = {}
  6586. for i,v in pairs(workspace:GetChildren())do
  6587. if v:IsA("Model")then
  6588. if v:findFirstChild("Torso")then
  6589. if v ~= char then
  6590. if(v.Torso.Position -Position).magnitude <= Distance then
  6591. table.insert(List,v)
  6592. end
  6593. end
  6594. end
  6595. end
  6596. end
  6597. return List
  6598. end
  6599.  
  6600. Shell = function()
  6601. local X = Instance.new("Part",char)
  6602. local O = Instance.new("ObjectValue",X)
  6603. O.Name = "creator"
  6604. X.Locked = true
  6605. X.Name = "Shell"
  6606. X.Anchored = false
  6607. X.CanCollide = false
  6608. X.Transparency = 0
  6609. X.Reflectance = 0
  6610. X.BottomSurface = 0
  6611. X.TopSurface = 0
  6612. X.Shape = 0
  6613. local V = Instance.new("ObjectValue",X)
  6614. V.Value = char
  6615. V.Name = "creator"
  6616. X.BrickColor = BrickColor.new("Royal purple")
  6617. X.Size = Vector3.new(1,1,1)
  6618. --X.Material = "Neon"
  6619. local Z = Instance.new("SpecialMesh",X)
  6620. Z.MeshType = "Sphere"
  6621. Z.Scale = Vector3.new(1,1,1)
  6622. X.CFrame = rarm.CFrame*CFrame.new(0,-6,0)
  6623. local bv = Instance.new("BodyVelocity",X)
  6624. bv.maxForce = Vector3.new(99999,99999,99999)
  6625. X.CFrame = CFrame.new(X.Position,root.CFrame.lookVector*10)
  6626. bv.velocity = root.CFrame.lookVector*65
  6627. Explode = X.Touched:connect(function(hit)
  6628. if hit ~= char and hit.Name ~= "Shell" and hit:IsA("Part") or hit:IsA("BasePart}") then
  6629. local cf = X.CFrame
  6630. bv:Destroy()
  6631. X.Anchored = true
  6632. Z:Remove()
  6633. Explode:disconnect()
  6634. X.Size = Vector3.new(3,3,3)
  6635. X.Touched:connect(function(hit) end)
  6636. X.CanCollide = false
  6637. for i,v in pairs(FindNearestTorso(X.CFrame.p,40))do
  6638. if v:FindFirstChild('Humanoid') then
  6639. v.Humanoid:TakeDamage(math.random(6,12))
  6640. end
  6641. end
  6642. for i = 1, (40) do rs:wait()
  6643. X.Transparency = X.Transparency + (1/40)
  6644. X.Size = X.Size + Vector3.new(1,1,1)
  6645. X.CFrame = cf
  6646. end
  6647. X:Destroy()
  6648. end
  6649. end)
  6650. end
  6651. Shell()
  6652. for i = 1, 10 do
  6653. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6654. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6655. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  6656. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  6657. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.7)
  6658. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.7)
  6659. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-20)), 0.7)
  6660. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(20)), 0.7)
  6661. if Debounces.on == false then break end
  6662. rs:wait()
  6663. end
  6664. Shell()
  6665. shell.Transparency = 1
  6666. for i = 1, 10 do
  6667. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6668. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6669. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  6670. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  6671. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  6672. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  6673. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  6674. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  6675. if Debounces.on == false then break end
  6676. rs:wait()
  6677. end
  6678. Shell()
  6679. shell.Transparency = 0
  6680. shell2.Transparency = 1
  6681. for i = 1, 10 do
  6682. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6683. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6684. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  6685. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  6686. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  6687. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  6688. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  6689. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  6690. if Debounces.on == false then break end
  6691. rs:wait()
  6692. end
  6693. Shell()
  6694. shell2.Transparency = 0
  6695. shell.Transparency = 1
  6696. for i = 1, 10 do
  6697. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6698. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6699. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  6700. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  6701. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  6702. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  6703. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  6704. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  6705. if Debounces.on == false then break end
  6706. rs:wait()
  6707. end
  6708. Shell()
  6709. shell.Transparency = 0
  6710. shell2.Transparency = 1
  6711. for i = 1, 10 do
  6712. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6713. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6714. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  6715. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  6716. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  6717. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  6718. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  6719. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  6720. if Debounces.on == false then break end
  6721. rs:wait()
  6722. end
  6723. Shell()
  6724. shell2.Transparency = 0
  6725. shell.Transparency = 1
  6726. for i = 1, 10 do
  6727. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6728. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6729. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  6730. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  6731. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  6732. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  6733. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  6734. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  6735. if Debounces.on == false then break end
  6736. rs:wait()
  6737. end
  6738. Shell()
  6739. shell.Transparency = 0
  6740. shell2.Transparency = 1
  6741. for i = 1, 10 do
  6742. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6743. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6744. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  6745. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.5)
  6746. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  6747. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  6748. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  6749. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  6750. if Debounces.on == false then break end
  6751. rs:wait()
  6752. end
  6753. Shell()
  6754. shell2.Transparency = 0
  6755. shell.Transparency = 1
  6756. for i = 1, 10 do
  6757. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6758. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6759. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  6760. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  6761. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  6762. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  6763. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  6764. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  6765. if Debounces.on == false then break end
  6766. rs:wait()
  6767. end
  6768. Shell()
  6769. shell.Transparency = 0
  6770. shell2.Transparency = 1
  6771. for i = 1, 10 do
  6772. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6773. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6774. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  6775. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  6776. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  6777. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  6778. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  6779. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  6780. if Debounces.on == false then break end
  6781. rs:wait()
  6782. end
  6783. Shell()
  6784. shell2.Transparency = 0
  6785. shell.Transparency = 1
  6786. for i = 1, 10 do
  6787. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6788. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6789. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  6790. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  6791. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  6792. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  6793. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  6794. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  6795. if Debounces.on == false then break end
  6796. rs:wait()
  6797. end
  6798. Shell()
  6799. shell.Transparency = 0
  6800. shell2.Transparency = 1
  6801. for i = 1, 10 do
  6802. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6803. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6804. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  6805. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  6806. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  6807. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  6808. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  6809. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  6810. if Debounces.on == false then break end
  6811. rs:wait()
  6812. end
  6813. Shell()
  6814. shell2.Transparency = 0
  6815. shell.Transparency = 1
  6816. for i = 1, 10 do
  6817. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6818. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6819. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  6820. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  6821. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  6822. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  6823. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  6824. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  6825. if Debounces.on == false then break end
  6826. rs:wait()
  6827. end
  6828. Shell()
  6829. shell.Transparency = 0
  6830. shell2.Transparency = 1
  6831. for i = 1, 10 do
  6832. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  6833. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  6834. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  6835. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  6836. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  6837. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  6838. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  6839. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  6840. if Debounces.on == false then break end
  6841. rs:wait()
  6842. end
  6843. shell.Transparency = 1
  6844. if Debounces.CanAttack == false then
  6845. Debounces.CanAttack = true
  6846. Debounces.NoIdl = false
  6847. Debounces.on = false
  6848. end
  6849. end
  6850. end
  6851. end)
  6852. ----------------------------------------------------
  6853. Search = false
  6854. mouse.KeyDown:connect(function(key)
  6855. if key == "n" then
  6856. if Search == false then
  6857. Search = true
  6858. for i,v in pairs(game.Players:getPlayers()) do
  6859. if v.Name~=char.Name then
  6860. for j,k in pairs(v.Character:GetChildren()) do
  6861. if k:IsA("BasePart") and k.Transparency >= 1 then
  6862. bawx=Instance.new("SelectionBox",cam)
  6863. bawx.Color = BrickColor.new("Bright red")
  6864. bawx.Transparency = .5
  6865. bawx.Adornee = k
  6866. end
  6867. end
  6868. end
  6869. end
  6870. elseif Search == true then
  6871. Search = false
  6872. for i, v in pairs(cam:GetChildren()) do
  6873. if v:IsA("SelectionBox") then
  6874. v:Destroy()
  6875. end
  6876. end
  6877. end
  6878. end
  6879. end)
  6880. ----------------------------------------------------
  6881. Grab = false
  6882. mouse.KeyDown:connect(function(key)
  6883. if key == "z" then
  6884. Debounces.on = true
  6885. Debounces.NoIdl = true
  6886. Debounces.ks = true
  6887. if Grab == false then
  6888. gp = nil
  6889. for i = 1, 20 do
  6890. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.2)
  6891. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.2)
  6892. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  6893. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  6894. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(30), math.rad(-20)), 0.2)
  6895. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-15), math.rad(20)), 0.2)
  6896. if Debounces.on == false then break end
  6897. rs:wait()
  6898. end
  6899. con1=larm.Touched:connect(function(hit) -- this is grab
  6900. ht = hit.Parent
  6901. hum1=ht:FindFirstChild('Humanoid')
  6902. if hum1 ~= nil then
  6903. if Debounces.ks==true then
  6904. z = Instance.new("Sound",hed)
  6905. z.SoundId = "rbxassetid://169380525"
  6906. z.Volume = 1
  6907. z:Play()
  6908. Debounces.ks=false
  6909. end
  6910. hum1.PlatformStand=true
  6911. gp = ht
  6912. Grab = true
  6913. asd=weld5(root,ht:FindFirstChild("Torso"),CFrame.new(0,0,-2.4),CFrame.new(0,0,0))
  6914. asd.Parent = larm
  6915. asd.Name = "asd"
  6916. asd.C0=asd.C0*CFrame.Angles(math.rad(0),math.rad(180),0)
  6917. --[[elseif hum1 == nil then
  6918. con1:disconnect()
  6919. wait() return]]--
  6920. end
  6921. end)
  6922. for i = 1, 20 do
  6923. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.2)
  6924. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.2)
  6925. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  6926. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  6927. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.2)
  6928. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.2)
  6929. if Debounces.on == false then break end
  6930. rs:wait()
  6931. end
  6932. if hum1 == nil then
  6933. Debounces.on = false
  6934. Debounces.NoIdl = false
  6935. end
  6936. con1:disconnect()
  6937. elseif Grab == true then
  6938. Grab = false
  6939. Punch()
  6940. z = Instance.new("Sound",hed)
  6941. z.SoundId = "rbxassetid://169380525"
  6942. z.Pitch = ptz[math.random(1,#ptz)]
  6943. z.Volume = 1
  6944. z:Play()
  6945. for i = 1, 10 do
  6946. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  6947. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  6948. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  6949. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  6950. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  6951. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  6952. if Debounces.on == false then break end
  6953. rs:wait()
  6954. end
  6955. Punch()
  6956. z = Instance.new("Sound",hed)
  6957. z.SoundId = "rbxassetid://169380525"
  6958. z.Pitch = ptz[math.random(1,#ptz)]
  6959. z.Volume = 1
  6960. z:Play()
  6961. for i = 1, 10 do
  6962. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  6963. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  6964. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  6965. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  6966. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  6967. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  6968. if Debounces.on == false then break end
  6969. rs:wait()
  6970. end
  6971. Punch()
  6972. z = Instance.new("Sound",hed)
  6973. z.SoundId = "rbxassetid://169380525"
  6974. z.Pitch = ptz[math.random(1,#ptz)]
  6975. z.Volume = 1
  6976. z:Play()
  6977. for i = 1, 10 do
  6978. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  6979. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  6980. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  6981. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  6982. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  6983. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  6984. if Debounces.on == false then break end
  6985. rs:wait()
  6986. end
  6987. Punch()
  6988. z = Instance.new("Sound",hed)
  6989. z.SoundId = "rbxassetid://169380525"
  6990. z.Pitch = ptz[math.random(1,#ptz)]
  6991. z.Volume = 1
  6992. z:Play()
  6993. for i = 1, 10 do
  6994. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  6995. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  6996. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  6997. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  6998. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  6999. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7000. if Debounces.on == false then break end
  7001. rs:wait()
  7002. end
  7003. Punch()
  7004. z = Instance.new("Sound",hed)
  7005. z.SoundId = "rbxassetid://169380525"
  7006. z.Pitch = ptz[math.random(1,#ptz)]
  7007. z.Volume = 1
  7008. z:Play()
  7009. for i = 1, 10 do
  7010. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  7011. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  7012. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  7013. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  7014. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7015. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7016. if Debounces.on == false then break end
  7017. rs:wait()
  7018. end
  7019. Punch()
  7020. z = Instance.new("Sound",hed)
  7021. z.SoundId = "rbxassetid://169380525"
  7022. z.Pitch = ptz[math.random(1,#ptz)]
  7023. z.Volume = 1
  7024. z:Play()
  7025. for i = 1, 10 do
  7026. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  7027. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  7028. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  7029. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  7030. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7031. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7032. if Debounces.on == false then break end
  7033. rs:wait()
  7034. end
  7035. Punch()
  7036. z = Instance.new("Sound",hed)
  7037. z.SoundId = "rbxassetid://169380525"
  7038. z.Pitch = ptz[math.random(1,#ptz)]
  7039. z.Volume = 1
  7040. z:Play()
  7041. for i = 1, 10 do
  7042. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  7043. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  7044. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  7045. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  7046. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7047. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7048. if Debounces.on == false then break end
  7049. rs:wait()
  7050. end
  7051. Punch()
  7052. z = Instance.new("Sound",hed)
  7053. z.SoundId = "rbxassetid://169380525"
  7054. z.Pitch = ptz[math.random(1,#ptz)]
  7055. z.Volume = 1
  7056. z:Play()
  7057. for i = 1, 10 do
  7058. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  7059. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  7060. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  7061. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  7062. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7063. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7064. if Debounces.on == false then break end
  7065. rs:wait()
  7066. end
  7067. Punch()
  7068. z = Instance.new("Sound",hed)
  7069. z.SoundId = "rbxassetid://169380525"
  7070. z.Pitch = ptz[math.random(1,#ptz)]
  7071. z.Volume = 1
  7072. z:Play()
  7073. for i = 1, 10 do
  7074. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  7075. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  7076. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  7077. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  7078. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7079. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7080. if Debounces.on == false then break end
  7081. rs:wait()
  7082. end
  7083. Punch()
  7084. z = Instance.new("Sound",hed)
  7085. z.SoundId = "rbxassetid://169380525"
  7086. z.Pitch = ptz[math.random(1,#ptz)]
  7087. z.Volume = 1
  7088. z:Play()
  7089. for i = 1, 10 do
  7090. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  7091. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  7092. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  7093. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  7094. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7095. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7096. if Debounces.on == false then break end
  7097. rs:wait()
  7098. end
  7099. Punch()
  7100. z = Instance.new("Sound",hed)
  7101. z.SoundId = "rbxassetid://169380525"
  7102. z.Pitch = ptz[math.random(1,#ptz)]
  7103. z.Volume = 1
  7104. z:Play()
  7105. for i = 1, 10 do
  7106. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  7107. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  7108. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  7109. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  7110. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7111. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7112. if Debounces.on == false then break end
  7113. rs:wait()
  7114. end
  7115. Punch()
  7116. z = Instance.new("Sound",hed)
  7117. z.SoundId = "rbxassetid://169380525"
  7118. z.Pitch = ptz[math.random(1,#ptz)]
  7119. z.Volume = 1
  7120. z:Play()
  7121. for i = 1, 10 do
  7122. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  7123. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  7124. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  7125. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  7126. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  7127. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  7128. if Debounces.on == false then break end
  7129. rs:wait()
  7130. end
  7131. con1:disconnect()
  7132. Debounces.on = false
  7133. Debounces.NoIdl = false
  7134. if gp ~= nil then
  7135. gp:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 140
  7136. for i,v in pairs(larm:GetChildren()) do
  7137. if v.Name == "asd" and v:IsA("Weld") then
  7138. v:Remove()
  7139. end
  7140. end
  7141. --[[bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  7142. bv.maxForce = Vector3.new(400000, 400000, 400000)
  7143. bv.P = 125000
  7144. bv.velocity = char.Head.CFrame.lookVector * 200]]--
  7145. hum1=nil
  7146. ht=nil
  7147. Debounces.on = false
  7148. Debounces.NoIdl = false
  7149. elseif ht == nil then wait()
  7150. Grab = false
  7151. Debounces.on = false
  7152. Debounces.NoIdl = false
  7153. end
  7154. end
  7155. end
  7156. end)
  7157. ----------------------------------------------------
  7158. mouse.KeyDown:connect(function(key)
  7159. if string.byte(key) == 52 then
  7160. char.Humanoid.WalkSpeed = 60
  7161. end
  7162. end)
  7163. mouse.KeyUp:connect(function(key)
  7164. if string.byte(key) == 52 then
  7165. char.Humanoid.WalkSpeed = 16
  7166. end
  7167. end)
  7168. -------------------------------
  7169. local animpose = "Idle"
  7170. local lastanimpose = "Idle"
  7171. local sine = 0
  7172. local change = 1
  7173. local val = 0
  7174. local ffing = false
  7175. -------------------------------
  7176. game:GetService("RunService").RenderStepped:connect(function()
  7177. --[[if char.Humanoid.Jump == true then
  7178. jump = true
  7179. else
  7180. jump = false
  7181. end]]
  7182. char.Humanoid.FreeFalling:connect(function(f)
  7183. if f then
  7184. ffing = true
  7185. else
  7186. ffing = false
  7187. end
  7188. end)
  7189. sine = sine + change
  7190. if jumpn == true then
  7191. animpose = "Jumping"
  7192. elseif ffing == true then
  7193. animpose = "Freefalling"
  7194. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  7195. animpose = "Idle"
  7196. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  7197. animpose = "Walking"
  7198. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  7199. animpose = "Running"
  7200. end
  7201. if animpose ~= lastanimpose then
  7202. sine = 0
  7203. if Debounces.NoIdl == false then
  7204. if animpose == "Idle" then
  7205. for i = 1, 2 do
  7206. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
  7207. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.4)
  7208. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  7209. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  7210. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  7211. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  7212. end
  7213. elseif animpose == "Walking" then
  7214. for i = 1, 2 do
  7215. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  7216. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  7217. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  7218. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  7219. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  7220. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  7221. --[[rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  7222. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  7223. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  7224. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  7225. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  7226. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4) ]]
  7227. end
  7228. elseif animpose == "Running" then
  7229. for i = 1, 2 do
  7230. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(-14),math.rad(8+2*math.cos(sine/14))), 0.2)
  7231. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(14),math.rad(-8-2*math.cos(sine/14))), 0.2)
  7232. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-10),0,0), 0.4)
  7233. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-20),0, math.rad(0)), 0.4)
  7234. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(-7)), 0.4)
  7235. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(7)), 0.4)
  7236. wait()
  7237. end
  7238. end
  7239. else
  7240. end
  7241. end
  7242. --[[local HP1 = Instance.new("Part",larm)
  7243. HP1.Size = Vector3.new(-0.25,0.5,0.25)
  7244. HP1.BrickColor = BrickColor.new("Royal purple")
  7245. local HP1W = Instance.new("Weld", HP1)
  7246. HP1W.Part0 = larm
  7247. HP1W.Part1 = HP1
  7248. HP1W.C0 = CFrame.new(-1, .45, 0) ]]
  7249. lastanimpose = animpose
  7250. if Debounces.NoIdl == false then
  7251. if animpose == "Idle" then
  7252. change = 0.5
  7253. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
  7254. --rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,.45,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(180),math.rad(20)), 0.2)
  7255. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,.45+0.05*math.cos(sine/14),0)*CFrame.Angles(math.rad(50),math.rad(-30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  7256. --larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8-2*math.cos(sine/14))), 0.4)
  7257. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(40),0), 0.2)
  7258. --torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  7259. --hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(0),0), 0.2)
  7260. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.1*math.cos(sine/14), 0) * CFrame.Angles(0, math.rad(-40), math.rad(0)), 0.05)
  7261. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8-2*math.cos(sine/14))), 0.4)
  7262. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8+2*math.cos(sine/14))), 0.4)
  7263. elseif animpose == "Walking" then
  7264. change = 1
  7265. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  7266. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  7267. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  7268. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  7269. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  7270. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  7271. elseif animpose == "Running" then
  7272. change = 1
  7273. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1,0.35,.3)*CFrame.Angles(math.rad(-30),math.rad(-14),math.rad(-30+2*math.cos(sine/18))), 0.2)
  7274. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1,0.35,.2)*CFrame.Angles(math.rad(-30),math.rad(14),math.rad(30+2*math.cos(sine/18))), 0.2)
  7275. --larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1,0.35,.2)*CFrame.Angles(math.rad(-30),math.rad(14),math.rad(30+2*math.cos(sine/18))), 0.2)
  7276.  
  7277. --larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.55,-.4)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(40-2*math.cos(sine/14))), 0.2)
  7278. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.53, -.1) * CFrame.Angles(math.rad(-5),0,0), 0.4)
  7279. --hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(20),math.rad(10),0), 0.4)
  7280. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/24), 0) * CFrame.Angles(math.rad(-10),math.rad(-0), math.rad(0)), 0.2)
  7281.  
  7282. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(-1)), 0.4)
  7283. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(1)), 0.4)
  7284.  
  7285. --[[lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.8, 0.1) * CFrame.Angles(math.rad(-10), math.rad(10), math.rad(0)), 0.4)
  7286. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.8, 0.1) * CFrame.Angles(math.rad(-10), math.rad(10), math.rad(0)), 0.4) ]]
  7287. --rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), math.rad(10), math.rad(0)), 0.4)
  7288.  
  7289. --[[rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.35,.4)*CFrame.Angles(math.rad(-30),math.rad(14),math.rad(-30+2*math.cos(sine/14))), 0.2)
  7290. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.55,-.4)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(40-2*math.cos(sine/14))), 0.2)
  7291. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(20),math.rad(10),0), 0.4)
  7292. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-40),math.rad(-10), math.rad(0)), 0.2)
  7293. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -1.2) * CFrame.Angles(math.rad(-20), math.rad(10), math.rad(0)), 0.4)
  7294. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), math.rad(10), math.rad(0)), 0.4) ]]
  7295. end
  7296. end
  7297. end)
  7298.  
  7299. hum.MaxHealth = 9001
  7300. wait(3)
  7301. hum.Health = 9001
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement