Orangeplayer1431

Untitled

Mar 26th, 2017
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 285.16 KB | None | 0 0
  1. game:GetService('Players').Name="Players"
  2. local p = game:GetService("Players").LocalPlayer
  3. local char = p.Character
  4. local mouse = p:GetMouse()
  5. local larm = char["Left Arm"]
  6. local rarm = char["Right Arm"]
  7. local lleg = char["Left Leg"]
  8. local rleg = char["Right Leg"]
  9. local hed = char.Head
  10. local torso = char.Torso
  11. local hum = char.Humanoid
  12. local cam = game.Workspace.CurrentCamera
  13. local root = char.HumanoidRootPart
  14. local deb = false
  15. local shot = 0
  16. game:GetService('Lighting').Name="Lighting"
  17. local l = game:GetService("Lighting")
  18. local rs = game:GetService("RunService").RenderStepped
  19. local debris=game:service"Debris"
  20. local stanceToggle = "Normal"
  21. math.randomseed(os.time())
  22. hum.WalkSpeed = 7
  23. char.Health:Destroy()
  24. hum.MaxHealth = 50000
  25. wait(0.1)
  26. hum.Health = 50000
  27. hed.Size = Vector3.new(2,1,.8)
  28. ----------------------------------------------------
  29. --[[local Head = Instance.new("Part",char)
  30. Head.Size = Vector3.new(2.5,2.5,1)
  31. Head.Transparency = 1
  32. Head:BreakJoints()
  33. local hw = Instance.new("Weld",char.Head)
  34. hw.Part0 = char.Head
  35. hw.Part1 = Head
  36. hw.C0 = CFrame.new(0,.3,0)
  37. faceDecal = Instance.new("Decal",Head)
  38. faceDecal.Face = Enum.NormalId.Front
  39. faceDecal.Texture = "rbxassetid://400387868"
  40. local backDecal = Instance.new("Decal",Head)
  41. backDecal.Face = Enum.NormalId.Back
  42. backDecal.Texture = "rbxassetid://400377807"
  43. local mes = Instance.new("BlockMesh",Head)
  44. mes.Scale = Vector3.new(1,1,.4) ]]
  45. ----------------------------------------------------
  46. faceDecal = Instance.new("Decal",hed)
  47. faceDecal.Face = Enum.NormalId.Front
  48. faceDecal.Texture = "rbxassetid://400387868"
  49. local backDecal = Instance.new("Decal",hed)
  50. backDecal.Face = Enum.NormalId.Back
  51. backDecal.Texture = "rbxassetid://400377807"
  52. ----------------------------------------------------
  53. ypcall(function()
  54. char.Shirt:Destroy()
  55. char.Pants:Destroy()
  56. shirt = Instance.new("Shirt", char)
  57. shirt.Name = "Shirt"
  58. pants = Instance.new("Pants", char)
  59. pants.Name = "Pants"
  60. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=236410507"
  61. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=236412261"
  62. end)
  63. ----------------------------------------------------
  64. Debounces = {
  65. on = false;
  66. ks = false;
  67. CanAttack = true;
  68. CanJoke = true;
  69. NoIdl = false;
  70. Slashing = false;
  71. Slashed = false;
  72. Grabbing = false;
  73. Grabbed = false;
  74. }
  75. local Touche = {char.Name, }
  76. ----------------------------------------------------
  77. function lerp(a, b, t) -- Linear interpolation
  78. return a + (b - a)*t
  79. end
  80.  
  81. function slerp(a, b, t) --Spherical interpolation
  82. dot = a:Dot(b)
  83. if dot > 0.99999 or dot < -0.99999 then
  84. return t <= 0.5 and a or b
  85. else
  86. r = math.acos(dot)
  87. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  88. end
  89. end
  90.  
  91. function matrixInterpolate(a, b, t)
  92. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  93. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  94. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  95. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  96. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  97. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  98. local t = v1:Dot(v2)
  99. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  100. return CFrame.new()
  101. end
  102. return CFrame.new(
  103. v0.x, v0.y, v0.z,
  104. v1.x, v1.y, v1.z,
  105. v2.x, v2.y, v2.z,
  106. v3.x, v3.y, v3.z)
  107. end
  108. ----------------------------------------------------
  109. function genWeld(a,b)
  110. local w = Instance.new("Weld",a)
  111. w.Part0 = a
  112. w.Part1 = b
  113. return w
  114. end
  115. function weld(a, b)
  116. local weld = Instance.new("Weld")
  117. weld.Name = "W"
  118. weld.Part0 = a
  119. weld.Part1 = b
  120. weld.C0 = a.CFrame:inverse() * b.CFrame
  121. weld.Parent = a
  122. return weld;
  123. end
  124. ----------------------------------------------------
  125. function Lerp(c1,c2,al)
  126. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  127. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  128. for i,v in pairs(com1) do
  129. com1[i] = v+(com2[i]-v)*al
  130. end
  131. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  132. end
  133. ----------------------------------------------------
  134. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  135. local wld = Instance.new("Weld", wp1)
  136. wld.Part0 = wp0
  137. wld.Part1 = wp1
  138. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  139. end
  140. ----------------------------------------------------
  141. function Tween(a,b,c)
  142. return a+(b-a)*c
  143. end
  144. ----------------------------------------------------
  145. function nwPrt(prnt,siz,cf,col)
  146. local prt=Instance.new("Part")
  147. prt.Parent=prnt
  148. prt.FormFactor=3
  149. prt.Name="Part"
  150. prt.Size=siz
  151. prt.CanCollide=false
  152. prt.Anchored=true
  153. prt.Locked=true
  154. prt.TopSurface=10
  155. prt.BottomSurface=10
  156. prt.FrontSurface=10
  157. prt.BackSurface=10
  158. prt.LeftSurface=10
  159. prt.RightSurface=10
  160. prt:BreakJoints()
  161. prt.CFrame=cf or CFrame.new(30,10,30)
  162. prt.Material="Neon"
  163. prt.BrickColor=BrickColor.new(col)
  164. m=Instance.new("SpecialMesh",prt)
  165. m.MeshType=6
  166. return prt
  167. end
  168. ----------------------------------------------------
  169. function nwSnd(prnt,pch,vol,id)
  170. local s=Instance.new("Sound",prnt)
  171. s.Pitch=pch
  172. s.Volume=vol
  173. s.SoundId="rbxassetid://"..id
  174. s.PlayOnRemove=true
  175. return s
  176. end
  177. ----------------------------------------------------
  178. function newRay(start,face,range,wat)
  179. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  180. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  181. return rey,hit,pos
  182. end
  183. ----------------------------------------------------
  184. for i,v in pairs(char:children()) do
  185. if v:IsA("Hat") then
  186. v:Destroy()
  187. end
  188. end
  189. for i,v in pairs(hed:children()) do
  190. if v:IsA("Sound") then
  191. v:Destroy()
  192. end
  193. end
  194. ----------------------------------------------------
  195. function HasntTouched(plrname)
  196. local ret = true
  197. for _, v in pairs(Touche) do
  198. if v == plrname then
  199. ret = false
  200. end
  201. end
  202. return ret
  203. end
  204. ----------------------------------------------------
  205. larm.Size = larm.Size * 2
  206. rarm.Size = rarm.Size * 2
  207. lleg.Size = lleg.Size * 2
  208. rleg.Size = rleg.Size * 2
  209. torso.Size = torso.Size * 2
  210. hed.Size = hed.Size * 2
  211. root.Size = root.Size * 2
  212. ----------------------------------------------------
  213. newWeld(torso, larm, -1.5, 0.5, 0)
  214. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  215. newWeld(torso, rarm, 1.5, 0.5, 0)
  216. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  217. newWeld(torso, hed, 0, 1.5, 0)
  218. newWeld(torso, lleg, -0.5, -1, 0)
  219. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  220. newWeld(torso, rleg, 0.5, -1, 0)
  221. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  222. newWeld(root, torso, 0, -1, 0)
  223. torso.Weld.C1 = CFrame.new(0, -1, 0)
  224. ----------------------------------------------------
  225. game:service'InsertService':LoadAsset(64444871):children()[1].Parent=char
  226. char.DominusV2.Handle.Mesh.Scale = char.DominusV2.Handle.Mesh.Scale * 2.5
  227. char.DominusV2.Handle.Mesh.VertexColor = Vector3.new(1,1,1)
  228. --hed.face.Texture = "rbxassetid://26019070"
  229. z=Instance.new('Decal',hed)
  230. z.Face = 'Front'
  231. z.Texture='rbxassetid://99174105'
  232. z1=Instance.new('Decal',hed)
  233. z1.Face = 'Right'
  234. hed.BrickColor = BrickColor.new("Really black")
  235. lite = Instance.new("PointLight", torso)
  236. lite.Brightness = 14
  237. lite.Range = 10
  238. lite.Color = Color3.new(1, 0, 0)
  239. --[[local hed2 = hed:Clone()
  240. hed2.CanCollide = false
  241. hed2.Parent = char
  242. hed2:ClearAllChildren()
  243. hed2.Transparency = 1
  244. hed2.Name = "DARP"
  245. local w = Instance.new("Weld",hed2)
  246. w.Part0 = hed
  247. w.Part1 = hed2
  248. w.C0 = CFrame.new(0,0,-0.175)
  249. z=Instance.new("SurfaceGui",hed2)
  250. z.Enabled = true
  251. z.Face = "Front"
  252. z.Adornee = hed2
  253. z.CanvasSize = Vector2.new(100,100)
  254. local face = Instance.new("ImageLabel",z)
  255. face.Size = UDim2.new(1,-30,1,0)
  256. face.Position = UDim2.new(0,15,0,0)
  257. face.BackgroundTransparency = 1
  258. face.Image='rbxassetid://46282671']]--
  259. ----------------------------------------------------
  260. z = Instance.new("Sound", char)
  261. z.SoundId = "rbxassetid://176025107"--242463565, 303570180
  262. z.Looped = true
  263. z.Pitch = 1
  264. z.Volume = 1
  265. wait(.01)
  266. z:Play()
  267. ----------------------------------------------------
  268. --[[local l = game.Lighting
  269. local sky = Instance.new("Sky",l)
  270. sky.CelestialBodiesShown = false
  271. sky.SkyboxBk = "http://www.roblox.com/asset/?id=156925041"
  272. sky.SkyboxDn = "http://www.roblox.com/asset/?id=156925047"
  273. sky.SkyboxFt = "http://www.roblox.com/asset/?id=156925045"
  274. sky.SkyboxLf = "http://www.roblox.com/asset/?id=156925043"
  275. sky.SkyboxRt = "http://www.roblox.com/asset/?id=156925038"
  276. sky.SkyboxUp = "http://www.roblox.com/asset/?id=156925055"
  277. sky.StarCount = 0
  278. sky.Name = "GreenSpace" ]]
  279. ----------------------------------------------------
  280. local m = Instance.new("Model")
  281. m.Name = "Absolution"
  282. p1 = Instance.new("Part", m)
  283. p1.BrickColor = BrickColor.new("Lime green")
  284. p1.Material = "Neon"
  285. p1.FormFactor = Enum.FormFactor.Custom
  286. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  287. 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)
  288. p1.CanCollide = false
  289. p1.Locked = true
  290. p1.Elasticity = 0
  291. p1.BottomSurface = Enum.SurfaceType.Smooth
  292. p1.TopSurface = Enum.SurfaceType.Smooth
  293. b1 = Instance.new("SpecialMesh", p1)
  294. b1.MeshType = Enum.MeshType.Wedge
  295. b1.Name = "Mesh"
  296. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  297. p2 = Instance.new("Part", m)
  298. p2.BrickColor = BrickColor.new("Really black")
  299. p2.FormFactor = Enum.FormFactor.Custom
  300. p2.Size = Vector3.new(1, 2.9000001, 1)
  301. 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)
  302. p2.CanCollide = false
  303. p2.Locked = true
  304. p2.Elasticity = 0
  305. p2.BottomSurface = Enum.SurfaceType.Smooth
  306. p2.TopSurface = Enum.SurfaceType.Smooth
  307. b2 = Instance.new("BlockMesh", p2)
  308. b2.Name = "Mesh"
  309. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  310. p3 = Instance.new("Part", m)
  311. p3.BrickColor = BrickColor.new("Lime green")
  312. p3.Material = "Neon"
  313. p3.FormFactor = Enum.FormFactor.Custom
  314. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  315. 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)
  316. p3.CanCollide = false
  317. p3.Locked = true
  318. p3.Elasticity = 0
  319. p3.BottomSurface = Enum.SurfaceType.Smooth
  320. p3.TopSurface = Enum.SurfaceType.Smooth
  321. b3 = Instance.new("SpecialMesh", p3)
  322. b3.MeshType = Enum.MeshType.Wedge
  323. b3.Name = "Mesh"
  324. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  325. p4 = Instance.new("Part", m)
  326. p4.BrickColor = BrickColor.new("Lime green")
  327. p4.Material = "Neon"
  328. p4.FormFactor = Enum.FormFactor.Custom
  329. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  330. 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)
  331. p4.CanCollide = false
  332. p4.Locked = true
  333. p4.Elasticity = 0
  334. p4.BottomSurface = Enum.SurfaceType.Smooth
  335. p4.TopSurface = Enum.SurfaceType.Smooth
  336. b4 = Instance.new("SpecialMesh", p4)
  337. b4.MeshType = Enum.MeshType.Wedge
  338. b4.Name = "Mesh"
  339. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  340. p5 = Instance.new("Part", m)
  341. p5.BrickColor = BrickColor.new("Lime green")
  342. p5.Material = "Neon"
  343. p5.FormFactor = Enum.FormFactor.Custom
  344. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  345. 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)
  346. p5.CanCollide = false
  347. p5.Locked = true
  348. p5.Elasticity = 0
  349. p5.BottomSurface = Enum.SurfaceType.Smooth
  350. p5.TopSurface = Enum.SurfaceType.Smooth
  351. b5 = Instance.new("SpecialMesh", p5)
  352. b5.MeshType = Enum.MeshType.Wedge
  353. b5.Name = "Mesh"
  354. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  355. p6 = Instance.new("Part", m)
  356. p6.Name = "Handle"
  357. p6.BrickColor = BrickColor.new("Really black")
  358. p6.FormFactor = Enum.FormFactor.Custom
  359. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  360. 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)
  361. p6.CanCollide = false
  362. p6.Locked = true
  363. p6.Elasticity = 0
  364. p6.BottomSurface = Enum.SurfaceType.Smooth
  365. p6.TopSurface = Enum.SurfaceType.Smooth
  366. b6 = Instance.new("BlockMesh", p6)
  367. b6.Name = "Mesh"
  368. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  369. p7 = Instance.new("Part", m)
  370. p7.BrickColor = BrickColor.new("Lime green")
  371. p7.Material = "Neon"
  372. p7.FormFactor = Enum.FormFactor.Custom
  373. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  374. 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)
  375. p7.CanCollide = false
  376. p7.Locked = true
  377. p7.Elasticity = 0
  378. p7.BottomSurface = Enum.SurfaceType.Smooth
  379. p7.TopSurface = Enum.SurfaceType.Smooth
  380. b7 = Instance.new("SpecialMesh", p7)
  381. b7.MeshType = Enum.MeshType.Wedge
  382. b7.Name = "Mesh"
  383. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  384. p8 = Instance.new("Part", m)
  385. p8.BrickColor = BrickColor.new("Lime green")
  386. p8.Material = "Neon"
  387. p8.FormFactor = Enum.FormFactor.Custom
  388. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  389. 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)
  390. p8.CanCollide = false
  391. p8.Locked = true
  392. p8.Elasticity = 0
  393. p8.BottomSurface = Enum.SurfaceType.Smooth
  394. p8.TopSurface = Enum.SurfaceType.Smooth
  395. b8 = Instance.new("SpecialMesh", p8)
  396. b8.MeshType = Enum.MeshType.Wedge
  397. b8.Name = "Mesh"
  398. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  399. p9 = Instance.new("Part", m)
  400. p9.BrickColor = BrickColor.new("Really black")
  401. p9.FormFactor = Enum.FormFactor.Custom
  402. p9.Size = Vector3.new(1, 1.07999957, 1)
  403. 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)
  404. p9.CanCollide = false
  405. p9.Locked = true
  406. p9.Elasticity = 0
  407. p9.BottomSurface = Enum.SurfaceType.Smooth
  408. p9.TopSurface = Enum.SurfaceType.Smooth
  409. b9 = Instance.new("BlockMesh", p9)
  410. b9.Name = "Mesh"
  411. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  412. p10 = Instance.new("Part", m)
  413. p10.BrickColor = BrickColor.new("Really black")
  414. p10.FormFactor = Enum.FormFactor.Custom
  415. p10.Size = Vector3.new(1, 1.41999948, 1)
  416. 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)
  417. p10.CanCollide = false
  418. p10.Locked = true
  419. p10.Elasticity = 0
  420. p10.BottomSurface = Enum.SurfaceType.Smooth
  421. p10.TopSurface = Enum.SurfaceType.Smooth
  422. b10 = Instance.new("BlockMesh", p10)
  423. b10.Name = "Mesh"
  424. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  425. p11 = Instance.new("Part", m)
  426. p11.BrickColor = BrickColor.new("Really black")
  427. p11.FormFactor = Enum.FormFactor.Custom
  428. p11.Size = Vector3.new(1, 1.50999951, 1)
  429. 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)
  430. p11.CanCollide = false
  431. p11.Locked = true
  432. p11.Elasticity = 0
  433. p11.BottomSurface = Enum.SurfaceType.Smooth
  434. p11.TopSurface = Enum.SurfaceType.Smooth
  435. b11 = Instance.new("BlockMesh", p11)
  436. b11.Name = "Mesh"
  437. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  438. p12 = Instance.new("Part", m)
  439. p12.Name = "BladeCenter"
  440. p12.BrickColor = BrickColor.new("Dark stone grey")
  441. p12.Material = Enum.Material.Concrete
  442. p12.FormFactor = Enum.FormFactor.Symmetric
  443. p12.Size = Vector3.new(1, 2, 2)
  444. 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)
  445. p12.CanCollide = false
  446. p12.Locked = true
  447. p12.BottomSurface = Enum.SurfaceType.Smooth
  448. p12.TopSurface = Enum.SurfaceType.Smooth
  449. b12 = Instance.new("SpecialMesh", p12)
  450. b12.MeshType = Enum.MeshType.Brick
  451. b12.Name = "Mesh"
  452. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  453. p13 = Instance.new("Part", m)
  454. p13.BrickColor = BrickColor.new("Really black")
  455. p13.FormFactor = Enum.FormFactor.Custom
  456. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  457. 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)
  458. p13.CanCollide = false
  459. p13.Locked = true
  460. p13.Elasticity = 0
  461. p13.BottomSurface = Enum.SurfaceType.Smooth
  462. p13.TopSurface = Enum.SurfaceType.Smooth
  463. b13 = Instance.new("BlockMesh", p13)
  464. b13.Name = "Mesh"
  465. b13.Scale = Vector3.new(1, 1, 0.400000006)
  466. p14 = Instance.new("Part", m)
  467. p14.BrickColor = BrickColor.new("Really black")
  468. p14.FormFactor = Enum.FormFactor.Custom
  469. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  470. 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)
  471. p14.CanCollide = false
  472. p14.Locked = true
  473. p14.Elasticity = 0
  474. p14.BottomSurface = Enum.SurfaceType.Smooth
  475. p14.TopSurface = Enum.SurfaceType.Smooth
  476. b14 = Instance.new("BlockMesh", p14)
  477. b14.Name = "Mesh"
  478. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  479. p15 = Instance.new("Part", m)
  480. p15.BrickColor = BrickColor.new("Really black")
  481. p15.FormFactor = Enum.FormFactor.Custom
  482. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  483. 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)
  484. p15.CanCollide = false
  485. p15.Locked = true
  486. p15.Elasticity = 0
  487. p15.BottomSurface = Enum.SurfaceType.Smooth
  488. p15.TopSurface = Enum.SurfaceType.Smooth
  489. b15 = Instance.new("BlockMesh", p15)
  490. b15.Name = "Mesh"
  491. b15.Scale = Vector3.new(1, 1, 0.400000006)
  492. p16 = Instance.new("Part", m)
  493. p16.BrickColor = BrickColor.new("Really black")
  494. p16.FormFactor = Enum.FormFactor.Custom
  495. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  496. 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)
  497. p16.CanCollide = false
  498. p16.Locked = true
  499. p16.Elasticity = 0
  500. p16.BottomSurface = Enum.SurfaceType.Smooth
  501. p16.TopSurface = Enum.SurfaceType.Smooth
  502. b16 = Instance.new("BlockMesh", p16)
  503. b16.Name = "Mesh"
  504. b16.Scale = Vector3.new(1, 1, 0.400000006)
  505. p17 = Instance.new("Part", m)
  506. p17.BrickColor = BrickColor.new("Really black")
  507. p17.FormFactor = Enum.FormFactor.Custom
  508. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  509. 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)
  510. p17.CanCollide = false
  511. p17.Locked = true
  512. p17.Elasticity = 0
  513. p17.BottomSurface = Enum.SurfaceType.Smooth
  514. p17.TopSurface = Enum.SurfaceType.Smooth
  515. b17 = Instance.new("BlockMesh", p17)
  516. b17.Name = "Mesh"
  517. b17.Scale = Vector3.new(1, 1, 0.400000006)
  518. p18 = Instance.new("WedgePart", m)
  519. p18.BrickColor = BrickColor.new("Dark stone grey")
  520. p18.Name = "BladePart1"
  521. p18.Material = Enum.Material.Concrete
  522. p18.Name = "Wedge"
  523. p18.FormFactor = Enum.FormFactor.Symmetric
  524. p18.Size = Vector3.new(1, 4, 2)
  525. 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)
  526. p18.CanCollide = false
  527. p18.Locked = true
  528. p18.BottomSurface = Enum.SurfaceType.Smooth
  529. p18.TopSurface = Enum.SurfaceType.Smooth
  530. b18 = Instance.new("SpecialMesh", p18)
  531. b18.MeshType = Enum.MeshType.Wedge
  532. b18.Name = "Mesh"
  533. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  534. p19 = Instance.new("WedgePart", m)
  535. p19.BrickColor = BrickColor.new("Dark stone grey")
  536. p19.Name = "BladePart2"
  537. p19.Material = Enum.Material.Concrete
  538. p19.Name = "Wedge"
  539. p19.FormFactor = Enum.FormFactor.Symmetric
  540. p19.Size = Vector3.new(1, 4, 2)
  541. 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)
  542. p19.CanCollide = false
  543. p19.Locked = true
  544. p19.BottomSurface = Enum.SurfaceType.Smooth
  545. p19.TopSurface = Enum.SurfaceType.Smooth
  546. b19 = Instance.new("SpecialMesh", p19)
  547. b19.MeshType = Enum.MeshType.Wedge
  548. b19.Name = "Mesh"
  549. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  550. p20 = Instance.new("Part", m)
  551. p20.BrickColor = BrickColor.new("Really black")
  552. p20.FormFactor = Enum.FormFactor.Custom
  553. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  554. 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)
  555. p20.CanCollide = false
  556. p20.Locked = true
  557. p20.Elasticity = 0
  558. p20.BottomSurface = Enum.SurfaceType.Smooth
  559. p20.TopSurface = Enum.SurfaceType.Smooth
  560. b20 = Instance.new("BlockMesh", p20)
  561. b20.Name = "Mesh"
  562. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  563. p21 = Instance.new("Part", m)
  564. p21.BrickColor = BrickColor.new("Lime green")
  565. p21.Material = "Neon"
  566. p21.FormFactor = Enum.FormFactor.Custom
  567. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  568. 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)
  569. p21.CanCollide = false
  570. p21.Locked = true
  571. p21.Elasticity = 0
  572. p21.BottomSurface = Enum.SurfaceType.Smooth
  573. p21.TopSurface = Enum.SurfaceType.Smooth
  574. b21 = Instance.new("SpecialMesh", p21)
  575. b21.MeshType = Enum.MeshType.Wedge
  576. b21.Name = "Mesh"
  577. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  578. w1 = Instance.new("Weld", p1)
  579. w1.Name = "Part_Weld"
  580. w1.Part0 = p1
  581. 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)
  582. w1.Part1 = p2
  583. 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)
  584. w2 = Instance.new("Weld", p2)
  585. w2.Name = "Part_Weld"
  586. w2.Part0 = p2
  587. 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)
  588. w2.Part1 = p3
  589. 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)
  590. w3 = Instance.new("Weld", p3)
  591. w3.Name = "Part_Weld"
  592. w3.Part0 = p3
  593. 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)
  594. w3.Part1 = p4
  595. 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)
  596. w4 = Instance.new("Weld", p4)
  597. w4.Name = "Part_Weld"
  598. w4.Part0 = p4
  599. 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)
  600. w4.Part1 = p5
  601. 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)
  602. w5 = Instance.new("Weld", p5)
  603. w5.Name = "Part_Weld"
  604. w5.Part0 = p5
  605. 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)
  606. w5.Part1 = p6
  607. 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)
  608. w6 = Instance.new("Weld", p6)
  609. w6.Name = "Part_Weld"
  610. w6.Part0 = p6
  611. 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)
  612. w6.Part1 = p7
  613. 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)
  614. w7 = Instance.new("Weld", p7)
  615. w7.Name = "Part_Weld"
  616. w7.Part0 = p7
  617. 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)
  618. w7.Part1 = p8
  619. 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)
  620. w8 = Instance.new("Weld", p8)
  621. w8.Name = "Part_Weld"
  622. w8.Part0 = p8
  623. 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)
  624. w8.Part1 = p9
  625. 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)
  626. w9 = Instance.new("Weld", p9)
  627. w9.Name = "Part_Weld"
  628. w9.Part0 = p9
  629. 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)
  630. w9.Part1 = p10
  631. 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)
  632. w10 = Instance.new("Weld", p10)
  633. w10.Name = "Part_Weld"
  634. w10.Part0 = p10
  635. 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)
  636. w10.Part1 = p11
  637. 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)
  638. w11 = Instance.new("Weld", p11)
  639. w11.Name = "Part_Weld"
  640. w11.Part0 = p11
  641. 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)
  642. w11.Part1 = p12
  643. 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)
  644. w12 = Instance.new("Weld", p12)
  645. w12.Name = "Part_Weld"
  646. w12.Part0 = p12
  647. 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)
  648. w12.Part1 = p13
  649. 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)
  650. w13 = Instance.new("Weld", p13)
  651. w13.Name = "Part_Weld"
  652. w13.Part0 = p13
  653. 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)
  654. w13.Part1 = p14
  655. 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)
  656. w14 = Instance.new("Weld", p14)
  657. w14.Name = "Part_Weld"
  658. w14.Part0 = p14
  659. 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)
  660. w14.Part1 = p15
  661. 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)
  662. w15 = Instance.new("Weld", p15)
  663. w15.Name = "Part_Weld"
  664. w15.Part0 = p15
  665. 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)
  666. w15.Part1 = p16
  667. 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)
  668. w16 = Instance.new("Weld", p16)
  669. w16.Name = "Part_Weld"
  670. w16.Part0 = p16
  671. 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)
  672. w16.Part1 = p17
  673. 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)
  674. w17 = Instance.new("Weld", p17)
  675. w17.Name = "Wedge_Weld"
  676. w17.Part0 = p17
  677. 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)
  678. w17.Part1 = p18
  679. 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)
  680. w18 = Instance.new("Weld", p18)
  681. w18.Name = "Wedge_Weld"
  682. w18.Part0 = p18
  683. 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)
  684. w18.Part1 = p19
  685. 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)
  686. w19 = Instance.new("Weld", p19)
  687. w19.Name = "Part_Weld"
  688. w19.Part0 = p19
  689. 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)
  690. w19.Part1 = p20
  691. 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)
  692. w20 = Instance.new("Weld", p20)
  693. w20.Name = "Part_Weld"
  694. w20.Part0 = p20
  695. 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)
  696. w20.Part1 = p21
  697. 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)
  698. m.Parent = char
  699. m:MakeJoints()
  700. ----------------------------------------------------
  701. local cor = Instance.new("Part", char.Absolution)
  702. cor.Name = "Thingy"
  703. cor.Locked = true
  704. cor.BottomSurface = 0
  705. cor.CanCollide = false
  706. cor.Size = Vector3.new(1, 13, 1)
  707. cor.Transparency = 1
  708. cor.TopSurface = 0
  709. corw = Instance.new("Weld", cor)
  710. corw.Part0 = rarm
  711. corw.Part1 = cor
  712. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  713. corw.C1 = CFrame.new(0, 0, 0)
  714. weld1 = Instance.new("Weld", char.Absolution)
  715. weld1.Part0 = cor
  716. weld1.Part1 = p6
  717. weld1.C0 = CFrame.new(0, 0, 0)
  718. ----------------------------------------------------
  719. hitb = Instance.new("Part", char.Absolution)
  720. hitb.Name = "Thingy2"
  721. hitb.Locked = true
  722. hitb.BottomSurface = 0
  723. hitb.CanCollide = false
  724. hitb.Size = Vector3.new(0, 8, 6)
  725. hitb.Transparency = 1
  726. hitb.TopSurface = 0
  727. weld2 = Instance.new("Weld", char.Absolution)
  728. weld2.Part0 = hitb
  729. weld2.Part1 = p12
  730. weld2.C0 = CFrame.new(0, .6, 1)
  731. ----------------------------------------------------
  732. local m = Instance.new("Model")
  733. m.Name = "Claw"
  734. p1 = Instance.new("Part", m)
  735. p1.BrickColor = BrickColor.new("Really black")
  736. p1.FormFactor = Enum.FormFactor.Custom
  737. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  738. 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)
  739. p1.CanCollide = false
  740. p1.Locked = true
  741. p1.BottomSurface = Enum.SurfaceType.Smooth
  742. p1.TopSurface = Enum.SurfaceType.Smooth
  743. b1 = Instance.new("BlockMesh", p1)
  744. b1.Name = "Mesh"
  745. p2 = Instance.new("WedgePart", m)
  746. p2.BrickColor = BrickColor.new("Really black")
  747. p2.Name = "Wedge"
  748. p2.FormFactor = Enum.FormFactor.Custom
  749. p2.Size = Vector3.new(3, 1, 0.5)
  750. 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)
  751. p2.CanCollide = false
  752. p2.Locked = true
  753. p2.BottomSurface = Enum.SurfaceType.Smooth
  754. p2.TopSurface = Enum.SurfaceType.Smooth
  755. p3 = Instance.new("Part", m)
  756. p3.BrickColor = BrickColor.new("Really black")
  757. p3.FormFactor = Enum.FormFactor.Custom
  758. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  759. 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)
  760. p3.CanCollide = false
  761. p3.Locked = true
  762. p3.BottomSurface = Enum.SurfaceType.Smooth
  763. p3.TopSurface = Enum.SurfaceType.Smooth
  764. b2 = Instance.new("BlockMesh", p3)
  765. b2.Name = "Mesh"
  766. p4 = Instance.new("WedgePart", m)
  767. p4.BrickColor = BrickColor.new("Really black")
  768. p4.Name = "Wedge"
  769. p4.FormFactor = Enum.FormFactor.Custom
  770. p4.Size = Vector3.new(3, 1, 0.5)
  771. 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)
  772. p4.CanCollide = false
  773. p4.Locked = true
  774. p4.BottomSurface = Enum.SurfaceType.Smooth
  775. p4.TopSurface = Enum.SurfaceType.Smooth
  776. p5 = Instance.new("Part", m)
  777. p5.BrickColor = BrickColor.new("Really black")
  778. p5.FormFactor = Enum.FormFactor.Custom
  779. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  780. 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)
  781. p5.CanCollide = false
  782. p5.Locked = true
  783. p5.BottomSurface = Enum.SurfaceType.Smooth
  784. p5.TopSurface = Enum.SurfaceType.Smooth
  785. b3 = Instance.new("BlockMesh", p5)
  786. b3.Name = "Mesh"
  787. p6 = Instance.new("Part", m)
  788. p6.BrickColor = BrickColor.new("Really black")
  789. p6.FormFactor = Enum.FormFactor.Custom
  790. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  791. 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)
  792. p6.CanCollide = false
  793. p6.Locked = true
  794. p6.BottomSurface = Enum.SurfaceType.Smooth
  795. p6.TopSurface = Enum.SurfaceType.Smooth
  796. b4 = Instance.new("BlockMesh", p6)
  797. b4.Name = "Mesh"
  798. p7 = Instance.new("Part", m)
  799. p7.BrickColor = BrickColor.new("Really black")
  800. p7.FormFactor = Enum.FormFactor.Custom
  801. p7.Size = Vector3.new(3, 1, 1.20000005)
  802. 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)
  803. p7.CanCollide = false
  804. p7.Locked = true
  805. p7.BottomSurface = Enum.SurfaceType.Smooth
  806. p7.TopSurface = Enum.SurfaceType.Smooth
  807. b5 = Instance.new("BlockMesh", p7)
  808. b5.Name = "Mesh"
  809. p8 = Instance.new("Part", m)
  810. p8.BrickColor = BrickColor.new("Lime green")
  811. p8.Material = "Neon"
  812. p8.FormFactor = Enum.FormFactor.Symmetric
  813. p8.Size = Vector3.new(1, 1, 1)
  814. 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)
  815. p8.CanCollide = false
  816. p8.Locked = true
  817. b6 = Instance.new("SpecialMesh", p8)
  818. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  819. b6.TextureId = ""
  820. b6.MeshType = Enum.MeshType.FileMesh
  821. b6.Name = "Mesh"
  822. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  823. p9 = Instance.new("Part", m)
  824. p9.BrickColor = BrickColor.new("Really black")
  825. p9.FormFactor = Enum.FormFactor.Custom
  826. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  827. 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)
  828. p9.CanCollide = false
  829. p9.Locked = true
  830. p9.BottomSurface = Enum.SurfaceType.Smooth
  831. p9.TopSurface = Enum.SurfaceType.Smooth
  832. b7 = Instance.new("BlockMesh", p9)
  833. b7.Name = "Mesh"
  834. p10 = Instance.new("Part", m)
  835. p10.BrickColor = BrickColor.new("Lime green")
  836. p10.Material = "Neon"
  837. p10.FormFactor = Enum.FormFactor.Symmetric
  838. p10.Size = Vector3.new(1, 1, 1)
  839. 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)
  840. p10.CanCollide = false
  841. p10.Locked = true
  842. b8 = Instance.new("SpecialMesh", p10)
  843. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  844. b8.TextureId = ""
  845. b8.MeshType = Enum.MeshType.FileMesh
  846. b8.Name = "Mesh"
  847. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  848. p11 = Instance.new("Part", m)
  849. p11.BrickColor = BrickColor.new("Really black")
  850. p11.FormFactor = Enum.FormFactor.Custom
  851. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  852. 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)
  853. p11.CanCollide = false
  854. p11.Locked = true
  855. p11.BottomSurface = Enum.SurfaceType.Smooth
  856. p11.TopSurface = Enum.SurfaceType.Smooth
  857. b9 = Instance.new("BlockMesh", p11)
  858. b9.Name = "Mesh"
  859. p12 = Instance.new("Part", m)
  860. p12.BrickColor = BrickColor.new("Really black")
  861. p12.FormFactor = Enum.FormFactor.Custom
  862. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  863. 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)
  864. p12.CanCollide = false
  865. p12.Locked = true
  866. p12.BottomSurface = Enum.SurfaceType.Smooth
  867. p12.TopSurface = Enum.SurfaceType.Smooth
  868. b10 = Instance.new("BlockMesh", p12)
  869. b10.Name = "Mesh"
  870. p13 = Instance.new("Part", m)
  871. p13.BrickColor = BrickColor.new("Really black")
  872. p13.FormFactor = Enum.FormFactor.Custom
  873. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  874. 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)
  875. p13.CanCollide = false
  876. p13.Locked = true
  877. p13.BottomSurface = Enum.SurfaceType.Smooth
  878. p13.TopSurface = Enum.SurfaceType.Smooth
  879. b11 = Instance.new("BlockMesh", p13)
  880. b11.Name = "Mesh"
  881. p14 = Instance.new("Part", m)
  882. p14.BrickColor = BrickColor.new("Lime green")
  883. p14.Material = "Neon"
  884. p14.FormFactor = Enum.FormFactor.Symmetric
  885. p14.Size = Vector3.new(1, 1, 1)
  886. 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)
  887. p14.CanCollide = false
  888. p14.Locked = true
  889. b12 = Instance.new("SpecialMesh", p14)
  890. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  891. b12.TextureId = ""
  892. b12.MeshType = Enum.MeshType.FileMesh
  893. b12.Name = "Mesh"
  894. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  895. p15 = Instance.new("Part", m)
  896. p15.BrickColor = BrickColor.new("Medium stone grey")
  897. p15.Transparency = 1
  898. p15.Name = "ArmPart"
  899. p15.FormFactor = Enum.FormFactor.Custom
  900. p15.Size = Vector3.new(2, 1, 1)
  901. 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)
  902. p15.CanCollide = false
  903. p15.Locked = true
  904. p15.BottomSurface = Enum.SurfaceType.Smooth
  905. p15.TopSurface = Enum.SurfaceType.Smooth
  906. b13 = Instance.new("BlockMesh", p15)
  907. b13.Name = "Mesh"
  908. p16 = Instance.new("Part", m)
  909. p16.BrickColor = BrickColor.new("Really black")
  910. p16.FormFactor = Enum.FormFactor.Custom
  911. p16.Size = Vector3.new(3, 1, 2.4000001)
  912. 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)
  913. p16.CanCollide = false
  914. p16.Locked = true
  915. p16.BottomSurface = Enum.SurfaceType.Smooth
  916. p16.TopSurface = Enum.SurfaceType.Smooth
  917. b14 = Instance.new("BlockMesh", p16)
  918. b14.Name = "Mesh"
  919. p17 = Instance.new("Part", m)
  920. p17.BrickColor = BrickColor.new("Really black")
  921. p17.FormFactor = Enum.FormFactor.Custom
  922. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  923. 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)
  924. p17.CanCollide = false
  925. p17.Locked = true
  926. p17.BottomSurface = Enum.SurfaceType.Smooth
  927. p17.TopSurface = Enum.SurfaceType.Smooth
  928. b15 = Instance.new("BlockMesh", p17)
  929. b15.Name = "Mesh"
  930. p18 = Instance.new("Part", m)
  931. p18.BrickColor = BrickColor.new("Lime green")
  932. p18.Material = "Neon"
  933. p18.FormFactor = Enum.FormFactor.Symmetric
  934. p18.Size = Vector3.new(1, 1, 1)
  935. 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)
  936. p18.CanCollide = false
  937. p18.Locked = true
  938. b16 = Instance.new("SpecialMesh", p18)
  939. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  940. b16.TextureId = ""
  941. b16.MeshType = Enum.MeshType.FileMesh
  942. b16.Name = "Mesh"
  943. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  944. p19 = Instance.new("Part", m)
  945. p19.BrickColor = BrickColor.new("Lime green")
  946. p19.Material = "Neon"
  947. p19.FormFactor = Enum.FormFactor.Symmetric
  948. p19.Size = Vector3.new(1, 1, 1)
  949. 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)
  950. p19.CanCollide = false
  951. p19.Locked = true
  952. b17 = Instance.new("SpecialMesh", p19)
  953. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  954. b17.TextureId = ""
  955. b17.MeshType = Enum.MeshType.FileMesh
  956. b17.Name = "Mesh"
  957. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  958. p20 = Instance.new("Part", m)
  959. p20.BrickColor = BrickColor.new("Really black")
  960. p20.FormFactor = Enum.FormFactor.Custom
  961. p20.Size = Vector3.new(3, 1, 2.4000001)
  962. 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)
  963. p20.CanCollide = false
  964. p20.Locked = true
  965. p20.BottomSurface = Enum.SurfaceType.Smooth
  966. p20.TopSurface = Enum.SurfaceType.Smooth
  967. b18 = Instance.new("BlockMesh", p20)
  968. b18.Name = "Mesh"
  969. p21 = Instance.new("Part", m)
  970. p21.BrickColor = BrickColor.new("Really black")
  971. p21.FormFactor = Enum.FormFactor.Custom
  972. p21.Size = Vector3.new(3, 1, 1.19999993)
  973. 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)
  974. p21.CanCollide = false
  975. p21.Locked = true
  976. p21.BottomSurface = Enum.SurfaceType.Smooth
  977. p21.TopSurface = Enum.SurfaceType.Smooth
  978. b19 = Instance.new("BlockMesh", p21)
  979. b19.Name = "Mesh"
  980. p22 = Instance.new("WedgePart", m)
  981. p22.BrickColor = BrickColor.new("Really black")
  982. p22.Name = "Wedge"
  983. p22.FormFactor = Enum.FormFactor.Custom
  984. p22.Size = Vector3.new(3, 1, 0.5)
  985. 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)
  986. p22.CanCollide = false
  987. p22.Locked = true
  988. p22.BottomSurface = Enum.SurfaceType.Smooth
  989. p22.TopSurface = Enum.SurfaceType.Smooth
  990. p23 = Instance.new("Part", m)
  991. p23.BrickColor = BrickColor.new("Really black")
  992. p23.FormFactor = Enum.FormFactor.Custom
  993. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  994. 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)
  995. p23.CanCollide = false
  996. p23.Locked = true
  997. p23.BottomSurface = Enum.SurfaceType.Smooth
  998. p23.TopSurface = Enum.SurfaceType.Smooth
  999. b20 = Instance.new("BlockMesh", p23)
  1000. b20.Name = "Mesh"
  1001. p24 = Instance.new("WedgePart", m)
  1002. p24.BrickColor = BrickColor.new("Really black")
  1003. p24.Name = "Wedge"
  1004. p24.FormFactor = Enum.FormFactor.Custom
  1005. p24.Size = Vector3.new(3, 1, 0.5)
  1006. 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)
  1007. p24.CanCollide = false
  1008. p24.Locked = true
  1009. p24.BottomSurface = Enum.SurfaceType.Smooth
  1010. p24.TopSurface = Enum.SurfaceType.Smooth
  1011. p25 = Instance.new("Part", m)
  1012. p25.BrickColor = BrickColor.new("Lime green")
  1013. p25.Material = "Neon"
  1014. p25.FormFactor = Enum.FormFactor.Symmetric
  1015. p25.Size = Vector3.new(1, 1, 1)
  1016. 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)
  1017. p25.CanCollide = false
  1018. p25.Locked = true
  1019. p25.BottomSurface = Enum.SurfaceType.Smooth
  1020. p25.TopSurface = Enum.SurfaceType.Smooth
  1021. b21 = Instance.new("SpecialMesh", p25)
  1022. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1023. b21.TextureId = ""
  1024. b21.MeshType = Enum.MeshType.FileMesh
  1025. b21.Name = "Mesh"
  1026. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  1027. p26 = Instance.new("Part", m)
  1028. p26.BrickColor = BrickColor.new("Really black")
  1029. p26.FormFactor = Enum.FormFactor.Symmetric
  1030. p26.Size = Vector3.new(1, 1, 1)
  1031. 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)
  1032. p26.CanCollide = false
  1033. p26.Locked = true
  1034. p26.BottomSurface = Enum.SurfaceType.Smooth
  1035. p26.TopSurface = Enum.SurfaceType.Smooth
  1036. b22 = Instance.new("SpecialMesh", p26)
  1037. b22.MeshType = Enum.MeshType.Brick
  1038. b22.Name = "Mesh"
  1039. w1 = Instance.new("Weld", p1)
  1040. w1.Name = "Wedge_Weld"
  1041. w1.Part0 = p1
  1042. 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)
  1043. w1.Part1 = p2
  1044. 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)
  1045. w2 = Instance.new("Weld", p2)
  1046. w2.Name = "Part_Weld"
  1047. w2.Part0 = p2
  1048. 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)
  1049. w2.Part1 = p3
  1050. 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)
  1051. w3 = Instance.new("Weld", p3)
  1052. w3.Name = "Wedge_Weld"
  1053. w3.Part0 = p3
  1054. 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)
  1055. w3.Part1 = p4
  1056. 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)
  1057. w4 = Instance.new("Weld", p4)
  1058. w4.Name = "Part_Weld"
  1059. w4.Part0 = p4
  1060. 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)
  1061. w4.Part1 = p5
  1062. 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)
  1063. w5 = Instance.new("Weld", p5)
  1064. w5.Name = "Part_Weld"
  1065. w5.Part0 = p5
  1066. 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)
  1067. w5.Part1 = p6
  1068. 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)
  1069. w6 = Instance.new("Weld", p6)
  1070. w6.Name = "Part_Weld"
  1071. w6.Part0 = p6
  1072. 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)
  1073. w6.Part1 = p7
  1074. 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)
  1075. w7 = Instance.new("Weld", p7)
  1076. w7.Name = "Part_Weld"
  1077. w7.Part0 = p7
  1078. 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)
  1079. w7.Part1 = p8
  1080. 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)
  1081. w8 = Instance.new("Weld", p8)
  1082. w8.Name = "Part_Weld"
  1083. w8.Part0 = p8
  1084. 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)
  1085. w8.Part1 = p9
  1086. 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)
  1087. w9 = Instance.new("Weld", p9)
  1088. w9.Name = "Part_Weld"
  1089. w9.Part0 = p9
  1090. 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)
  1091. w9.Part1 = p10
  1092. 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)
  1093. w10 = Instance.new("Weld", p10)
  1094. w10.Name = "Part_Weld"
  1095. w10.Part0 = p10
  1096. 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)
  1097. w10.Part1 = p11
  1098. 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)
  1099. w11 = Instance.new("Weld", p11)
  1100. w11.Name = "Part_Weld"
  1101. w11.Part0 = p11
  1102. 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)
  1103. w11.Part1 = p12
  1104. 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)
  1105. w12 = Instance.new("Weld", p12)
  1106. w12.Name = "Part_Weld"
  1107. w12.Part0 = p12
  1108. 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)
  1109. w12.Part1 = p13
  1110. 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)
  1111. w13 = Instance.new("Weld", p13)
  1112. w13.Name = "Part_Weld"
  1113. w13.Part0 = p13
  1114. 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)
  1115. w13.Part1 = p14
  1116. 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)
  1117. w14 = Instance.new("Weld", p14)
  1118. w14.Name = "ArmPart_Weld"
  1119. w14.Part0 = p14
  1120. 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)
  1121. w14.Part1 = p15
  1122. 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)
  1123. w15 = Instance.new("Weld", p15)
  1124. w15.Name = "Part_Weld"
  1125. w15.Part0 = p15
  1126. 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)
  1127. w15.Part1 = p16
  1128. 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)
  1129. w16 = Instance.new("Weld", p16)
  1130. w16.Name = "Part_Weld"
  1131. w16.Part0 = p16
  1132. 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)
  1133. w16.Part1 = p17
  1134. 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)
  1135. w17 = Instance.new("Weld", p17)
  1136. w17.Name = "Part_Weld"
  1137. w17.Part0 = p17
  1138. 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)
  1139. w17.Part1 = p18
  1140. 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)
  1141. w18 = Instance.new("Weld", p18)
  1142. w18.Name = "Part_Weld"
  1143. w18.Part0 = p18
  1144. 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)
  1145. w18.Part1 = p19
  1146. 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)
  1147. w19 = Instance.new("Weld", p19)
  1148. w19.Name = "Part_Weld"
  1149. w19.Part0 = p19
  1150. 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)
  1151. w19.Part1 = p20
  1152. 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)
  1153. w20 = Instance.new("Weld", p20)
  1154. w20.Name = "Part_Weld"
  1155. w20.Part0 = p20
  1156. 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)
  1157. w20.Part1 = p21
  1158. 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)
  1159. w21 = Instance.new("Weld", p21)
  1160. w21.Name = "Wedge_Weld"
  1161. w21.Part0 = p21
  1162. 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)
  1163. w21.Part1 = p22
  1164. 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)
  1165. w22 = Instance.new("Weld", p22)
  1166. w22.Name = "Part_Weld"
  1167. w22.Part0 = p22
  1168. 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)
  1169. w22.Part1 = p23
  1170. 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)
  1171. w23 = Instance.new("Weld", p23)
  1172. w23.Name = "Wedge_Weld"
  1173. w23.Part0 = p23
  1174. 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)
  1175. w23.Part1 = p24
  1176. 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)
  1177. w24 = Instance.new("Weld", p24)
  1178. w24.Name = "Part_Weld"
  1179. w24.Part0 = p24
  1180. 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)
  1181. w24.Part1 = p25
  1182. 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)
  1183. w25 = Instance.new("Weld", p25)
  1184. w25.Name = "Part_Weld"
  1185. w25.Part0 = p25
  1186. 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)
  1187. w25.Part1 = p26
  1188. 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)
  1189. m.Parent = char
  1190. m:MakeJoints()
  1191. ----------------------------------------------------
  1192. local cor2 = Instance.new("Part", char.Claw)
  1193. cor2.Name = "Thingy"
  1194. cor2.Locked = true
  1195. cor2.BottomSurface = 0
  1196. cor2.CanCollide = false
  1197. cor2.Size = Vector3.new(2, 1, 1)
  1198. cor2.Transparency = 1
  1199. cor2.TopSurface = 0
  1200. corw2 = Instance.new("Weld", cor2)
  1201. corw2.Part0 = larm
  1202. corw2.Part1 = cor2
  1203. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1204. corw2.C1 = CFrame.new(0, 0, 0)
  1205. weld2 = Instance.new("Weld", char.Claw)
  1206. weld2.Part0 = cor2
  1207. weld2.Part1 = char.Claw.ArmPart
  1208. weld2.C0 = CFrame.new(0, 0, 0)
  1209. ----------------------------------------------------
  1210. local m = Instance.new("Model")
  1211. m.Name = "LeftArm"
  1212. p1 = Instance.new("WedgePart", m)
  1213. p1.BrickColor = BrickColor.new("Lime green")
  1214. p1.Material = Enum.Material.Neon
  1215. p1.Name = "Wedge"
  1216. p1.FormFactor = Enum.FormFactor.Custom
  1217. p1.Size = Vector3.new(1, 1.19999981, 4)
  1218. 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)
  1219. p1.CanCollide = false
  1220. p1.Locked = true
  1221. p1.TopSurface = Enum.SurfaceType.Smooth
  1222. b1 = Instance.new("SpecialMesh", p1)
  1223. b1.MeshType = Enum.MeshType.Wedge
  1224. b1.Name = "Mesh"
  1225. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1226. p2 = Instance.new("WedgePart", m)
  1227. p2.BrickColor = BrickColor.new("Lime green")
  1228. p2.Material = Enum.Material.Neon
  1229. p2.Name = "Wedge"
  1230. p2.FormFactor = Enum.FormFactor.Custom
  1231. p2.Size = Vector3.new(1, 1.19999981, 4)
  1232. 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)
  1233. p2.CanCollide = false
  1234. p2.Locked = true
  1235. p2.TopSurface = Enum.SurfaceType.Smooth
  1236. b2 = Instance.new("SpecialMesh", p2)
  1237. b2.MeshType = Enum.MeshType.Wedge
  1238. b2.Name = "Mesh"
  1239. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1240. p3 = Instance.new("WedgePart", m)
  1241. p3.BrickColor = BrickColor.new("Lime green")
  1242. p3.Material = Enum.Material.Neon
  1243. p3.Name = "Wedge"
  1244. p3.FormFactor = Enum.FormFactor.Custom
  1245. p3.Size = Vector3.new(1, 1.19999981, 4)
  1246. 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)
  1247. p3.CanCollide = false
  1248. p3.Locked = true
  1249. p3.TopSurface = Enum.SurfaceType.Smooth
  1250. b3 = Instance.new("SpecialMesh", p3)
  1251. b3.MeshType = Enum.MeshType.Wedge
  1252. b3.Name = "Mesh"
  1253. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1254. p4 = Instance.new("WedgePart", m)
  1255. p4.BrickColor = BrickColor.new("Lime green")
  1256. p4.Material = Enum.Material.Neon
  1257. p4.Name = "Wedge"
  1258. p4.FormFactor = Enum.FormFactor.Custom
  1259. p4.Size = Vector3.new(1, 1.19999981, 4)
  1260. 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)
  1261. p4.CanCollide = false
  1262. p4.Locked = true
  1263. p4.TopSurface = Enum.SurfaceType.Smooth
  1264. b4 = Instance.new("SpecialMesh", p4)
  1265. b4.MeshType = Enum.MeshType.Wedge
  1266. b4.Name = "Mesh"
  1267. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1268. p5 = Instance.new("WedgePart", m)
  1269. p5.BrickColor = BrickColor.new("Lime green")
  1270. p5.Material = Enum.Material.Neon
  1271. p5.Name = "Wedge"
  1272. p5.FormFactor = Enum.FormFactor.Custom
  1273. p5.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1274. 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)
  1275. p5.CanCollide = false
  1276. p5.Locked = true
  1277. p5.TopSurface = Enum.SurfaceType.Smooth
  1278. b5 = Instance.new("SpecialMesh", p5)
  1279. b5.MeshType = Enum.MeshType.Wedge
  1280. b5.Name = "Mesh"
  1281. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1282. p6 = Instance.new("WedgePart", m)
  1283. p6.BrickColor = BrickColor.new("Lime green")
  1284. p6.Material = Enum.Material.Neon
  1285. p6.Name = "Wedge"
  1286. p6.FormFactor = Enum.FormFactor.Custom
  1287. p6.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1288. 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)
  1289. p6.CanCollide = false
  1290. p6.Locked = true
  1291. p6.TopSurface = Enum.SurfaceType.Smooth
  1292. b6 = Instance.new("SpecialMesh", p6)
  1293. b6.MeshType = Enum.MeshType.Wedge
  1294. b6.Name = "Mesh"
  1295. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1296. p7 = Instance.new("WedgePart", m)
  1297. p7.BrickColor = BrickColor.new("Lime green")
  1298. p7.Material = Enum.Material.Neon
  1299. p7.Name = "Wedge"
  1300. p7.FormFactor = Enum.FormFactor.Custom
  1301. p7.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1302. 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)
  1303. p7.CanCollide = false
  1304. p7.Locked = true
  1305. p7.TopSurface = Enum.SurfaceType.Smooth
  1306. b7 = Instance.new("SpecialMesh", p7)
  1307. b7.MeshType = Enum.MeshType.Wedge
  1308. b7.Name = "Mesh"
  1309. b7.Scale = Vector3.new(0.200000003, 1, 1)
  1310. p8 = Instance.new("Part", m)
  1311. p8.BrickColor = BrickColor.new("Really black")
  1312. p8.Material = Enum.Material.Neon
  1313. p8.FormFactor = Enum.FormFactor.Custom
  1314. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1315. 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)
  1316. p8.CanCollide = false
  1317. p8.Locked = true
  1318. p8.BottomSurface = Enum.SurfaceType.Smooth
  1319. p8.TopSurface = Enum.SurfaceType.Smooth
  1320. b8 = Instance.new("SpecialMesh", p8)
  1321. b8.MeshType = Enum.MeshType.Sphere
  1322. b8.Name = "Mesh"
  1323. p9 = Instance.new("Part", m)
  1324. p9.BrickColor = BrickColor.new("Really black")
  1325. p9.Material = Enum.Material.Neon
  1326. p9.FormFactor = Enum.FormFactor.Custom
  1327. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1328. 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)
  1329. p9.CanCollide = false
  1330. p9.Locked = true
  1331. p9.BottomSurface = Enum.SurfaceType.Smooth
  1332. p9.TopSurface = Enum.SurfaceType.Smooth
  1333. b9 = Instance.new("SpecialMesh", p9)
  1334. b9.MeshType = Enum.MeshType.Sphere
  1335. b9.Name = "Mesh"
  1336. p10 = Instance.new("Part", m)
  1337. p10.BrickColor = BrickColor.new("Lime green")
  1338. p10.Material = Enum.Material.Neon
  1339. p10.FormFactor = Enum.FormFactor.Custom
  1340. p10.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1341. 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)
  1342. p10.CanCollide = false
  1343. p10.Locked = true
  1344. p10.BottomSurface = Enum.SurfaceType.Smooth
  1345. p10.TopSurface = Enum.SurfaceType.Smooth
  1346. p11 = Instance.new("Part", m)
  1347. p11.BrickColor = BrickColor.new("Lime green")
  1348. p11.Material = Enum.Material.Neon
  1349. p11.FormFactor = Enum.FormFactor.Custom
  1350. p11.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1351. 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)
  1352. p11.CanCollide = false
  1353. p11.Locked = true
  1354. p11.BottomSurface = Enum.SurfaceType.Smooth
  1355. p11.TopSurface = Enum.SurfaceType.Smooth
  1356. p12 = Instance.new("Part", m)
  1357. p12.BrickColor = BrickColor.new("Really black")
  1358. p12.Material = Enum.Material.Neon
  1359. p12.FormFactor = Enum.FormFactor.Custom
  1360. p12.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1361. 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)
  1362. p12.CanCollide = false
  1363. p12.Locked = true
  1364. p12.BottomSurface = Enum.SurfaceType.Smooth
  1365. p12.TopSurface = Enum.SurfaceType.Smooth
  1366. b10 = Instance.new("SpecialMesh", p12)
  1367. b10.MeshType = Enum.MeshType.Sphere
  1368. b10.Name = "Mesh"
  1369. p13 = Instance.new("Part", m)
  1370. p13.BrickColor = BrickColor.new("Lime green")
  1371. p13.Material = Enum.Material.Neon
  1372. p13.FormFactor = Enum.FormFactor.Custom
  1373. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1374. 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)
  1375. p13.CanCollide = false
  1376. p13.Locked = true
  1377. p13.BottomSurface = Enum.SurfaceType.Smooth
  1378. p13.TopSurface = Enum.SurfaceType.Smooth
  1379. b11 = Instance.new("SpecialMesh", p13)
  1380. b11.MeshType = Enum.MeshType.Sphere
  1381. b11.Name = "Mesh"
  1382. p14 = Instance.new("Part", m)
  1383. p14.BrickColor = BrickColor.new("Really black")
  1384. p14.Material = Enum.Material.Neon
  1385. p14.FormFactor = Enum.FormFactor.Custom
  1386. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1387. 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)
  1388. p14.CanCollide = false
  1389. p14.Locked = true
  1390. p14.BottomSurface = Enum.SurfaceType.Smooth
  1391. p14.TopSurface = Enum.SurfaceType.Smooth
  1392. b12 = Instance.new("SpecialMesh", p14)
  1393. b12.MeshType = Enum.MeshType.Sphere
  1394. b12.Name = "Mesh"
  1395. p15 = Instance.new("Part", m)
  1396. p15.BrickColor = BrickColor.new("Really black")
  1397. p15.Material = Enum.Material.Metal
  1398. p15.Name = "Main"
  1399. p15.FormFactor = Enum.FormFactor.Custom
  1400. p15.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1401. 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)
  1402. p15.CanCollide = false
  1403. p15.Locked = true
  1404. p15.BottomSurface = Enum.SurfaceType.Smooth
  1405. p15.TopSurface = Enum.SurfaceType.Smooth
  1406. p16 = Instance.new("Part", m)
  1407. p16.BrickColor = BrickColor.new("Really black")
  1408. p16.Material = Enum.Material.Neon
  1409. p16.FormFactor = Enum.FormFactor.Custom
  1410. p16.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1411. 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)
  1412. p16.CanCollide = false
  1413. p16.Locked = true
  1414. p16.BottomSurface = Enum.SurfaceType.Smooth
  1415. p16.TopSurface = Enum.SurfaceType.Smooth
  1416. b13 = Instance.new("SpecialMesh", p16)
  1417. b13.MeshType = Enum.MeshType.Sphere
  1418. b13.Name = "Mesh"
  1419. p17 = Instance.new("Part", m)
  1420. p17.BrickColor = BrickColor.new("Lime green")
  1421. p17.Material = Enum.Material.Neon
  1422. p17.FormFactor = Enum.FormFactor.Custom
  1423. p17.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1424. 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)
  1425. p17.CanCollide = false
  1426. p17.Locked = true
  1427. p17.BottomSurface = Enum.SurfaceType.Smooth
  1428. p17.TopSurface = Enum.SurfaceType.Smooth
  1429. p18 = Instance.new("Part", m)
  1430. p18.BrickColor = BrickColor.new("Lime green")
  1431. p18.Material = Enum.Material.Neon
  1432. p18.FormFactor = Enum.FormFactor.Custom
  1433. p18.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1434. 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)
  1435. p18.CanCollide = false
  1436. p18.Locked = true
  1437. p18.BottomSurface = Enum.SurfaceType.Smooth
  1438. p18.TopSurface = Enum.SurfaceType.Smooth
  1439. p19 = Instance.new("Part", m)
  1440. p19.BrickColor = BrickColor.new("Lime green")
  1441. p19.Material = Enum.Material.Neon
  1442. p19.FormFactor = Enum.FormFactor.Custom
  1443. p19.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  1444. 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)
  1445. p19.CanCollide = false
  1446. p19.Locked = true
  1447. p19.BottomSurface = Enum.SurfaceType.Smooth
  1448. p19.TopSurface = Enum.SurfaceType.Smooth
  1449. p20 = Instance.new("Part", m)
  1450. p20.BrickColor = BrickColor.new("Lime green")
  1451. p20.Material = Enum.Material.Neon
  1452. p20.FormFactor = Enum.FormFactor.Custom
  1453. p20.Size = Vector3.new(0.200000048, 0.899999917, 0.200000048)
  1454. 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)
  1455. p20.CanCollide = false
  1456. p20.Locked = true
  1457. p20.BottomSurface = Enum.SurfaceType.Smooth
  1458. p20.TopSurface = Enum.SurfaceType.Smooth
  1459. p21 = Instance.new("Part", m)
  1460. p21.BrickColor = BrickColor.new("Lime green")
  1461. p21.Material = Enum.Material.Neon
  1462. p21.FormFactor = Enum.FormFactor.Custom
  1463. p21.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  1464. 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)
  1465. p21.CanCollide = false
  1466. p21.Locked = true
  1467. p21.BottomSurface = Enum.SurfaceType.Smooth
  1468. p21.TopSurface = Enum.SurfaceType.Smooth
  1469. p22 = Instance.new("Part", m)
  1470. p22.BrickColor = BrickColor.new("Really black")
  1471. p22.Material = Enum.Material.Neon
  1472. p22.FormFactor = Enum.FormFactor.Custom
  1473. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1474. 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)
  1475. p22.CanCollide = false
  1476. p22.Locked = true
  1477. p22.BottomSurface = Enum.SurfaceType.Smooth
  1478. p22.TopSurface = Enum.SurfaceType.Smooth
  1479. b14 = Instance.new("SpecialMesh", p22)
  1480. b14.MeshType = Enum.MeshType.Sphere
  1481. b14.Name = "Mesh"
  1482. p23 = Instance.new("Part", m)
  1483. p23.BrickColor = BrickColor.new("Really black")
  1484. p23.Material = Enum.Material.Neon
  1485. p23.FormFactor = Enum.FormFactor.Custom
  1486. p23.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1487. 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)
  1488. p23.CanCollide = false
  1489. p23.Locked = true
  1490. p23.BottomSurface = Enum.SurfaceType.Smooth
  1491. p23.TopSurface = Enum.SurfaceType.Smooth
  1492. b15 = Instance.new("SpecialMesh", p23)
  1493. b15.MeshType = Enum.MeshType.Sphere
  1494. b15.Name = "Mesh"
  1495. p24 = Instance.new("Part", m)
  1496. p24.BrickColor = BrickColor.new("Really black")
  1497. p24.Material = Enum.Material.Neon
  1498. p24.FormFactor = Enum.FormFactor.Custom
  1499. p24.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1500. 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)
  1501. p24.CanCollide = false
  1502. p24.Locked = true
  1503. p24.BottomSurface = Enum.SurfaceType.Smooth
  1504. p24.TopSurface = Enum.SurfaceType.Smooth
  1505. b16 = Instance.new("SpecialMesh", p24)
  1506. b16.MeshType = Enum.MeshType.Sphere
  1507. b16.Name = "Mesh"
  1508. w1 = Instance.new("Weld", p1)
  1509. w1.Name = "Wedge_Weld"
  1510. w1.Part0 = p1
  1511. 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)
  1512. w1.Part1 = p2
  1513. 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)
  1514. w2 = Instance.new("Weld", p2)
  1515. w2.Name = "Wedge_Weld"
  1516. w2.Part0 = p2
  1517. 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)
  1518. w2.Part1 = p3
  1519. 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)
  1520. w3 = Instance.new("Weld", p3)
  1521. w3.Name = "Wedge_Weld"
  1522. w3.Part0 = p3
  1523. 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)
  1524. w3.Part1 = p4
  1525. 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)
  1526. w4 = Instance.new("Weld", p4)
  1527. w4.Name = "Wedge_Weld"
  1528. w4.Part0 = p4
  1529. 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)
  1530. w4.Part1 = p5
  1531. 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)
  1532. w5 = Instance.new("Weld", p5)
  1533. w5.Name = "Wedge_Weld"
  1534. w5.Part0 = p5
  1535. 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)
  1536. w5.Part1 = p6
  1537. 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)
  1538. w6 = Instance.new("Weld", p6)
  1539. w6.Name = "Wedge_Weld"
  1540. w6.Part0 = p6
  1541. 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)
  1542. w6.Part1 = p7
  1543. 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)
  1544. w7 = Instance.new("Weld", p7)
  1545. w7.Name = "Part_Weld"
  1546. w7.Part0 = p7
  1547. 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)
  1548. w7.Part1 = p8
  1549. 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)
  1550. w8 = Instance.new("Weld", p8)
  1551. w8.Name = "Part_Weld"
  1552. w8.Part0 = p8
  1553. 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)
  1554. w8.Part1 = p9
  1555. 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)
  1556. w9 = Instance.new("Weld", p9)
  1557. w9.Name = "Part_Weld"
  1558. w9.Part0 = p9
  1559. 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)
  1560. w9.Part1 = p10
  1561. 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)
  1562. w10 = Instance.new("Weld", p10)
  1563. w10.Name = "Part_Weld"
  1564. w10.Part0 = p10
  1565. 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)
  1566. w10.Part1 = p11
  1567. 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)
  1568. w11 = Instance.new("Weld", p11)
  1569. w11.Name = "Part_Weld"
  1570. w11.Part0 = p11
  1571. 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)
  1572. w11.Part1 = p12
  1573. 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)
  1574. w12 = Instance.new("Weld", p12)
  1575. w12.Name = "Part_Weld"
  1576. w12.Part0 = p12
  1577. 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)
  1578. w12.Part1 = p13
  1579. 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)
  1580. w13 = Instance.new("Weld", p13)
  1581. w13.Name = "Part_Weld"
  1582. w13.Part0 = p13
  1583. 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)
  1584. w13.Part1 = p14
  1585. 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)
  1586. w14 = Instance.new("Weld", p14)
  1587. w14.Name = "Part_Weld"
  1588. w14.Part0 = p14
  1589. 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)
  1590. w14.Part1 = p15
  1591. 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)
  1592. w15 = Instance.new("Weld", p15)
  1593. w15.Name = "Part_Weld"
  1594. w15.Part0 = p15
  1595. 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)
  1596. w15.Part1 = p16
  1597. 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)
  1598. w16 = Instance.new("Weld", p16)
  1599. w16.Name = "Part_Weld"
  1600. w16.Part0 = p16
  1601. 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)
  1602. w16.Part1 = p17
  1603. 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)
  1604. w17 = Instance.new("Weld", p17)
  1605. w17.Name = "Part_Weld"
  1606. w17.Part0 = p17
  1607. 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)
  1608. w17.Part1 = p18
  1609. 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)
  1610. w18 = Instance.new("Weld", p18)
  1611. w18.Name = "Part_Weld"
  1612. w18.Part0 = p18
  1613. 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)
  1614. w18.Part1 = p19
  1615. 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)
  1616. w19 = Instance.new("Weld", p19)
  1617. w19.Name = "Part_Weld"
  1618. w19.Part0 = p19
  1619. 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)
  1620. w19.Part1 = p20
  1621. 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)
  1622. w20 = Instance.new("Weld", p20)
  1623. w20.Name = "Part_Weld"
  1624. w20.Part0 = p20
  1625. 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)
  1626. w20.Part1 = p21
  1627. 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)
  1628. w21 = Instance.new("Weld", p21)
  1629. w21.Name = "Part_Weld"
  1630. w21.Part0 = p21
  1631. 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)
  1632. w21.Part1 = p22
  1633. 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)
  1634. w22 = Instance.new("Weld", p22)
  1635. w22.Name = "Part_Weld"
  1636. w22.Part0 = p22
  1637. 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)
  1638. w22.Part1 = p23
  1639. 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)
  1640. w23 = Instance.new("Weld", p23)
  1641. w23.Name = "Part_Weld"
  1642. w23.Part0 = p23
  1643. 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)
  1644. w23.Part1 = p24
  1645. 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)
  1646. w24 = Instance.new("Weld", p24)
  1647. w24.Name = "Part_Weld"
  1648. w24.Part0 = p24
  1649. 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)
  1650. m.Parent = larm
  1651. m:MakeJoints()
  1652. ----------------------------------------------------
  1653. local cor3 = Instance.new("Part", larm.LeftArm)
  1654. cor3.Name = "Thingy"
  1655. cor3.Locked = true
  1656. cor3.BottomSurface = 0
  1657. cor3.CanCollide = false
  1658. cor3.Size = Vector3.new(2, 1, 1)
  1659. cor3.Transparency = 1
  1660. cor3.TopSurface = 0
  1661. corw2 = Instance.new("Weld", cor3)
  1662. corw2.Part0 = larm
  1663. corw2.Part1 = cor3
  1664. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1665. corw2.C1 = CFrame.new(0, 0, 0)
  1666. weld2 = Instance.new("Weld", larm.LeftArm)
  1667. weld2.Part0 = cor3
  1668. weld2.Part1 = p15
  1669. weld2.C0 = CFrame.new(0, 0, 0)
  1670. ----------------------------------------------------
  1671. local m = Instance.new("Model")
  1672. m.Name = "RightArm"
  1673. p1 = Instance.new("WedgePart", m)
  1674. p1.BrickColor = BrickColor.new("Lime green")
  1675. p1.Material = Enum.Material.Neon
  1676. p1.Name = "Wedge"
  1677. p1.FormFactor = Enum.FormFactor.Custom
  1678. p1.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1679. 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)
  1680. p1.CanCollide = false
  1681. p1.Locked = true
  1682. p1.TopSurface = Enum.SurfaceType.Smooth
  1683. b1 = Instance.new("SpecialMesh", p1)
  1684. b1.MeshType = Enum.MeshType.Wedge
  1685. b1.Name = "Mesh"
  1686. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1687. p2 = Instance.new("WedgePart", m)
  1688. p2.BrickColor = BrickColor.new("Lime green")
  1689. p2.Material = Enum.Material.Neon
  1690. p2.Name = "Wedge"
  1691. p2.FormFactor = Enum.FormFactor.Custom
  1692. p2.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1693. 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)
  1694. p2.CanCollide = false
  1695. p2.Locked = true
  1696. p2.TopSurface = Enum.SurfaceType.Smooth
  1697. b2 = Instance.new("SpecialMesh", p2)
  1698. b2.MeshType = Enum.MeshType.Wedge
  1699. b2.Name = "Mesh"
  1700. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1701. p3 = Instance.new("WedgePart", m)
  1702. p3.BrickColor = BrickColor.new("Lime green")
  1703. p3.Material = Enum.Material.Neon
  1704. p3.Name = "Wedge"
  1705. p3.FormFactor = Enum.FormFactor.Custom
  1706. p3.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1707. 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)
  1708. p3.CanCollide = false
  1709. p3.Locked = true
  1710. p3.TopSurface = Enum.SurfaceType.Smooth
  1711. b3 = Instance.new("SpecialMesh", p3)
  1712. b3.MeshType = Enum.MeshType.Wedge
  1713. b3.Name = "Mesh"
  1714. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1715. p4 = Instance.new("WedgePart", m)
  1716. p4.BrickColor = BrickColor.new("Lime green")
  1717. p4.Material = Enum.Material.Neon
  1718. p4.Name = "Wedge"
  1719. p4.FormFactor = Enum.FormFactor.Custom
  1720. p4.Size = Vector3.new(1, 1.19999981, 4)
  1721. 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)
  1722. p4.CanCollide = false
  1723. p4.Locked = true
  1724. p4.TopSurface = Enum.SurfaceType.Smooth
  1725. b4 = Instance.new("SpecialMesh", p4)
  1726. b4.MeshType = Enum.MeshType.Wedge
  1727. b4.Name = "Mesh"
  1728. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1729. p5 = Instance.new("WedgePart", m)
  1730. p5.BrickColor = BrickColor.new("Lime green")
  1731. p5.Material = Enum.Material.Neon
  1732. p5.Name = "Wedge"
  1733. p5.FormFactor = Enum.FormFactor.Custom
  1734. p5.Size = Vector3.new(1, 1.19999981, 4)
  1735. 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)
  1736. p5.CanCollide = false
  1737. p5.Locked = true
  1738. p5.TopSurface = Enum.SurfaceType.Smooth
  1739. b5 = Instance.new("SpecialMesh", p5)
  1740. b5.MeshType = Enum.MeshType.Wedge
  1741. b5.Name = "Mesh"
  1742. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1743. p6 = Instance.new("WedgePart", m)
  1744. p6.BrickColor = BrickColor.new("Lime green")
  1745. p6.Material = Enum.Material.Neon
  1746. p6.Name = "Wedge"
  1747. p6.FormFactor = Enum.FormFactor.Custom
  1748. p6.Size = Vector3.new(1, 1.19999981, 4)
  1749. 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)
  1750. p6.CanCollide = false
  1751. p6.Locked = true
  1752. p6.TopSurface = Enum.SurfaceType.Smooth
  1753. b6 = Instance.new("SpecialMesh", p6)
  1754. b6.MeshType = Enum.MeshType.Wedge
  1755. b6.Name = "Mesh"
  1756. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1757. p7 = Instance.new("Part", m)
  1758. p7.BrickColor = BrickColor.new("Really black")
  1759. p7.Material = Enum.Material.Neon
  1760. p7.FormFactor = Enum.FormFactor.Custom
  1761. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1762. 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)
  1763. p7.CanCollide = false
  1764. p7.Locked = true
  1765. p7.BottomSurface = Enum.SurfaceType.Smooth
  1766. p7.TopSurface = Enum.SurfaceType.Smooth
  1767. b7 = Instance.new("SpecialMesh", p7)
  1768. b7.MeshType = Enum.MeshType.Sphere
  1769. b7.Name = "Mesh"
  1770. p8 = Instance.new("Part", m)
  1771. p8.BrickColor = BrickColor.new("Lime green")
  1772. p8.Material = Enum.Material.Neon
  1773. p8.FormFactor = Enum.FormFactor.Custom
  1774. p8.Size = Vector3.new(0.200000048, 0.999999881, 0.200000048)
  1775. 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)
  1776. p8.CanCollide = false
  1777. p8.Locked = true
  1778. p8.BottomSurface = Enum.SurfaceType.Smooth
  1779. p8.TopSurface = Enum.SurfaceType.Smooth
  1780. p9 = Instance.new("Part", m)
  1781. p9.BrickColor = BrickColor.new("Really black")
  1782. p9.Material = Enum.Material.Neon
  1783. p9.FormFactor = Enum.FormFactor.Custom
  1784. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1785. 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)
  1786. p9.CanCollide = false
  1787. p9.Locked = true
  1788. p9.BottomSurface = Enum.SurfaceType.Smooth
  1789. p9.TopSurface = Enum.SurfaceType.Smooth
  1790. b8 = Instance.new("SpecialMesh", p9)
  1791. b8.MeshType = Enum.MeshType.Sphere
  1792. b8.Name = "Mesh"
  1793. p10 = Instance.new("Part", m)
  1794. p10.BrickColor = BrickColor.new("Really black")
  1795. p10.Material = Enum.Material.Neon
  1796. p10.FormFactor = Enum.FormFactor.Custom
  1797. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1798. 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)
  1799. p10.CanCollide = false
  1800. p10.Locked = true
  1801. p10.BottomSurface = Enum.SurfaceType.Smooth
  1802. p10.TopSurface = Enum.SurfaceType.Smooth
  1803. b9 = Instance.new("SpecialMesh", p10)
  1804. b9.MeshType = Enum.MeshType.Sphere
  1805. b9.Name = "Mesh"
  1806. p11 = Instance.new("Part", m)
  1807. p11.BrickColor = BrickColor.new("Lime green")
  1808. p11.Material = Enum.Material.Neon
  1809. p11.FormFactor = Enum.FormFactor.Custom
  1810. p11.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1811. 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)
  1812. p11.CanCollide = false
  1813. p11.Locked = true
  1814. p11.BottomSurface = Enum.SurfaceType.Smooth
  1815. p11.TopSurface = Enum.SurfaceType.Smooth
  1816. p12 = Instance.new("Part", m)
  1817. p12.BrickColor = BrickColor.new("Lime green")
  1818. p12.Material = Enum.Material.Neon
  1819. p12.FormFactor = Enum.FormFactor.Custom
  1820. p12.Size = Vector3.new(0.200000048, 1.5999999, 0.200000048)
  1821. 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)
  1822. p12.CanCollide = false
  1823. p12.Locked = true
  1824. p12.BottomSurface = Enum.SurfaceType.Smooth
  1825. p12.TopSurface = Enum.SurfaceType.Smooth
  1826. p13 = Instance.new("Part", m)
  1827. p13.BrickColor = BrickColor.new("Lime green")
  1828. p13.Material = Enum.Material.Neon
  1829. p13.FormFactor = Enum.FormFactor.Custom
  1830. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1831. 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)
  1832. p13.CanCollide = false
  1833. p13.Locked = true
  1834. p13.BottomSurface = Enum.SurfaceType.Smooth
  1835. p13.TopSurface = Enum.SurfaceType.Smooth
  1836. b10 = Instance.new("SpecialMesh", p13)
  1837. b10.MeshType = Enum.MeshType.Sphere
  1838. b10.Name = "Mesh"
  1839. p14 = Instance.new("Part", m)
  1840. p14.BrickColor = BrickColor.new("Really black")
  1841. p14.Material = Enum.Material.Metal
  1842. p14.Name = "Main"
  1843. p14.FormFactor = Enum.FormFactor.Custom
  1844. p14.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1845. 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)
  1846. p14.CanCollide = false
  1847. p14.Locked = true
  1848. p14.BottomSurface = Enum.SurfaceType.Smooth
  1849. p14.TopSurface = Enum.SurfaceType.Smooth
  1850. p15 = Instance.new("Part", m)
  1851. p15.BrickColor = BrickColor.new("Really black")
  1852. p15.Material = Enum.Material.Neon
  1853. p15.FormFactor = Enum.FormFactor.Custom
  1854. p15.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1855. 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)
  1856. p15.CanCollide = false
  1857. p15.Locked = true
  1858. p15.BottomSurface = Enum.SurfaceType.Smooth
  1859. p15.TopSurface = Enum.SurfaceType.Smooth
  1860. b11 = Instance.new("SpecialMesh", p15)
  1861. b11.MeshType = Enum.MeshType.Sphere
  1862. b11.Name = "Mesh"
  1863. p16 = Instance.new("Part", m)
  1864. p16.BrickColor = BrickColor.new("Lime green")
  1865. p16.Material = Enum.Material.Neon
  1866. p16.FormFactor = Enum.FormFactor.Custom
  1867. p16.Size = Vector3.new(0.200000048, 0.899999857, 0.200000048)
  1868. 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)
  1869. p16.CanCollide = false
  1870. p16.Locked = true
  1871. p16.BottomSurface = Enum.SurfaceType.Smooth
  1872. p16.TopSurface = Enum.SurfaceType.Smooth
  1873. p17 = Instance.new("Part", m)
  1874. p17.BrickColor = BrickColor.new("Lime green")
  1875. p17.Material = Enum.Material.Neon
  1876. p17.FormFactor = Enum.FormFactor.Custom
  1877. p17.Size = Vector3.new(0.200000048, 0.599999785, 0.200000048)
  1878. 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)
  1879. p17.CanCollide = false
  1880. p17.Locked = true
  1881. p17.BottomSurface = Enum.SurfaceType.Smooth
  1882. p17.TopSurface = Enum.SurfaceType.Smooth
  1883. p18 = Instance.new("Part", m)
  1884. p18.BrickColor = BrickColor.new("Really black")
  1885. p18.Material = Enum.Material.Neon
  1886. p18.FormFactor = Enum.FormFactor.Custom
  1887. p18.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1888. 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)
  1889. p18.CanCollide = false
  1890. p18.Locked = true
  1891. p18.BottomSurface = Enum.SurfaceType.Smooth
  1892. p18.TopSurface = Enum.SurfaceType.Smooth
  1893. b12 = Instance.new("SpecialMesh", p18)
  1894. b12.MeshType = Enum.MeshType.Sphere
  1895. b12.Name = "Mesh"
  1896. p19 = Instance.new("Part", m)
  1897. p19.BrickColor = BrickColor.new("Really black")
  1898. p19.Material = Enum.Material.Neon
  1899. p19.FormFactor = Enum.FormFactor.Custom
  1900. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1901. 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)
  1902. p19.CanCollide = false
  1903. p19.Locked = true
  1904. p19.BottomSurface = Enum.SurfaceType.Smooth
  1905. p19.TopSurface = Enum.SurfaceType.Smooth
  1906. b13 = Instance.new("SpecialMesh", p19)
  1907. b13.MeshType = Enum.MeshType.Sphere
  1908. b13.Name = "Mesh"
  1909. w1 = Instance.new("Weld", p1)
  1910. w1.Name = "Wedge_Weld"
  1911. w1.Part0 = p1
  1912. 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)
  1913. w1.Part1 = p2
  1914. 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)
  1915. w2 = Instance.new("Weld", p2)
  1916. w2.Name = "Wedge_Weld"
  1917. w2.Part0 = p2
  1918. 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)
  1919. w2.Part1 = p3
  1920. 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)
  1921. w3 = Instance.new("Weld", p3)
  1922. w3.Name = "Wedge_Weld"
  1923. w3.Part0 = p3
  1924. 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)
  1925. w3.Part1 = p4
  1926. 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)
  1927. w4 = Instance.new("Weld", p4)
  1928. w4.Name = "Wedge_Weld"
  1929. w4.Part0 = p4
  1930. 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)
  1931. w4.Part1 = p5
  1932. 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)
  1933. w5 = Instance.new("Weld", p5)
  1934. w5.Name = "Wedge_Weld"
  1935. w5.Part0 = p5
  1936. 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)
  1937. w5.Part1 = p6
  1938. 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)
  1939. w6 = Instance.new("Weld", p6)
  1940. w6.Name = "Part_Weld"
  1941. w6.Part0 = p6
  1942. 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)
  1943. w6.Part1 = p7
  1944. 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)
  1945. w7 = Instance.new("Weld", p7)
  1946. w7.Name = "Part_Weld"
  1947. w7.Part0 = p7
  1948. 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)
  1949. w7.Part1 = p8
  1950. 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)
  1951. w8 = Instance.new("Weld", p8)
  1952. w8.Name = "Part_Weld"
  1953. w8.Part0 = p8
  1954. 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)
  1955. w8.Part1 = p9
  1956. 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)
  1957. w9 = Instance.new("Weld", p9)
  1958. w9.Name = "Part_Weld"
  1959. w9.Part0 = p9
  1960. 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)
  1961. w9.Part1 = p10
  1962. 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)
  1963. w10 = Instance.new("Weld", p10)
  1964. w10.Name = "Part_Weld"
  1965. w10.Part0 = p10
  1966. 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)
  1967. w10.Part1 = p11
  1968. 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)
  1969. w11 = Instance.new("Weld", p11)
  1970. w11.Name = "Part_Weld"
  1971. w11.Part0 = p11
  1972. 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)
  1973. w11.Part1 = p12
  1974. 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)
  1975. w12 = Instance.new("Weld", p12)
  1976. w12.Name = "Part_Weld"
  1977. w12.Part0 = p12
  1978. 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)
  1979. w12.Part1 = p13
  1980. 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)
  1981. w13 = Instance.new("Weld", p13)
  1982. w13.Name = "Part_Weld"
  1983. w13.Part0 = p13
  1984. 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)
  1985. w13.Part1 = p14
  1986. 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)
  1987. w14 = Instance.new("Weld", p14)
  1988. w14.Name = "Part_Weld"
  1989. w14.Part0 = p14
  1990. 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)
  1991. w14.Part1 = p15
  1992. 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)
  1993. w15 = Instance.new("Weld", p15)
  1994. w15.Name = "Part_Weld"
  1995. w15.Part0 = p15
  1996. 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)
  1997. w15.Part1 = p16
  1998. 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)
  1999. w16 = Instance.new("Weld", p16)
  2000. w16.Name = "Part_Weld"
  2001. w16.Part0 = p16
  2002. 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)
  2003. w16.Part1 = p17
  2004. 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)
  2005. w17 = Instance.new("Weld", p17)
  2006. w17.Name = "Part_Weld"
  2007. w17.Part0 = p17
  2008. 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)
  2009. w17.Part1 = p18
  2010. 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)
  2011. w18 = Instance.new("Weld", p18)
  2012. w18.Name = "Part_Weld"
  2013. w18.Part0 = p18
  2014. 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)
  2015. w18.Part1 = p19
  2016. 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)
  2017. w19 = Instance.new("Weld", p19)
  2018. w19.Name = "Wedge_Weld"
  2019. w19.Part0 = p19
  2020. 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)
  2021. m.Parent = rarm
  2022. m:MakeJoints()
  2023. ----------------------------------------------------
  2024. local cor4 = Instance.new("Part", rarm.RightArm)
  2025. cor4.Name = "Thingy"
  2026. cor4.Locked = true
  2027. cor4.BottomSurface = 0
  2028. cor4.CanCollide = false
  2029. cor4.Size = Vector3.new(2, 1, 1)
  2030. cor4.Transparency = 1
  2031. cor4.TopSurface = 0
  2032. corw2 = Instance.new("Weld", cor4)
  2033. corw2.Part0 = rarm
  2034. corw2.Part1 = cor4
  2035. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2036. corw2.C1 = CFrame.new(0, 0, 0)
  2037. weld2 = Instance.new("Weld", rarm.RightArm)
  2038. weld2.Part0 = cor4
  2039. weld2.Part1 = p14
  2040. weld2.C0 = CFrame.new(0, 0, 0)
  2041. ----------------------------------------------------
  2042. local m = Instance.new("Model")
  2043. m.Name = "Torso"
  2044. p1 = Instance.new("Part", m)
  2045. p1.BrickColor = BrickColor.new("Really black")
  2046. p1.Material = Enum.Material.Neon
  2047. p1.FormFactor = Enum.FormFactor.Custom
  2048. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2049. p1.CFrame = CFrame.new(67.3119202, 9.5997963, -14.263937, 1.00006402, 1.86259939e-007, 2.23464554e-008, -1.44914884e-006, 0.999991, -1.49014099e-008, -1.51248571e-006, 5.96053269e-008, 1.00005186)
  2050. p1.CanCollide = false
  2051. p1.Locked = true
  2052. p1.BottomSurface = Enum.SurfaceType.Smooth
  2053. p1.TopSurface = Enum.SurfaceType.Smooth
  2054. b1 = Instance.new("SpecialMesh", p1)
  2055. b1.MeshType = Enum.MeshType.Sphere
  2056. b1.Name = "Mesh"
  2057. p2 = Instance.new("Part", m)
  2058. p2.BrickColor = BrickColor.new("Really black")
  2059. p2.Material = Enum.Material.Neon
  2060. p2.FormFactor = Enum.FormFactor.Custom
  2061. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2062. p2.CFrame = CFrame.new(65.0111618, 9.59981537, -14.2638226, 1.00005496, 2.75671482e-007, 1.2665987e-007, -1.35973096e-006, 0.999992192, -2.98023224e-008, -1.40815973e-006, 4.47034836e-008, 1.00004447)
  2063. p2.CanCollide = false
  2064. p2.Locked = true
  2065. p2.BottomSurface = Enum.SurfaceType.Smooth
  2066. p2.TopSurface = Enum.SurfaceType.Smooth
  2067. b2 = Instance.new("SpecialMesh", p2)
  2068. b2.MeshType = Enum.MeshType.Sphere
  2069. b2.Name = "Mesh"
  2070. p3 = Instance.new("Part", m)
  2071. p3.BrickColor = BrickColor.new("Lime green")
  2072. p3.Material = Enum.Material.Neon
  2073. p3.FormFactor = Enum.FormFactor.Custom
  2074. p3.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2075. p3.CFrame = CFrame.new(67.6028595, 9.39744663, -14.2168236, 0.491504252, -0.868347466, -0.0669902489, 0.834227681, 0.491479307, -0.249998316, 0.250008702, 0.0669909269, 0.965961695)
  2076. p3.CanCollide = false
  2077. p3.Locked = true
  2078. p3.BottomSurface = Enum.SurfaceType.Smooth
  2079. p3.TopSurface = Enum.SurfaceType.Smooth
  2080. p4 = Instance.new("Part", m)
  2081. p4.BrickColor = BrickColor.new("Lime green")
  2082. p4.Material = Enum.Material.Neon
  2083. p4.FormFactor = Enum.FormFactor.Custom
  2084. p4.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2085. p4.CFrame = CFrame.new(64.6849442, 9.10655022, -14.2635975, 0.866056859, 0.500018656, 3.35280106e-007, -0.49999845, 0.866020203, -2.98035943e-008, -1.06866298e-006, -5.48167122e-007, 1.00002968)
  2086. p4.CanCollide = false
  2087. p4.Locked = true
  2088. p4.BottomSurface = Enum.SurfaceType.Smooth
  2089. p4.TopSurface = Enum.SurfaceType.Smooth
  2090. p5 = Instance.new("Part", m)
  2091. p5.BrickColor = BrickColor.new("Lime green")
  2092. p5.Material = Enum.Material.Neon
  2093. p5.FormFactor = Enum.FormFactor.Custom
  2094. p5.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2095. p5.CFrame = CFrame.new(66.9344177, 8.96636868, -14.2634897, -0.866048932, -0.500014246, 4.3958832e-007, 0.499999046, -0.866021395, -4.47044108e-008, 9.70867745e-007, 5.08911796e-007, 1.00002229)
  2096. p5.CanCollide = false
  2097. p5.Locked = true
  2098. p5.BottomSurface = Enum.SurfaceType.Smooth
  2099. p5.TopSurface = Enum.SurfaceType.Smooth
  2100. p6 = Instance.new("Part", m)
  2101. p6.BrickColor = BrickColor.new("Lime green")
  2102. p6.Material = Enum.Material.Neon
  2103. p6.FormFactor = Enum.FormFactor.Custom
  2104. p6.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2105. p6.CFrame = CFrame.new(65.358757, 9.04366112, -14.2633762, -0.866041601, 0.500008702, 5.43894771e-007, -0.499997824, -0.8660236, -5.96051208e-008, 8.43271948e-007, -5.21275751e-007, 1.0000149)
  2106. p6.CanCollide = false
  2107. p6.Locked = true
  2108. p6.BottomSurface = Enum.SurfaceType.Smooth
  2109. p6.TopSurface = Enum.SurfaceType.Smooth
  2110. p7 = Instance.new("Part", m)
  2111. p7.BrickColor = BrickColor.new("Really black")
  2112. p7.Material = Enum.Material.Neon
  2113. p7.FormFactor = Enum.FormFactor.Custom
  2114. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2115. p7.CFrame = CFrame.new(68.0082169, 9.19989014, -14.2632694, 1.00001383, 6.37024641e-007, 5.36441803e-007, -9.46223736e-007, 0.999997973, -1.04308121e-007, -8.7916851e-007, 5.96046519e-008, 1.00001121)
  2116. p7.CanCollide = false
  2117. p7.Locked = true
  2118. p7.BottomSurface = Enum.SurfaceType.Smooth
  2119. p7.TopSurface = Enum.SurfaceType.Smooth
  2120. b3 = Instance.new("SpecialMesh", p7)
  2121. b3.MeshType = Enum.MeshType.Sphere
  2122. b3.Name = "Mesh"
  2123. p8 = Instance.new("Part", m)
  2124. p8.BrickColor = BrickColor.new("Really black")
  2125. p8.Material = Enum.Material.Neon
  2126. p8.FormFactor = Enum.FormFactor.Custom
  2127. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2128. p8.CFrame = CFrame.new(64.4081497, 8.59989357, -14.2632627, 1.00001383, 5.32715489e-007, 5.6624458e-007, -8.4191629e-007, 0.999997973, -2.980277e-008, -9.08971174e-007, -1.4901623e-008, 1.00001121)
  2129. p8.CanCollide = false
  2130. p8.Locked = true
  2131. p8.BottomSurface = Enum.SurfaceType.Smooth
  2132. p8.TopSurface = Enum.SurfaceType.Smooth
  2133. b4 = Instance.new("SpecialMesh", p8)
  2134. b4.MeshType = Enum.MeshType.Sphere
  2135. b4.Name = "Mesh"
  2136. p9 = Instance.new("Part", m)
  2137. p9.BrickColor = BrickColor.new("Really black")
  2138. p9.Material = Enum.Material.Neon
  2139. p9.FormFactor = Enum.FormFactor.Custom
  2140. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2141. p9.CFrame = CFrame.new(67.8082123, 8.49989128, -14.2632694, 1.00001383, 6.37024641e-007, 5.36441803e-007, -9.46223736e-007, 0.999997973, -1.04308128e-007, -8.7916851e-007, 5.96046448e-008, 1.00001121)
  2142. p9.CanCollide = false
  2143. p9.Locked = true
  2144. p9.BottomSurface = Enum.SurfaceType.Smooth
  2145. p9.TopSurface = Enum.SurfaceType.Smooth
  2146. b5 = Instance.new("SpecialMesh", p9)
  2147. b5.MeshType = Enum.MeshType.Sphere
  2148. b5.Name = "Mesh"
  2149. p10 = Instance.new("Part", m)
  2150. p10.BrickColor = BrickColor.new("Lime green")
  2151. p10.Material = Enum.Material.Neon
  2152. p10.FormFactor = Enum.FormFactor.Custom
  2153. p10.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  2154. p10.CFrame = CFrame.new(67.3000946, 8.34052181, -14.1962805, -0.323144197, -0.934642911, 0.148454338, 0.912730813, -0.349243045, -0.212012067, 0.250002205, 0.0669885725, 0.965932906)
  2155. p10.CanCollide = false
  2156. p10.Locked = true
  2157. p10.BottomSurface = Enum.SurfaceType.Smooth
  2158. p10.TopSurface = Enum.SurfaceType.Smooth
  2159. p11 = Instance.new("Part", m)
  2160. p11.BrickColor = BrickColor.new("Really black")
  2161. p11.Material = Enum.Material.Metal
  2162. p11.Name = "Main"
  2163. p11.FormFactor = Enum.FormFactor.Custom
  2164. p11.Size = Vector3.new(4.4000001, 4.19999981, 2.20000005)
  2165. p11.CFrame = CFrame.new(66.1075974, 8.19991207, -13.1631384, 1, 7.67355459e-007, 7.5990539e-007, -7.67355459e-007, 1, -2.98022478e-008, -7.5990539e-007, 2.98016651e-008, 1)
  2166. p11.CanCollide = false
  2167. p11.Locked = true
  2168. p11.BottomSurface = Enum.SurfaceType.Smooth
  2169. p11.TopSurface = Enum.SurfaceType.Smooth
  2170. p12 = Instance.new("Part", m)
  2171. p12.BrickColor = BrickColor.new("Really black")
  2172. p12.Material = Enum.Material.Neon
  2173. p12.FormFactor = Enum.FormFactor.Custom
  2174. p12.Size = Vector3.new(3, 3, 2)
  2175. p12.CFrame = CFrame.new(66.1075974, 8.19991302, -13.5631437, 1.00000453, 6.48145658e-007, 6.55599706e-007, -7.97160624e-007, 0.999999344, -1.49012251e-008, -7.5990863e-007, 2.98017362e-008, 1.0000037)
  2176. p12.CanCollide = false
  2177. p12.Locked = true
  2178. p12.BottomSurface = Enum.SurfaceType.Smooth
  2179. p12.TopSurface = Enum.SurfaceType.Smooth
  2180. b6 = Instance.new("SpecialMesh", p12)
  2181. b6.MeshType = Enum.MeshType.Sphere
  2182. b6.Name = "Mesh"
  2183. p13 = Instance.new("Part", m)
  2184. p13.BrickColor = BrickColor.new("Lime green")
  2185. p13.Material = Enum.Material.Neon
  2186. p13.FormFactor = Enum.FormFactor.Custom
  2187. p13.Size = Vector3.new(0.200000048, 3.79999971, 0.200000048)
  2188. p13.CFrame = CFrame.new(66.1331863, 7.82621098, -12.0632286, 6.04434092e-007, -1.00000906, 6.55602378e-007, 0.999998689, 8.72662156e-007, -1.49012802e-008, 4.47028583e-008, 8.64220965e-007, 1.00000739)
  2189. p13.CanCollide = false
  2190. p13.Locked = true
  2191. p13.BottomSurface = Enum.SurfaceType.Smooth
  2192. p13.TopSurface = Enum.SurfaceType.Smooth
  2193. p14 = Instance.new("Part", m)
  2194. p14.BrickColor = BrickColor.new("Lime green")
  2195. p14.Material = Enum.Material.Neon
  2196. p14.FormFactor = Enum.FormFactor.Custom
  2197. p14.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2198. p14.CFrame = CFrame.new(65.0837555, 8.11279583, -12.0633221, 0.866040885, 0.500009477, 5.5129766e-007, -0.499999583, 0.866022587, -2.09610107e-013, -8.68580742e-007, -4.3265041e-007, 1.00001478)
  2199. p14.CanCollide = false
  2200. p14.Locked = true
  2201. p14.BottomSurface = Enum.SurfaceType.Smooth
  2202. p14.TopSurface = Enum.SurfaceType.Smooth
  2203. p15 = Instance.new("Part", m)
  2204. p15.BrickColor = BrickColor.new("Lime green")
  2205. p15.Material = Enum.Material.Neon
  2206. p15.FormFactor = Enum.FormFactor.Custom
  2207. p15.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2208. p15.CFrame = CFrame.new(67.0844116, 8.11277008, -12.0634222, 0.866049111, -0.500013351, 4.46991237e-007, 0.49999693, 0.866022587, 1.49009658e-008, -8.91868751e-007, 6.00952262e-007, 1.00002217)
  2209. p15.CanCollide = false
  2210. p15.Locked = true
  2211. p15.BottomSurface = Enum.SurfaceType.Smooth
  2212. p15.TopSurface = Enum.SurfaceType.Smooth
  2213. p16 = Instance.new("Part", m)
  2214. p16.BrickColor = BrickColor.new("Lime green")
  2215. p16.Material = Enum.Material.Neon
  2216. p16.FormFactor = Enum.FormFactor.Custom
  2217. p16.Size = Vector3.new(0.200000048, 1.19999969, 0.200000048)
  2218. p16.CFrame = CFrame.new(65.484314, 7.30655766, -14.2634888, 0.906336308, 0.422632158, 3.49386681e-007, -0.422617853, 0.906302929, 2.46360354e-008, -1.01209048e-006, -3.84037776e-007, 1.00002587)
  2219. p16.CanCollide = false
  2220. p16.Locked = true
  2221. p16.BottomSurface = Enum.SurfaceType.Smooth
  2222. p16.TopSurface = Enum.SurfaceType.Smooth
  2223. p17 = Instance.new("Part", m)
  2224. p17.BrickColor = BrickColor.new("Lime green")
  2225. p17.Material = Enum.Material.Neon
  2226. p17.FormFactor = Enum.FormFactor.Custom
  2227. p17.Size = Vector3.new(0.200000048, 1.89999986, 0.200000048)
  2228. p17.CFrame = CFrame.new(67.1100159, 7.10342312, -14.2635927, 0.866056919, -0.50001812, 3.65035532e-007, 0.499996245, 0.866021872, 5.96044032e-008, -8.79435504e-007, 6.97014912e-007, 1.00002956)
  2229. p17.CanCollide = false
  2230. p17.Locked = true
  2231. p17.BottomSurface = Enum.SurfaceType.Smooth
  2232. p17.TopSurface = Enum.SurfaceType.Smooth
  2233. p18 = Instance.new("Part", m)
  2234. p18.BrickColor = BrickColor.new("Lime green")
  2235. p18.Material = Enum.Material.Neon
  2236. p18.FormFactor = Enum.FormFactor.Custom
  2237. p18.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2238. p18.CFrame = CFrame.new(65.6104889, 7.05342484, -14.2637053, -0.707138717, -0.707138956, 3.36865924e-007, 0.707104087, -0.707101464, 1.4901164e-007, 9.95719802e-007, 5.95316749e-007, 1.00003707)
  2239. p18.CanCollide = false
  2240. p18.Locked = true
  2241. p18.BottomSurface = Enum.SurfaceType.Smooth
  2242. p18.TopSurface = Enum.SurfaceType.Smooth
  2243. p19 = Instance.new("Part", m)
  2244. p19.BrickColor = BrickColor.new("Really black")
  2245. p19.Material = Enum.Material.Neon
  2246. p19.FormFactor = Enum.FormFactor.Custom
  2247. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2248. p19.CFrame = CFrame.new(65.2110596, 6.69982004, -14.2638168, 1.00005388, -1.78813906e-007, 3.08695888e-007, -1.7285347e-006, 0.999993682, 2.38419489e-007, -1.15321473e-006, 3.72538381e-007, 1.0000447)
  2249. p19.CanCollide = false
  2250. p19.Locked = true
  2251. p19.BottomSurface = Enum.SurfaceType.Smooth
  2252. p19.TopSurface = Enum.SurfaceType.Smooth
  2253. b7 = Instance.new("SpecialMesh", p19)
  2254. b7.MeshType = Enum.MeshType.Sphere
  2255. b7.Name = "Mesh"
  2256. p20 = Instance.new("Part", m)
  2257. p20.BrickColor = BrickColor.new("Really black")
  2258. p20.Material = Enum.Material.Neon
  2259. p20.FormFactor = Enum.FormFactor.Custom
  2260. p20.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2261. p20.CFrame = CFrame.new(66.7116928, 6.49980783, -14.2639294, 1.00006235, -2.98028993e-007, 2.80525398e-007, -1.8477574e-006, 0.999992907, 3.27827962e-007, -1.18139712e-006, 4.61949412e-007, 1.00005233)
  2262. p20.CanCollide = false
  2263. p20.Locked = true
  2264. p20.BottomSurface = Enum.SurfaceType.Smooth
  2265. p20.TopSurface = Enum.SurfaceType.Smooth
  2266. b8 = Instance.new("SpecialMesh", p20)
  2267. b8.MeshType = Enum.MeshType.Sphere
  2268. b8.Name = "Mesh"
  2269. p21 = Instance.new("Part", m)
  2270. p21.BrickColor = BrickColor.new("Lime green")
  2271. p21.Material = Enum.Material.Neon
  2272. p21.FormFactor = Enum.FormFactor.Custom
  2273. p21.Size = Vector3.new(0.200000048, 0.799999893, 0.200000048)
  2274. p21.CFrame = CFrame.new(67.0623169, 6.40337944, -14.264039, 0.258836836, -0.965994418, 2.52354425e-007, 0.965917706, 0.258818805, 4.17237061e-007, 2.19511691e-007, 1.31106742e-006, 1.00005996)
  2275. p21.CanCollide = false
  2276. p21.Locked = true
  2277. p21.BottomSurface = Enum.SurfaceType.Smooth
  2278. p21.TopSurface = Enum.SurfaceType.Smooth
  2279. p22 = Instance.new("Part", m)
  2280. p22.BrickColor = BrickColor.new("Really black")
  2281. p22.Material = Enum.Material.Neon
  2282. p22.FormFactor = Enum.FormFactor.Custom
  2283. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2284. p22.CFrame = CFrame.new(67.5129166, 6.29977846, -14.2641516, 1.00007939, -5.96046448e-007, 2.24182997e-007, -2.14576721e-006, 0.999991298, 5.06646757e-007, -1.23776351e-006, 6.40773351e-007, 1.00006759)
  2285. p22.CanCollide = false
  2286. p22.Locked = true
  2287. p22.BottomSurface = Enum.SurfaceType.Smooth
  2288. p22.TopSurface = Enum.SurfaceType.Smooth
  2289. b9 = Instance.new("SpecialMesh", p22)
  2290. b9.MeshType = Enum.MeshType.Sphere
  2291. b9.Name = "Mesh"
  2292. w1 = Instance.new("Weld", p1)
  2293. w1.Name = "Part_Weld"
  2294. w1.Part0 = p1
  2295. w1.C0 = CFrame.new(-67.3029404, -7.60003757, 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)
  2296. w1.Part1 = p2
  2297. w1.C1 = CFrame.new(-65.0029221, -7.60003757, 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)
  2298. w2 = Instance.new("Weld", p2)
  2299. w2.Name = "Part_Weld"
  2300. w2.Part0 = p2
  2301. w2.C0 = CFrame.new(-65.0029221, -7.60003757, 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)
  2302. w2.Part1 = p3
  2303. w2.C1 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389)
  2304. w3 = Instance.new("Weld", p3)
  2305. w3.Name = "Part_Weld"
  2306. w3.Part0 = p3
  2307. w3.C0 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389)
  2308. w3.Part1 = p4
  2309. w3.C1 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-008, 0.500002384, 0.866024733, -3.15312398e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2310. w4 = Instance.new("Weld", p4)
  2311. w4.Name = "Part_Weld"
  2312. w4.Part0 = p4
  2313. w4.C0 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-008, 0.500002384, 0.866024733, -3.15312398e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2314. w4.Part1 = p5
  2315. w4.C1 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-008, -0.500002444, -0.866024733, 3.15312398e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2316. w5 = Instance.new("Weld", p5)
  2317. w5.Name = "Part_Weld"
  2318. w5.Part0 = p5
  2319. w5.C0 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-008, -0.500002444, -0.866024733, 3.15312398e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2320. w5.Part1 = p6
  2321. w5.C1 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-008, 0.500002205, -0.866024911, -5.72166936e-009, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2322. w6 = Instance.new("Weld", p6)
  2323. w6.Name = "Part_Weld"
  2324. w6.Part0 = p6
  2325. w6.C0 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-008, 0.500002205, -0.866024911, -5.72166936e-009, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2326. w6.Part1 = p7
  2327. w6.C1 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2328. w7 = Instance.new("Weld", p7)
  2329. w7.Name = "Part_Weld"
  2330. w7.Part0 = p7
  2331. w7.C0 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2332. w7.Part1 = p8
  2333. w7.C1 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  2334. w8 = Instance.new("Weld", p8)
  2335. w8.Name = "Part_Weld"
  2336. w8.Part0 = p8
  2337. w8.C0 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  2338. w8.Part1 = p9
  2339. w8.C1 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2340. w9 = Instance.new("Weld", p9)
  2341. w9.Name = "Part_Weld"
  2342. w9.Part0 = p9
  2343. w9.C0 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2344. w9.Part1 = p10
  2345. w9.C1 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449)
  2346. w10 = Instance.new("Weld", p10)
  2347. w10.Name = "Main_Weld"
  2348. w10.Part0 = p10
  2349. w10.C0 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449)
  2350. w10.Part1 = p11
  2351. w10.C1 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2352. w11 = Instance.new("Weld", p11)
  2353. w11.Name = "Part_Weld"
  2354. w11.Part0 = p11
  2355. w11.C0 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2356. w11.Part1 = p12
  2357. w11.C1 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-007, 6.70552325e-008, 1.1920875e-007, 1, -2.98022158e-008, -6.70552325e-008, 2.98022229e-008, 1)
  2358. w12 = Instance.new("Weld", p12)
  2359. w12.Name = "Part_Weld"
  2360. w12.Part0 = p12
  2361. w12.C0 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-007, 6.70552325e-008, 1.1920875e-007, 1, -2.98022158e-008, -6.70552325e-008, 2.98022229e-008, 1)
  2362. w12.Part1 = p13
  2363. w12.C1 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-008, 0.999999344, -1.49011434e-008, -1.00000453, 1.94707212e-007, 3.72529385e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2364. w13 = Instance.new("Weld", p13)
  2365. w13.Name = "Part_Weld"
  2366. w13.Part0 = p13
  2367. w13.C0 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-008, 0.999999344, -1.49011434e-008, -1.00000453, 1.94707212e-007, 3.72529385e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2368. w13.Part1 = p14
  2369. w13.C1 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-008, 0.500002325, 0.866024673, -3.15312434e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2370. w14 = Instance.new("Weld", p14)
  2371. w14.Name = "Part_Weld"
  2372. w14.Part0 = p14
  2373. w14.C0 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-008, 0.500002325, 0.866024673, -3.15312434e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2374. w14.Part1 = p15
  2375. w14.C1 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-008, -0.500002146, 0.866024971, 5.72170222e-009, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2376. w15 = Instance.new("Weld", p15)
  2377. w15.Name = "Part_Weld"
  2378. w15.Part0 = p15
  2379. w15.C0 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-008, -0.500002146, 0.866024971, 5.72170222e-009, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2380. w15.Part1 = p16
  2381. w15.C1 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-008, 0.422618747, 0.906307578, 3.17729842e-009, -6.0350331e-008, 2.46360994e-008, 1)
  2382. w16 = Instance.new("Weld", p16)
  2383. w16.Name = "Part_Weld"
  2384. w16.Part0 = p16
  2385. w16.C0 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-008, 0.422618747, 0.906307578, 3.17729842e-009, -6.0350331e-008, 2.46360994e-008, 1)
  2386. w16.Part1 = p17
  2387. w16.C1 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-008, -0.500002265, 0.866025209, 3.67179815e-008, -4.470348e-008, 5.96046448e-008, 1.0000037)
  2388. w17 = Instance.new("Weld", p17)
  2389. w17.Name = "Part_Weld"
  2390. w17.Part0 = p17
  2391. w17.C0 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-008, -0.500002265, 0.866025209, 3.67179815e-008, -4.470348e-008, 5.96046448e-008, 1.0000037)
  2392. w17.Part1 = p18
  2393. w17.C1 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-008, -0.707110047, -0.707106233, -6.32202557e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2394. w18 = Instance.new("Weld", p18)
  2395. w18.Name = "Part_Weld"
  2396. w18.Part0 = p18
  2397. w18.C0 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-008, -0.707110047, -0.707106233, -6.32202557e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2398. w18.Part1 = p19
  2399. w18.C1 = CFrame.new(-65.2028809, -4.70003223, 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)
  2400. w19 = Instance.new("Weld", p19)
  2401. w19.Name = "Part_Weld"
  2402. w19.Part0 = p19
  2403. w19.C0 = CFrame.new(-65.2028809, -4.70003223, 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)
  2404. w19.Part1 = p20
  2405. w19.C1 = CFrame.new(-66.7028656, -4.50003386, 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)
  2406. w20 = Instance.new("Weld", p20)
  2407. w20.Name = "Part_Weld"
  2408. w20.Part0 = p20
  2409. w20.C0 = CFrame.new(-66.7028656, -4.50003386, 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)
  2410. w20.Part1 = p21
  2411. w20.C1 = CFrame.new(-21.6081295, 63.6283798, 14.2623405, 0.258820146, 0.965925455, 6.52870682e-008, -0.965930045, 0.258819073, -1.33600135e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2412. w21 = Instance.new("Weld", p21)
  2413. w21.Name = "Part_Weld"
  2414. w21.Part0 = p21
  2415. w21.C0 = CFrame.new(-21.6081295, 63.6283798, 14.2623405, 0.258820146, 0.965925455, 6.52870682e-008, -0.965930045, 0.258819073, -1.33600135e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2416. w21.Part1 = p22
  2417. w21.C1 = CFrame.new(-67.5028763, -4.30003405, 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)
  2418. w22 = Instance.new("Weld", p22)
  2419. w22.Name = "Wedge_Weld"
  2420. w22.Part0 = p22
  2421. w22.C0 = CFrame.new(-67.5028763, -4.30003405, 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)
  2422. m.Parent = torso
  2423. m:MakeJoints()
  2424. ----------------------------------------------------
  2425. local cor5 = Instance.new("Part", torso.Torso)
  2426. cor5.Name = "Thingy"
  2427. cor5.Locked = true
  2428. cor5.BottomSurface = 0
  2429. cor5.CanCollide = false
  2430. cor5.Size = Vector3.new(2, 1, 1)
  2431. cor5.Transparency = 1
  2432. cor5.TopSurface = 0
  2433. corw2 = Instance.new("Weld", cor5)
  2434. corw2.Part0 = torso
  2435. corw2.Part1 = cor5
  2436. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2437. corw2.C1 = CFrame.new(0, 0, 0)
  2438. weld2 = Instance.new("Weld", torso.Torso)
  2439. weld2.Part0 = cor5
  2440. weld2.Part1 = p11
  2441. weld2.C0 = CFrame.new(0, 0, 0)
  2442. ----------------------------------------------------
  2443. local m = Instance.new("Model")
  2444. m.Name = "RightLeg"
  2445. p1 = Instance.new("Part", m)
  2446. p1.BrickColor = BrickColor.new("Really black")
  2447. p1.Material = Enum.Material.Neon
  2448. p1.FormFactor = Enum.FormFactor.Custom
  2449. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2450. 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)
  2451. p1.CanCollide = false
  2452. p1.Locked = true
  2453. p1.BottomSurface = Enum.SurfaceType.Smooth
  2454. p1.TopSurface = Enum.SurfaceType.Smooth
  2455. b1 = Instance.new("SpecialMesh", p1)
  2456. b1.MeshType = Enum.MeshType.Sphere
  2457. b1.Name = "Mesh"
  2458. p2 = Instance.new("Part", m)
  2459. p2.BrickColor = BrickColor.new("Really black")
  2460. p2.Material = Enum.Material.Neon
  2461. p2.FormFactor = Enum.FormFactor.Custom
  2462. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2463. 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)
  2464. p2.CanCollide = false
  2465. p2.Locked = true
  2466. p2.BottomSurface = Enum.SurfaceType.Smooth
  2467. p2.TopSurface = Enum.SurfaceType.Smooth
  2468. b2 = Instance.new("SpecialMesh", p2)
  2469. b2.MeshType = Enum.MeshType.Sphere
  2470. b2.Name = "Mesh"
  2471. p3 = Instance.new("Part", m)
  2472. p3.BrickColor = BrickColor.new("Lime green")
  2473. p3.Material = Enum.Material.Neon
  2474. p3.FormFactor = Enum.FormFactor.Custom
  2475. p3.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2476. 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)
  2477. p3.CanCollide = false
  2478. p3.Locked = true
  2479. p3.BottomSurface = Enum.SurfaceType.Smooth
  2480. p3.TopSurface = Enum.SurfaceType.Smooth
  2481. p4 = Instance.new("Part", m)
  2482. p4.BrickColor = BrickColor.new("Really black")
  2483. p4.Material = Enum.Material.Neon
  2484. p4.FormFactor = Enum.FormFactor.Custom
  2485. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2486. 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)
  2487. p4.CanCollide = false
  2488. p4.Locked = true
  2489. p4.BottomSurface = Enum.SurfaceType.Smooth
  2490. p4.TopSurface = Enum.SurfaceType.Smooth
  2491. b3 = Instance.new("SpecialMesh", p4)
  2492. b3.MeshType = Enum.MeshType.Sphere
  2493. b3.Name = "Mesh"
  2494. p5 = Instance.new("Part", m)
  2495. p5.BrickColor = BrickColor.new("Lime green")
  2496. p5.Material = Enum.Material.Neon
  2497. p5.FormFactor = Enum.FormFactor.Custom
  2498. p5.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2499. 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)
  2500. p5.CanCollide = false
  2501. p5.Locked = true
  2502. p5.BottomSurface = Enum.SurfaceType.Smooth
  2503. p5.TopSurface = Enum.SurfaceType.Smooth
  2504. p6 = Instance.new("Part", m)
  2505. p6.BrickColor = BrickColor.new("Lime green")
  2506. p6.Material = Enum.Material.Neon
  2507. p6.FormFactor = Enum.FormFactor.Custom
  2508. p6.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2509. 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)
  2510. p6.CanCollide = false
  2511. p6.Locked = true
  2512. p6.BottomSurface = Enum.SurfaceType.Smooth
  2513. p6.TopSurface = Enum.SurfaceType.Smooth
  2514. p7 = Instance.new("Part", m)
  2515. p7.BrickColor = BrickColor.new("Really black")
  2516. p7.Material = Enum.Material.Metal
  2517. p7.Name = "Main"
  2518. p7.FormFactor = Enum.FormFactor.Custom
  2519. p7.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2520. 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)
  2521. p7.CanCollide = false
  2522. p7.Locked = true
  2523. p7.BottomSurface = Enum.SurfaceType.Smooth
  2524. p7.TopSurface = Enum.SurfaceType.Smooth
  2525. p8 = Instance.new("Part", m)
  2526. p8.BrickColor = BrickColor.new("Lime green")
  2527. p8.Material = Enum.Material.Neon
  2528. p8.FormFactor = Enum.FormFactor.Custom
  2529. p8.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2530. 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)
  2531. p8.CanCollide = false
  2532. p8.Locked = true
  2533. p8.BottomSurface = Enum.SurfaceType.Smooth
  2534. p8.TopSurface = Enum.SurfaceType.Smooth
  2535. p9 = Instance.new("WedgePart", m)
  2536. p9.BrickColor = BrickColor.new("Lime green")
  2537. p9.Material = Enum.Material.Neon
  2538. p9.Name = "Wedge"
  2539. p9.FormFactor = Enum.FormFactor.Custom
  2540. p9.Size = Vector3.new(1, 1.19999981, 4)
  2541. 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)
  2542. p9.CanCollide = false
  2543. p9.Locked = true
  2544. p9.TopSurface = Enum.SurfaceType.Smooth
  2545. b4 = Instance.new("SpecialMesh", p9)
  2546. b4.MeshType = Enum.MeshType.Wedge
  2547. b4.Name = "Mesh"
  2548. b4.Scale = Vector3.new(0.600000024, 1, 1)
  2549. p10 = Instance.new("Part", m)
  2550. p10.BrickColor = BrickColor.new("Really black")
  2551. p10.Material = Enum.Material.Neon
  2552. p10.FormFactor = Enum.FormFactor.Custom
  2553. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2554. 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)
  2555. p10.CanCollide = false
  2556. p10.Locked = true
  2557. p10.BottomSurface = Enum.SurfaceType.Smooth
  2558. p10.TopSurface = Enum.SurfaceType.Smooth
  2559. b5 = Instance.new("SpecialMesh", p10)
  2560. b5.MeshType = Enum.MeshType.Sphere
  2561. b5.Name = "Mesh"
  2562. p11 = Instance.new("Part", m)
  2563. p11.BrickColor = BrickColor.new("Really black")
  2564. p11.Material = Enum.Material.Neon
  2565. p11.FormFactor = Enum.FormFactor.Custom
  2566. p11.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2567. 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)
  2568. p11.CanCollide = false
  2569. p11.Locked = true
  2570. p11.BottomSurface = Enum.SurfaceType.Smooth
  2571. p11.TopSurface = Enum.SurfaceType.Smooth
  2572. b6 = Instance.new("SpecialMesh", p11)
  2573. b6.MeshType = Enum.MeshType.Sphere
  2574. b6.Name = "Mesh"
  2575. p12 = Instance.new("Part", m)
  2576. p12.BrickColor = BrickColor.new("Lime green")
  2577. p12.Material = Enum.Material.Neon
  2578. p12.FormFactor = Enum.FormFactor.Custom
  2579. p12.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2580. 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)
  2581. p12.CanCollide = false
  2582. p12.Locked = true
  2583. p12.BottomSurface = Enum.SurfaceType.Smooth
  2584. p12.TopSurface = Enum.SurfaceType.Smooth
  2585. p13 = Instance.new("Part", m)
  2586. p13.BrickColor = BrickColor.new("Really black")
  2587. p13.Material = Enum.Material.Neon
  2588. p13.FormFactor = Enum.FormFactor.Custom
  2589. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2590. 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)
  2591. p13.CanCollide = false
  2592. p13.Locked = true
  2593. p13.BottomSurface = Enum.SurfaceType.Smooth
  2594. p13.TopSurface = Enum.SurfaceType.Smooth
  2595. b7 = Instance.new("SpecialMesh", p13)
  2596. b7.MeshType = Enum.MeshType.Sphere
  2597. b7.Name = "Mesh"
  2598. p14 = Instance.new("WedgePart", m)
  2599. p14.BrickColor = BrickColor.new("Lime green")
  2600. p14.Material = Enum.Material.Neon
  2601. p14.Name = "Wedge"
  2602. p14.FormFactor = Enum.FormFactor.Custom
  2603. p14.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2604. 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)
  2605. p14.CanCollide = false
  2606. p14.Locked = true
  2607. p14.TopSurface = Enum.SurfaceType.Smooth
  2608. b8 = Instance.new("SpecialMesh", p14)
  2609. b8.MeshType = Enum.MeshType.Wedge
  2610. b8.Name = "Mesh"
  2611. b8.Scale = Vector3.new(0.200000003, 1, 1)
  2612. p15 = Instance.new("WedgePart", m)
  2613. p15.BrickColor = BrickColor.new("Lime green")
  2614. p15.Material = Enum.Material.Neon
  2615. p15.Name = "Wedge"
  2616. p15.FormFactor = Enum.FormFactor.Custom
  2617. p15.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2618. 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)
  2619. p15.CanCollide = false
  2620. p15.Locked = true
  2621. p15.TopSurface = Enum.SurfaceType.Smooth
  2622. b9 = Instance.new("SpecialMesh", p15)
  2623. b9.MeshType = Enum.MeshType.Wedge
  2624. b9.Name = "Mesh"
  2625. b9.Scale = Vector3.new(0.200000003, 1, 1)
  2626. p16 = Instance.new("WedgePart", m)
  2627. p16.BrickColor = BrickColor.new("Lime green")
  2628. p16.Material = Enum.Material.Neon
  2629. p16.Name = "Wedge"
  2630. p16.FormFactor = Enum.FormFactor.Custom
  2631. p16.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2632. 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)
  2633. p16.CanCollide = false
  2634. p16.Locked = true
  2635. p16.TopSurface = Enum.SurfaceType.Smooth
  2636. b10 = Instance.new("SpecialMesh", p16)
  2637. b10.MeshType = Enum.MeshType.Wedge
  2638. b10.Name = "Mesh"
  2639. b10.Scale = Vector3.new(0.200000003, 1, 1)
  2640. w1 = Instance.new("Weld", p1)
  2641. w1.Name = "Part_Weld"
  2642. w1.Part0 = p1
  2643. 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)
  2644. w1.Part1 = p2
  2645. 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)
  2646. w2 = Instance.new("Weld", p2)
  2647. w2.Name = "Part_Weld"
  2648. w2.Part0 = p2
  2649. 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)
  2650. w2.Part1 = p3
  2651. 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)
  2652. w3 = Instance.new("Weld", p3)
  2653. w3.Name = "Part_Weld"
  2654. w3.Part0 = p3
  2655. 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)
  2656. w3.Part1 = p4
  2657. 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)
  2658. w4 = Instance.new("Weld", p4)
  2659. w4.Name = "Part_Weld"
  2660. w4.Part0 = p4
  2661. 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)
  2662. w4.Part1 = p5
  2663. 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)
  2664. w5 = Instance.new("Weld", p5)
  2665. w5.Name = "Part_Weld"
  2666. w5.Part0 = p5
  2667. 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)
  2668. w5.Part1 = p6
  2669. 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)
  2670. w6 = Instance.new("Weld", p6)
  2671. w6.Name = "Part_Weld"
  2672. w6.Part0 = p6
  2673. 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)
  2674. w6.Part1 = p7
  2675. 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)
  2676. w7 = Instance.new("Weld", p7)
  2677. w7.Name = "Part_Weld"
  2678. w7.Part0 = p7
  2679. 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)
  2680. w7.Part1 = p8
  2681. 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)
  2682. w8 = Instance.new("Weld", p8)
  2683. w8.Name = "Wedge_Weld"
  2684. w8.Part0 = p8
  2685. 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)
  2686. w8.Part1 = p9
  2687. 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)
  2688. w9 = Instance.new("Weld", p9)
  2689. w9.Name = "Part_Weld"
  2690. w9.Part0 = p9
  2691. 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)
  2692. w9.Part1 = p10
  2693. 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)
  2694. w10 = Instance.new("Weld", p10)
  2695. w10.Name = "Part_Weld"
  2696. w10.Part0 = p10
  2697. 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)
  2698. w10.Part1 = p11
  2699. 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)
  2700. w11 = Instance.new("Weld", p11)
  2701. w11.Name = "Part_Weld"
  2702. w11.Part0 = p11
  2703. 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)
  2704. w11.Part1 = p12
  2705. 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)
  2706. w12 = Instance.new("Weld", p12)
  2707. w12.Name = "Part_Weld"
  2708. w12.Part0 = p12
  2709. 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)
  2710. w12.Part1 = p13
  2711. 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)
  2712. w13 = Instance.new("Weld", p13)
  2713. w13.Name = "Wedge_Weld"
  2714. w13.Part0 = p13
  2715. 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)
  2716. w13.Part1 = p14
  2717. 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)
  2718. w14 = Instance.new("Weld", p14)
  2719. w14.Name = "Wedge_Weld"
  2720. w14.Part0 = p14
  2721. 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)
  2722. w14.Part1 = p15
  2723. 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)
  2724. w15 = Instance.new("Weld", p15)
  2725. w15.Name = "Wedge_Weld"
  2726. w15.Part0 = p15
  2727. 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)
  2728. w15.Part1 = p16
  2729. 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)
  2730. m.Parent = rleg
  2731. m:MakeJoints()
  2732. ----------------------------------------------------
  2733. local cor6 = Instance.new("Part", rleg.RightLeg)
  2734. cor6.Name = "Thingy"
  2735. cor6.Locked = true
  2736. cor6.BottomSurface = 0
  2737. cor6.CanCollide = false
  2738. cor6.Size = Vector3.new(2, 1, 1)
  2739. cor6.Transparency = 1
  2740. cor6.TopSurface = 0
  2741. corw2 = Instance.new("Weld", cor6)
  2742. corw2.Part0 = rleg
  2743. corw2.Part1 = cor6
  2744. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2745. corw2.C1 = CFrame.new(0, 0, 0)
  2746. weld2 = Instance.new("Weld", rleg.RightLeg)
  2747. weld2.Part0 = cor6
  2748. weld2.Part1 = p7
  2749. weld2.C0 = CFrame.new(0, 0, 0)
  2750. ----------------------------------------------------
  2751. local m = Instance.new("Model")
  2752. m.Name = "LeftLeg"
  2753. p1 = Instance.new("WedgePart", m)
  2754. p1.BrickColor = BrickColor.new("Lime green")
  2755. p1.Material = Enum.Material.Neon
  2756. p1.Name = "Wedge"
  2757. p1.FormFactor = Enum.FormFactor.Custom
  2758. p1.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2759. 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)
  2760. p1.CanCollide = false
  2761. p1.Locked = true
  2762. p1.TopSurface = Enum.SurfaceType.Smooth
  2763. b1 = Instance.new("SpecialMesh", p1)
  2764. b1.MeshType = Enum.MeshType.Wedge
  2765. b1.Name = "Mesh"
  2766. b1.Scale = Vector3.new(0.200000003, 1, 1)
  2767. p2 = Instance.new("WedgePart", m)
  2768. p2.BrickColor = BrickColor.new("Lime green")
  2769. p2.Material = Enum.Material.Neon
  2770. p2.Name = "Wedge"
  2771. p2.FormFactor = Enum.FormFactor.Custom
  2772. p2.Size = Vector3.new(1, 1.19999981, 4)
  2773. 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)
  2774. p2.CanCollide = false
  2775. p2.Locked = true
  2776. p2.TopSurface = Enum.SurfaceType.Smooth
  2777. b2 = Instance.new("SpecialMesh", p2)
  2778. b2.MeshType = Enum.MeshType.Wedge
  2779. b2.Name = "Mesh"
  2780. b2.Scale = Vector3.new(0.600000024, 1, 1)
  2781. p3 = Instance.new("Part", m)
  2782. p3.BrickColor = BrickColor.new("Really black")
  2783. p3.Material = Enum.Material.Metal
  2784. p3.Name = "Main"
  2785. p3.FormFactor = Enum.FormFactor.Custom
  2786. p3.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2787. 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)
  2788. p3.CanCollide = false
  2789. p3.Locked = true
  2790. p3.BottomSurface = Enum.SurfaceType.Smooth
  2791. p3.TopSurface = Enum.SurfaceType.Smooth
  2792. p4 = Instance.new("Part", m)
  2793. p4.BrickColor = BrickColor.new("Really black")
  2794. p4.Material = Enum.Material.Neon
  2795. p4.FormFactor = Enum.FormFactor.Custom
  2796. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2797. 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)
  2798. p4.CanCollide = false
  2799. p4.Locked = true
  2800. p4.BottomSurface = Enum.SurfaceType.Smooth
  2801. p4.TopSurface = Enum.SurfaceType.Smooth
  2802. b3 = Instance.new("SpecialMesh", p4)
  2803. b3.MeshType = Enum.MeshType.Sphere
  2804. b3.Name = "Mesh"
  2805. p5 = Instance.new("WedgePart", m)
  2806. p5.BrickColor = BrickColor.new("Lime green")
  2807. p5.Material = Enum.Material.Neon
  2808. p5.Name = "Wedge"
  2809. p5.FormFactor = Enum.FormFactor.Custom
  2810. p5.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2811. 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)
  2812. p5.CanCollide = false
  2813. p5.Locked = true
  2814. p5.TopSurface = Enum.SurfaceType.Smooth
  2815. b4 = Instance.new("SpecialMesh", p5)
  2816. b4.MeshType = Enum.MeshType.Wedge
  2817. b4.Name = "Mesh"
  2818. b4.Scale = Vector3.new(0.200000003, 1, 1)
  2819. p6 = Instance.new("Part", m)
  2820. p6.BrickColor = BrickColor.new("Lime green")
  2821. p6.Material = Enum.Material.Neon
  2822. p6.FormFactor = Enum.FormFactor.Custom
  2823. p6.Size = Vector3.new(0.200000048, 1.29999971, 0.200000048)
  2824. 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)
  2825. p6.CanCollide = false
  2826. p6.Locked = true
  2827. p6.BottomSurface = Enum.SurfaceType.Smooth
  2828. p6.TopSurface = Enum.SurfaceType.Smooth
  2829. p7 = Instance.new("Part", m)
  2830. p7.BrickColor = BrickColor.new("Lime green")
  2831. p7.Material = Enum.Material.Neon
  2832. p7.FormFactor = Enum.FormFactor.Custom
  2833. p7.Size = Vector3.new(0.200000048, 0.999999642, 0.200000048)
  2834. 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)
  2835. p7.CanCollide = false
  2836. p7.Locked = true
  2837. p7.BottomSurface = Enum.SurfaceType.Smooth
  2838. p7.TopSurface = Enum.SurfaceType.Smooth
  2839. p8 = Instance.new("Part", m)
  2840. p8.BrickColor = BrickColor.new("Really black")
  2841. p8.Material = Enum.Material.Neon
  2842. p8.FormFactor = Enum.FormFactor.Custom
  2843. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2844. 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)
  2845. p8.CanCollide = false
  2846. p8.Locked = true
  2847. p8.BottomSurface = Enum.SurfaceType.Smooth
  2848. p8.TopSurface = Enum.SurfaceType.Smooth
  2849. b5 = Instance.new("SpecialMesh", p8)
  2850. b5.MeshType = Enum.MeshType.Sphere
  2851. b5.Name = "Mesh"
  2852. p9 = Instance.new("Part", m)
  2853. p9.BrickColor = BrickColor.new("Really black")
  2854. p9.Material = Enum.Material.Neon
  2855. p9.FormFactor = Enum.FormFactor.Custom
  2856. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2857. 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)
  2858. p9.CanCollide = false
  2859. p9.Locked = true
  2860. p9.BottomSurface = Enum.SurfaceType.Smooth
  2861. p9.TopSurface = Enum.SurfaceType.Smooth
  2862. b6 = Instance.new("SpecialMesh", p9)
  2863. b6.MeshType = Enum.MeshType.Sphere
  2864. b6.Name = "Mesh"
  2865. p10 = Instance.new("Part", m)
  2866. p10.BrickColor = BrickColor.new("Lime green")
  2867. p10.Material = Enum.Material.Neon
  2868. p10.FormFactor = Enum.FormFactor.Custom
  2869. p10.Size = Vector3.new(0.200000048, 1.09999967, 0.200000048)
  2870. 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)
  2871. p10.CanCollide = false
  2872. p10.Locked = true
  2873. p10.BottomSurface = Enum.SurfaceType.Smooth
  2874. p10.TopSurface = Enum.SurfaceType.Smooth
  2875. p11 = Instance.new("Part", m)
  2876. p11.BrickColor = BrickColor.new("Lime green")
  2877. p11.Material = Enum.Material.Neon
  2878. p11.FormFactor = Enum.FormFactor.Custom
  2879. p11.Size = Vector3.new(0.200000048, 0.699999809, 0.200000048)
  2880. 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)
  2881. p11.CanCollide = false
  2882. p11.Locked = true
  2883. p11.BottomSurface = Enum.SurfaceType.Smooth
  2884. p11.TopSurface = Enum.SurfaceType.Smooth
  2885. p12 = Instance.new("WedgePart", m)
  2886. p12.BrickColor = BrickColor.new("Lime green")
  2887. p12.Material = Enum.Material.Neon
  2888. p12.Name = "Wedge"
  2889. p12.FormFactor = Enum.FormFactor.Custom
  2890. p12.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2891. 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)
  2892. p12.CanCollide = false
  2893. p12.Locked = true
  2894. p12.TopSurface = Enum.SurfaceType.Smooth
  2895. b7 = Instance.new("SpecialMesh", p12)
  2896. b7.MeshType = Enum.MeshType.Wedge
  2897. b7.Name = "Mesh"
  2898. b7.Scale = Vector3.new(0.200000003, 1, 1)
  2899. p13 = Instance.new("Part", m)
  2900. p13.BrickColor = BrickColor.new("Really black")
  2901. p13.Material = Enum.Material.Neon
  2902. p13.FormFactor = Enum.FormFactor.Custom
  2903. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2904. 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)
  2905. p13.CanCollide = false
  2906. p13.Locked = true
  2907. p13.BottomSurface = Enum.SurfaceType.Smooth
  2908. p13.TopSurface = Enum.SurfaceType.Smooth
  2909. b8 = Instance.new("SpecialMesh", p13)
  2910. b8.MeshType = Enum.MeshType.Sphere
  2911. b8.Name = "Mesh"
  2912. p14 = Instance.new("Part", m)
  2913. p14.BrickColor = BrickColor.new("Really black")
  2914. p14.Material = Enum.Material.Neon
  2915. p14.FormFactor = Enum.FormFactor.Custom
  2916. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2917. 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)
  2918. p14.CanCollide = false
  2919. p14.Locked = true
  2920. p14.BottomSurface = Enum.SurfaceType.Smooth
  2921. p14.TopSurface = Enum.SurfaceType.Smooth
  2922. b9 = Instance.new("SpecialMesh", p14)
  2923. b9.MeshType = Enum.MeshType.Sphere
  2924. b9.Name = "Mesh"
  2925. w1 = Instance.new("Weld", p1)
  2926. w1.Name = "Wedge_Weld"
  2927. w1.Part0 = p1
  2928. 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)
  2929. w1.Part1 = p2
  2930. 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)
  2931. w2 = Instance.new("Weld", p2)
  2932. w2.Name = "Part_Weld"
  2933. w2.Part0 = p2
  2934. 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)
  2935. w2.Part1 = p3
  2936. 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)
  2937. w3 = Instance.new("Weld", p3)
  2938. w3.Name = "Part_Weld"
  2939. w3.Part0 = p3
  2940. 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)
  2941. w3.Part1 = p4
  2942. 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)
  2943. w4 = Instance.new("Weld", p4)
  2944. w4.Name = "Wedge_Weld"
  2945. w4.Part0 = p4
  2946. 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)
  2947. w4.Part1 = p5
  2948. 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)
  2949. w5 = Instance.new("Weld", p5)
  2950. w5.Name = "Part_Weld"
  2951. w5.Part0 = p5
  2952. 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)
  2953. w5.Part1 = p6
  2954. 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)
  2955. w6 = Instance.new("Weld", p6)
  2956. w6.Name = "Part_Weld"
  2957. w6.Part0 = p6
  2958. 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)
  2959. w6.Part1 = p7
  2960. 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)
  2961. w7 = Instance.new("Weld", p7)
  2962. w7.Name = "Part_Weld"
  2963. w7.Part0 = p7
  2964. 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)
  2965. w7.Part1 = p8
  2966. 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)
  2967. w8 = Instance.new("Weld", p8)
  2968. w8.Name = "Part_Weld"
  2969. w8.Part0 = p8
  2970. 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)
  2971. w8.Part1 = p9
  2972. 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)
  2973. w9 = Instance.new("Weld", p9)
  2974. w9.Name = "Part_Weld"
  2975. w9.Part0 = p9
  2976. 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)
  2977. w9.Part1 = p10
  2978. 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)
  2979. w10 = Instance.new("Weld", p10)
  2980. w10.Name = "Part_Weld"
  2981. w10.Part0 = p10
  2982. 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)
  2983. w10.Part1 = p11
  2984. 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)
  2985. w11 = Instance.new("Weld", p11)
  2986. w11.Name = "Wedge_Weld"
  2987. w11.Part0 = p11
  2988. 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)
  2989. w11.Part1 = p12
  2990. 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)
  2991. w12 = Instance.new("Weld", p12)
  2992. w12.Name = "Part_Weld"
  2993. w12.Part0 = p12
  2994. 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)
  2995. w12.Part1 = p13
  2996. 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)
  2997. w13 = Instance.new("Weld", p13)
  2998. w13.Name = "Part_Weld"
  2999. w13.Part0 = p13
  3000. 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)
  3001. w13.Part1 = p14
  3002. 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)
  3003. w14 = Instance.new("Weld", p14)
  3004. w14.Name = "Wedge_Weld"
  3005. w14.Part0 = p14
  3006. 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)
  3007. m.Parent = lleg
  3008. m:MakeJoints()
  3009. ----------------------------------------------------
  3010. local cor7 = Instance.new("Part", lleg.LeftLeg)
  3011. cor7.Name = "Thingy"
  3012. cor7.Locked = true
  3013. cor7.BottomSurface = 0
  3014. cor7.CanCollide = false
  3015. cor7.Size = Vector3.new(2, 1, 1)
  3016. cor7.Transparency = 1
  3017. cor7.TopSurface = 0
  3018. corw2 = Instance.new("Weld", cor7)
  3019. corw2.Part0 = lleg
  3020. corw2.Part1 = cor7
  3021. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3022. corw2.C1 = CFrame.new(0, 0, 0)
  3023. weld2 = Instance.new("Weld", lleg.LeftLeg)
  3024. weld2.Part0 = cor7
  3025. weld2.Part1 = p3
  3026. weld2.C0 = CFrame.new(0, 0, 0)
  3027. ----------------------------------------------------
  3028. function weld5(part0, part1, c0, c1)
  3029. weeld=Instance.new("Weld", part0)
  3030. weeld.Part0=part0
  3031. weeld.Part1=part1
  3032. weeld.C0=c0
  3033. weeld.C1=c1
  3034. return weeld
  3035. end
  3036. ----------------------------------------------------
  3037. function newRay(start,face,range,wat)
  3038. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  3039. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  3040. return rey,hit,pos
  3041. end
  3042. ----------------------------------------------------
  3043. mod5 = Instance.new("Model",char)
  3044.  
  3045. function FindNearestTorso(Position,Distance,SinglePlayer)
  3046. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3047. local List = {}
  3048. for i,v in pairs(workspace:GetChildren())do
  3049. if v:IsA("Model")then
  3050. if v:findFirstChild("Torso")then
  3051. if v ~= char then
  3052. if(v.Torso.Position -Position).magnitude <= Distance then
  3053. table.insert(List,v)
  3054. end
  3055. end
  3056. end
  3057. end
  3058. end
  3059. return List
  3060. end
  3061.  
  3062. function Landing()
  3063. part=Instance.new('Part',mod5)
  3064. part.Anchored=true
  3065. part.CanCollide=false
  3066. part.FormFactor='Custom'
  3067. part.Size=Vector3.new(.2,.2,.2)
  3068. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  3069. part.Transparency=.7
  3070. part.BrickColor=BrickColor.new('Really black')
  3071. part2=part:clone()
  3072. part2.Parent = mod5
  3073. part2.BrickColor=BrickColor.new('Lime green')
  3074. mesh=Instance.new('SpecialMesh',part)
  3075. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3076. mesh.Scale=Vector3.new(10,5,10)
  3077. mesh2=mesh:clone()
  3078. mesh2.Parent=part2
  3079. mesh2.Scale=Vector3.new(12, 6, 12)
  3080.  
  3081. for i,v in pairs(FindNearestTorso(torso.CFrame.p,30))do
  3082. if v:FindFirstChild('Humanoid') then
  3083. v.Humanoid:TakeDamage(math.random(20,30))
  3084. v.Humanoid.PlatformStand = true
  3085. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 30
  3086. end
  3087. end
  3088.  
  3089. coroutine.resume(coroutine.create(function()
  3090. for i=0,3.8,0.05 do
  3091. wait()
  3092. part.CFrame=part.CFrame
  3093. part.Transparency=i
  3094. part2.CFrame=part2.CFrame
  3095. part2.Transparency=i
  3096. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  3097. mesh2.Scale=mesh2.Scale+Vector3.new(1.2,0.3,1.2)
  3098. end
  3099. part.Parent = nil
  3100. end))
  3101. end
  3102. ----------------------------------------------------
  3103. mod4 = Instance.new("Model",char)
  3104.  
  3105. ptez = {0.7, 0.8, 0.9, 1}
  3106.  
  3107. function FindNearestTorso(Position,Distance,SinglePlayer)
  3108. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3109. local List = {}
  3110. for i,v in pairs(workspace:GetChildren())do
  3111. if v:IsA("Model")then
  3112. if v:findFirstChild("Torso")then
  3113. if v ~= char then
  3114. if(v.Torso.Position -Position).magnitude <= Distance then
  3115. table.insert(List,v)
  3116. end
  3117. end
  3118. end
  3119. end
  3120. end
  3121. return List
  3122. end
  3123.  
  3124. function GroundPound()
  3125. part=Instance.new('Part',mod4)
  3126. part.Anchored=true
  3127. part.CanCollide=false
  3128. part.FormFactor='Custom'
  3129. part.Size=Vector3.new(.2,.2,.2)
  3130. part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  3131. part.Transparency=.7
  3132. part.BrickColor=BrickColor.new('Really black')
  3133. mesh=Instance.new('SpecialMesh',part)
  3134. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3135. mesh.Scale=Vector3.new(3,3,3)
  3136. part2=Instance.new('Part',mod4)
  3137. part2.Anchored=true
  3138. part2.CanCollide=false
  3139. part2.FormFactor='Custom'
  3140. part2.Size=Vector3.new(.2,.2,.2)
  3141. part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  3142. part2.Transparency=.7
  3143. part2.BrickColor=BrickColor.new('Really red')
  3144. mesh2=Instance.new('SpecialMesh',part2)
  3145. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  3146. mesh2.Scale=Vector3.new(3,1.5,3)
  3147. x = Instance.new("Sound",char)
  3148. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  3149. x.Pitch = ptez[math.random(1,#ptez)]
  3150. x.Volume = 1
  3151. wait(.1)
  3152. x:Play()
  3153. for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  3154. if v:FindFirstChild('Humanoid') then
  3155. v.Humanoid:TakeDamage(math.random(8,15))
  3156. end
  3157. end
  3158. coroutine.resume(coroutine.create(function()
  3159. for i=0,0.62,0.13 do
  3160. wait()
  3161. part.CFrame=part.CFrame
  3162. part.Transparency=i
  3163. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  3164. part2.CFrame=part2.CFrame
  3165. part2.Transparency=i
  3166. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  3167. end
  3168. part.Parent=nil
  3169. part2.Parent=nil
  3170. x:Destroy()
  3171. end))
  3172. end
  3173. ----------------------------------------------------
  3174. mod=Instance.new('Model',char)
  3175.  
  3176. function charge()
  3177. hed.Velocity=hed.CFrame.lookVector*200
  3178. part=Instance.new('Part',mod)
  3179. part.Anchored=true
  3180. part.CanCollide=false
  3181. part.FormFactor='Custom'
  3182. part.Size=Vector3.new(.2,.2,.2)
  3183. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  3184. part.Transparency=.7
  3185. part.BrickColor=BrickColor.new('Black')
  3186. mesh=Instance.new('SpecialMesh',part)
  3187. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3188. mesh.Scale=Vector3.new(10,5,10)
  3189. part2=part:clone()
  3190. part2.Parent=mod
  3191. part2.BrickColor=BrickColor.new('Bright red')
  3192. mesh2=mesh:clone()
  3193. mesh2.Parent=part2
  3194. mesh2.Scale=Vector3.new(20,10,20)
  3195. part3=part2:clone()
  3196. part3.Parent = mod
  3197. part3.BrickColor=BrickColor.new('Really black')
  3198. mesh3=mesh2:clone()
  3199. mesh2.Parent=part3
  3200. mesh3.Scale=Vector3.new(30,15,30)
  3201. coroutine.resume(coroutine.create(function()
  3202. for i=0,1,0.1 do
  3203. wait()
  3204. part.CFrame=part.CFrame
  3205. part.Transparency=i
  3206. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  3207. part2.CFrame=part2.CFrame
  3208. part2.Transparency=i
  3209. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3210. part3.CFrame=part3.CFrame
  3211. part3.Transparency=i
  3212. mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  3213. end
  3214. part.Parent=nil
  3215. part2.Parent=nil
  3216. part3.Parent = nil
  3217. end))
  3218. end
  3219. ----------------------------------------------------
  3220. function FindNearestTorso(Position,Distance,SinglePlayer)
  3221. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3222. local List = {}
  3223. for i,v in pairs(workspace:GetChildren())do
  3224. if v:IsA("Model")then
  3225. if v:findFirstChild("Torso")then
  3226. if v ~= char then
  3227. if(v.Torso.Position -Position).magnitude <= Distance then
  3228. table.insert(List,v)
  3229. end
  3230. end
  3231. end
  3232. end
  3233. end
  3234. return List
  3235. end
  3236.  
  3237. mod3 = Instance.new("Model",rleg)
  3238.  
  3239. function Stomp()
  3240. part=Instance.new('Part',mod3)
  3241. part.Anchored=true
  3242. part.CanCollide=false
  3243. part.FormFactor='Custom'
  3244. part.Size=Vector3.new(.2,.2,.2)
  3245. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  3246. part.Transparency=.7
  3247. part.BrickColor=BrickColor.new('Bright green')
  3248. mesh=Instance.new('SpecialMesh',part)
  3249. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3250. mesh.Scale=Vector3.new(25,25,25)
  3251. part2=part:clone()
  3252. part2.Parent=mod3
  3253. part2.BrickColor=BrickColor.new('Bright green')
  3254. mesh2=mesh:clone()
  3255. mesh2.Parent=part2
  3256. mesh2.Scale=Vector3.new(15,15,15)
  3257. part3=part:clone()
  3258. part3.Parent=mod3
  3259. part3.TopSurface=0
  3260. part3.BottomSurface=0
  3261. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  3262. mesh3=Instance.new('SpecialMesh',part3)
  3263. mesh3.MeshType = 3
  3264. mesh3.Scale=Vector3.new(12,12,12)
  3265. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  3266. if v:FindFirstChild('Humanoid') then
  3267. v.Humanoid:TakeDamage(math.random(20,60))
  3268. v.Humanoid.PlatformStand = true
  3269. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  3270. end
  3271. end
  3272. coroutine.resume(coroutine.create(function()
  3273. for i=0,3.8,0.05 do
  3274. wait()
  3275. part.CFrame=part.CFrame
  3276. part.Transparency=i
  3277. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  3278. part2.CFrame=part2.CFrame
  3279. part2.Transparency=i
  3280. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3281. part3.CFrame=part3.CFrame
  3282. part3.Transparency=i
  3283. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  3284. end
  3285. end))
  3286. end
  3287. ----------------------------------------------------
  3288.  
  3289. local acos = math.acos
  3290. local sqrt = math.sqrt
  3291. local Vec3 = Vector3.new
  3292. local fromAxisAngle = CFrame.fromAxisAngle
  3293.  
  3294. local function toAxisAngle(CFr)
  3295. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  3296. local Angle = math.acos((R00+R11+R22-1)/2)
  3297. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3298. A = A == 0 and 0.00001 or A
  3299. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3300. B = B == 0 and 0.00001 or B
  3301. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3302. C = C == 0 and 0.00001 or C
  3303. local x = (R21-R12)/sqrt(A)
  3304. local y = (R02-R20)/sqrt(B)
  3305. local z = (R10-R01)/sqrt(C)
  3306. return Vec3(x,y,z),Angle
  3307. end
  3308.  
  3309. function ApplyTrig(Num,Func)
  3310. local Min,Max = Func(0),Func(1)
  3311. local i = Func(Num)
  3312. return (i-Min)/(Max-Min)
  3313. --[[if Func == "sin" then
  3314. return (math.sin((1-Num)*math.pi)+1)/2
  3315. elseif Func == "cos" then
  3316. return (math.cos((1-Num)*math.pi)+1)/2
  3317. end]]
  3318. end
  3319.  
  3320. function LerpCFrame(CFrame1,CFrame2,Num)
  3321. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  3322. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  3323. end
  3324.  
  3325. function Crater(Torso,Radius)
  3326. Spawn(function()
  3327. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  3328. local Ignore = {}
  3329. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3330. if v.Character ~= nil then
  3331. Ignore[#Ignore+1] = v.Character
  3332. end
  3333. end
  3334. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  3335. if Hit == nil then return end
  3336. local Parts = {}
  3337. for i = 1,360,10 do
  3338. local P = Instance.new("Part",Torso.Parent)
  3339. P.Anchored = true
  3340. P.FormFactor = "Custom"
  3341. P.BrickColor = Hit.BrickColor
  3342. P.Material = Hit.Material
  3343. P.TopSurface = "Smooth"
  3344. P.BottomSurface = "Smooth"
  3345. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  3346. 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)))
  3347. 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}
  3348. if math.random(0,5) == 0 then -- rubble
  3349. local P = Instance.new("Part",Torso.Parent)
  3350. P.Anchored = true
  3351. P.FormFactor = "Custom"
  3352. P.BrickColor = Hit.BrickColor
  3353. P.Material = Hit.Material
  3354. P.TopSurface = "Smooth"
  3355. P.BottomSurface = "Smooth"
  3356. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  3357. 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)))
  3358. 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}
  3359. end
  3360. end
  3361. for i = 0,1,0.05 do
  3362. for i2,v in pairs(Parts) do
  3363. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  3364. end
  3365. wait(0.02)
  3366. end
  3367. for i,v in pairs(Parts) do
  3368. if v[1].Size.X > 2.1 then
  3369. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  3370. end
  3371. v[1].Anchored = false
  3372. end
  3373. for i = 0,1,0.05 do
  3374. for i2,v in pairs(Parts) do
  3375. v[1].Transparency = i
  3376. if i == 1 then
  3377. v[1]:Destroy()
  3378. elseif i >= 0.25 then
  3379. v[1].CanCollide = false
  3380. end
  3381. end
  3382. wait(0.02)
  3383. end
  3384. Parts = nil
  3385. end)
  3386. end
  3387.  
  3388. ----------------------------------------------------
  3389. mouse.KeyDown:connect(function(key)
  3390. if key == "r" then
  3391. larm.BrickColor = BrickColor.new("Bright red")
  3392. rarm.BrickColor = BrickColor.new("Bright red")
  3393. if Debounces.CanAttack == true then
  3394. Debounces.CanAttack = false
  3395. Debounces.on = true
  3396. Debounces.NoIdl = true
  3397. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3398. hit = ht.Parent
  3399. if ht and hit:IsA("Model") then
  3400. if hit:FindFirstChild("Humanoid") then
  3401. if hit.Name ~= p.Name then
  3402. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3403. Debounces.Slashed = true]]--
  3404. hit:FindFirstChild("Humanoid"):TakeDamage(10)
  3405. wait(1)
  3406. --Debounces.Slashed = false
  3407. --end
  3408. end
  3409. end
  3410. elseif ht and hit:IsA("Hat") then
  3411. if hit.Parent.Name ~= p.Name then
  3412. if hit.Parent:FindFirstChild("Humanoid") then
  3413. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3414. Debounces.Slashed = true]]--
  3415. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  3416. wait(1)
  3417. --Debounces.Slashed = false
  3418. end
  3419. end
  3420. end
  3421. end)
  3422. q = Instance.new("Sound",hed)
  3423. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3424. q.Pitch = 0.85
  3425. q.Looped = false
  3426. q1 = Instance.new("Sound",hed)
  3427. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3428. q1.Pitch = 0.85
  3429. q1.Looped = false
  3430. q:Play()
  3431. q1:Play()
  3432. for i = 1,20 do
  3433. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.2)
  3434. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.2)
  3435. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.2)
  3436. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3437. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3438. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3439. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.2, -3) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(0)), 0.25)
  3440. if Debounces.on == false then break end
  3441. rs:wait(.6)
  3442. end
  3443. n = Instance.new("Sound",hed)
  3444. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  3445. n.Pitch = 0.94
  3446. n.Looped = false
  3447. n1 = Instance.new("Sound",hed)
  3448. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  3449. n1.Pitch = 0.94
  3450. n1.Looped = false
  3451. n:Play()
  3452. n1:Play()
  3453. b = Instance.new("Sound",hed)
  3454. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3455. b.Pitch = 0.94
  3456. b.Looped = false
  3457. b1 = Instance.new("Sound",hed)
  3458. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3459. b1.Pitch = 0.94
  3460. b1.Looped = false
  3461. b:Play()
  3462. b1:Play()
  3463. for i = 1,26 do
  3464. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.25)
  3465. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.25)
  3466. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.25)
  3467. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.25)
  3468. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.25)
  3469. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.25)
  3470. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 0.25)
  3471. if Debounces.on == false then break end
  3472. rs:wait(1)
  3473. end
  3474. wait(.5)
  3475. to:disconnect()
  3476. q:Destroy()
  3477. q1:Destroy()
  3478. n:Destroy()
  3479. n1:Destroy()
  3480. larm.BrickColor = BrickColor.new("Really black")
  3481. rarm.BrickColor = BrickColor.new("Really black")
  3482. if Debounces.CanAttack == false then
  3483. Debounces.CanAttack = true
  3484. Debounces.on = false
  3485. Debounces.NoIdl = false
  3486. end
  3487. end
  3488. end
  3489. end)
  3490. ----------------------------------------------------
  3491. mouse.KeyDown:connect(function(key)
  3492. if key == "q" then
  3493. larm.BrickColor = BrickColor.new("Bright red")
  3494. rarm.BrickColor = BrickColor.new("Bright red")
  3495. if Debounces.CanAttack == true then
  3496. Debounces.CanAttack = false
  3497. Debounces.on = true
  3498. Debounces.NoIdl = true
  3499. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3500. hit = ht.Parent
  3501. if ht and hit:IsA("Model") then
  3502. if hit:FindFirstChild("Humanoid") then
  3503. if hit.Name ~= p.Name then
  3504. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3505. Debounces.Slashed = true]]--
  3506. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3507. wait(1)
  3508. --Debounces.Slashed = false
  3509. --end
  3510. end
  3511. end
  3512. elseif ht and hit:IsA("Hat") then
  3513. if hit.Parent.Name ~= p.Name then
  3514. if hit.Parent:FindFirstChild("Humanoid") then
  3515. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3516. Debounces.Slashed = true]]--
  3517. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3518. wait(1)
  3519. --Debounces.Slashed = false
  3520. end
  3521. end
  3522. end
  3523. end)
  3524. for i = 1, 20 do
  3525. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(21), math.rad(75), math.rad(50)), 0.2)
  3526. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(-18)), 0.2)
  3527. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  3528. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  3529. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3530. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3531. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3532. if Debounces.on == false then break end
  3533. rs:wait(2)
  3534. end
  3535. z = Instance.new("Sound",hed)
  3536. z.SoundId = "rbxassetid://160069154"
  3537. z.Looped = false
  3538. z.Pitch = .9
  3539. z1 = Instance.new("Sound",hed)
  3540. z1.SoundId = "rbxassetid://160069154"
  3541. z1.Looped = false
  3542. z1.Pitch = .9
  3543. wait(0.01)
  3544. z:Play()
  3545. z1:Play()
  3546. for i = 1, 20 do
  3547. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), 0.2)
  3548. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.9,-1) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(20)), 0.5)
  3549. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  3550. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.5)
  3551. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  3552. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  3553. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3554. if Debounces.on == false then break end
  3555. rs:wait(2)
  3556. end
  3557. for i = 1, 20 do
  3558. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(140), math.rad(0), math.rad(50)), 0.4)
  3559. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.4)
  3560. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  3561. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  3562. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3563. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3564. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3565. if Debounces.on == false then break end
  3566. rs:wait(2)
  3567. end
  3568. z = Instance.new("Sound",hed)
  3569. z.SoundId = "rbxassetid://168586621"
  3570. z.Looped = false
  3571. z.Pitch = 1
  3572. z1 = Instance.new("Sound",hed)
  3573. z1.SoundId = "rbxassetid://168586621"
  3574. z1.Looped = false
  3575. z1.Pitch = 1
  3576. wait(0.01)
  3577. z:Play()
  3578. z1:Play()
  3579. for i = 1, 20 do
  3580. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(40), math.rad(-20), math.rad(10)), 0.5)
  3581. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-18)), 0.4)
  3582. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  3583. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  3584. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  3585. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  3586. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.8, -1.4) * CFrame.Angles(math.rad(-110), math.rad(-90), math.rad(20)), 1)
  3587. if Debounces.on == false then break end
  3588. rs:wait(2)
  3589. end
  3590. to:disconnect()
  3591. larm.BrickColor = BrickColor.new("Really black")
  3592. rarm.BrickColor = BrickColor.new("Really black")
  3593. if Debounces.CanAttack == false then
  3594. Debounces.CanAttack = true
  3595. Debounces.on = false
  3596. Debounces.NoIdl = false
  3597. end
  3598. end
  3599. end
  3600. end)
  3601. ----------------------------------------------------
  3602. Sit = false
  3603. mouse.KeyDown:connect(function(key)
  3604. if key == "v" then
  3605. if Sit == false then
  3606. Sit = true
  3607. hum.WalkSpeed = 0.001
  3608. stanceToggle = "Sitting"
  3609. elseif Sit == true then
  3610. Sit = false
  3611. hum.WalkSpeed = 7
  3612. stanceToggle = "Normal"
  3613. end
  3614. end
  3615. end)
  3616. ----------------------------------------------------
  3617. mouse.KeyDown:connect(function(key)
  3618. if key == "t" then
  3619. if Debounces.CanAttack == true then
  3620. Debounces.CanAttack = false
  3621. Debounces.on = true
  3622. Debounces.NoIdl = true
  3623. for i = 1, 20 do
  3624. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.2)
  3625. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.2)
  3626. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.2)
  3627. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3628. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.2)
  3629. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.2)
  3630. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  3631. if Debounces.on == false then break end
  3632. rs:wait(2.6)
  3633. end
  3634. Spawn(function()
  3635. local Parts = {}
  3636. for Y = -5,5 do
  3637. local P = Instance.new("Part",char)
  3638. P.Anchored = true
  3639. P.FormFactor = "Custom"
  3640. P.CanCollide = false
  3641. P.Size = Vector3.new(1,2,1)
  3642. P.TopSurface = "SmoothNoOutlines"
  3643. P.BottomSurface = "SmoothNoOutlines"
  3644. P.BrickColor = BrickColor.new("Really black")
  3645. P.Name = tostring(Y)
  3646. local i = (Y+5)/(10)
  3647. i = 1-math.cos(math.pi*i-(math.pi/2))
  3648. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  3649. --[[P.Touched:connect(function(ht)
  3650. local hit = ht.Parent
  3651. if hit:FindFirstChild("Humanoid") then
  3652. hit.Humanoid:TakeDamage(math.random(20,50))
  3653. end
  3654. end)]]--
  3655. s = Instance.new("Sound",P)
  3656. s.SoundId = "rbxassetid://228343271"
  3657. s.Volume = .7
  3658. s.Pitch = 0.9
  3659. s:Play()
  3660. P.Touched:connect(function(ht)
  3661. hit = ht.Parent
  3662. if ht and hit:IsA("Model") then
  3663. if hit:FindFirstChild("Humanoid") then
  3664. if hit.Name ~= p.Name then
  3665. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3666. Debounces.Slashed = true]]--
  3667. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
  3668. hit:FindFirstChild("Humanoid").PlatformStand = true
  3669. wait(1)
  3670. --Debounces.Slashed = false
  3671. --end
  3672. end
  3673. end
  3674. elseif ht and hit:IsA("Hat") then
  3675. if hit.Parent.Name ~= p.Name then
  3676. if hit.Parent:FindFirstChild("Humanoid") then
  3677. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3678. Debounces.Slashed = true]]--
  3679. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
  3680. hit:FindFirstChild("Humanoid").PlatformStand = true
  3681. wait(1)
  3682. --Debounces.Slashed = false
  3683. --end
  3684. end
  3685. end
  3686. end
  3687. end)
  3688. Parts[#Parts+1] = P
  3689. end
  3690. local BREAKIT = false
  3691. local CParts = {}
  3692. local Rocks = {}
  3693. local LastPos = nil
  3694. for i = 1,70 do
  3695. for i2,v in pairs(Parts) do
  3696. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  3697. local cf = v.CFrame
  3698. v.Size = v.Size+Vector3.new(0.4,0.35,0)
  3699. v.CFrame = cf
  3700. v.Transparency = v.Transparency+0.02
  3701. if v.Transparency >= 0.975 then BREAKIT = true end
  3702. if v.Name == "0" then
  3703. local Ignore = {}
  3704. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3705. if v.Character ~= nil then
  3706. Ignore[#Ignore+1] = v.Character
  3707. end
  3708. end
  3709. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  3710. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  3711. if Hit ~= nil then
  3712. if #Rocks == 0 then
  3713. for i = 1,5 do
  3714. local P = Instance.new("Part",char)
  3715. Rocks[#Rocks+1] = P
  3716. P.Anchored = true
  3717. P.FormFactor = "Custom"
  3718. P.BrickColor = Hit.BrickColor
  3719. P.Material = Hit.Material
  3720. P.TopSurface = "Smooth"
  3721. P.BottomSurface = "Smooth"
  3722. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  3723. end
  3724. end
  3725. for i,P in pairs(Rocks) do
  3726. P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  3727. end
  3728. local P = Instance.new("Part",char)
  3729. CParts[#CParts+1] = {P,tick()}
  3730. P.Anchored = true
  3731. P.FormFactor = "Custom"
  3732. P.BrickColor = Hit.BrickColor
  3733. P.Material = Hit.Material
  3734. P.TopSurface = "Smooth"
  3735. P.BottomSurface = "Smooth"
  3736. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  3737. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3738. Pos = Pos.p
  3739. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  3740. local P = P:Clone()
  3741. CParts[#CParts+1] = {P,tick()}
  3742. P.Parent = char
  3743. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  3744. Pos = Pos.p
  3745. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
  3746. if LastPos ~= nil then
  3747. local P = P:Clone()
  3748. CParts[#CParts+1] = {P,tick()}
  3749. P.Parent = char
  3750. P.BrickColor = BrickColor.new("Really black")
  3751. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3752. Pos = Pos.p
  3753. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3754. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  3755. --P.Velocity = Vector3.new(0,-1000,0)
  3756. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  3757. end
  3758. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3759. end
  3760. end
  3761. end
  3762. if BREAKIT then break end
  3763. wait(0.002)
  3764. end
  3765. for i,v in pairs(Rocks) do
  3766. CParts[#CParts+1] = {v,tick()}
  3767. end
  3768. for i,v in pairs(Parts) do
  3769. v:Destroy()
  3770. end
  3771. Parts = nil
  3772. while true do
  3773. local t = tick()
  3774. local p = nil
  3775. for i,v in pairs(CParts) do
  3776. if t-v[2] > 4 then
  3777. v[1].Transparency = v[1].Transparency+0.05
  3778. if v[1].Transparency >= 1 then
  3779. v[1]:Destroy()
  3780. CParts[i] = nil
  3781. end
  3782. end
  3783. p = v
  3784. end
  3785. if p == nil then break end
  3786. wait(0.002)
  3787. end
  3788. for i,v in pairs(CParts) do
  3789. v:Destroy()
  3790. end
  3791. CParts = {}
  3792. end)
  3793. for i = 1, 20 do
  3794. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.4)
  3795. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.4)
  3796. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)),0.4)
  3797. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  3798. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  3799. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  3800. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  3801. if Debounces.on == false then break end
  3802. rs:wait(2)
  3803. end
  3804. if Debounces.CanAttack == false then
  3805. Debounces.CanAttack = true
  3806. Debounces.on = false
  3807. Debounces.NoIdl = false
  3808. end
  3809. end
  3810. end
  3811. end)
  3812. ----------------------------------------------------
  3813. mouse.KeyDown:connect(function(key)
  3814. if key == "e" then
  3815. larm.BrickColor = BrickColor.new("Bright red")
  3816. rarm.BrickColor = BrickColor.new("Bright red")
  3817. if Debounces.CanAttack == true then
  3818. Debounces.CanAttack = false
  3819. Debounces.on = true
  3820. Debounces.NoIdl = true
  3821. for i = 1, 18 do
  3822. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.7, 0) * CFrame.Angles(math.rad(90),math.rad(50),math.rad(90)), 0.4)
  3823. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  3824. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3825. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3826. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3827. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3828. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3829. if Debounces.on == false then break end
  3830. rs:wait(4)
  3831. end
  3832. local HandCF = CFrame.new(char.Absolution.Handle.Position - Vector3.new(0,8.8,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  3833. local rng = Instance.new("Part", char.Absolution.Handle)
  3834. rng.Anchored = true
  3835. rng.BrickColor = BrickColor.new("Really black")
  3836. rng.CanCollide = true
  3837. rng.FormFactor = 3
  3838. rng.Name = "Ring"
  3839. rng.Size = Vector3.new(1, 1, 1)
  3840. rng.CanCollide = false
  3841. rng.Transparency = 0.35
  3842. rng.TopSurface = 0
  3843. rng.BottomSurface = 0
  3844. rng.CFrame = HandCF
  3845. local rngm = Instance.new("SpecialMesh", rng)
  3846. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3847. rngm.Scale = Vector3.new(1, 1, 2)
  3848. x = Instance.new("Sound", hed)
  3849. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3850. x.Looped = false
  3851. x.Pitch = .7
  3852. x.Volume = 1
  3853. x1 = Instance.new("Sound", hed)
  3854. x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3855. x1.Looped = false
  3856. x1.Pitch = .7
  3857. x1.Volume = 1
  3858. x:Play()
  3859. x1:Play()
  3860. rngto = rng.Touched:connect(function(ht)
  3861. hit = ht.Parent
  3862. if ht and hit:IsA("Model") then
  3863. if hit:FindFirstChild("Humanoid") then
  3864. if hit.Name ~= p.Name then
  3865. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3866. Debounces.Slashed = true]]--
  3867. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3868. hit:FindFirstChild("Humanoid").PlatformStand = true
  3869. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3870. --Debounces.Slashed = false
  3871. --end
  3872. end
  3873. end
  3874. elseif ht and hit:IsA("Hat") then
  3875. if hit.Parent.Name ~= p.Name then
  3876. if hit.Parent:FindFirstChild("Humanoid") then
  3877. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3878. Debounces.Slashed = true]]--
  3879. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3880. hit:FindFirstChild("Humanoid").PlatformStand = true
  3881. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3882. --Debounces.Slashed = false
  3883. end
  3884. end
  3885. end
  3886. end)
  3887. coroutine.wrap(function()
  3888. for i = 1, 60, 2 do
  3889. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  3890. rng.Size = rngm.Scale
  3891. rng.CFrame = HandCF
  3892. rng.Transparency = i/60
  3893. wait()
  3894. end
  3895. wait()
  3896. rng:Destroy()
  3897. end)()
  3898. for i = 1, 18 do
  3899. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, 0) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.4)
  3900. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  3901. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3902. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3903. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3904. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3905. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, 0.2) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3906. if Debounces.on == false then break end
  3907. rs:wait(2.4)
  3908. end
  3909. larm.BrickColor = BrickColor.new("Really black")
  3910. rarm.BrickColor = BrickColor.new("Really black")
  3911. x:Destroy()
  3912. x1:Destroy()
  3913. if Debounces.CanAttack == false then
  3914. Debounces.CanAttack = true
  3915. Debounces.on = false
  3916. Debounces.NoIdl = false
  3917. end
  3918. end
  3919. end
  3920. end)
  3921. ----------------------------------------------------
  3922. mouse.KeyDown:connect(function(key)
  3923. if key == "y" then
  3924. if Debounces.CanAttack == true then
  3925. Debounces.CanAttack = false
  3926. Debounces.on = true
  3927. Debounces.NoIdl = true
  3928. for i = 1, 15 do
  3929. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2)
  3930. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-89)), 0.6)
  3931. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  3932. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  3933. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3934. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3935. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3936. if Debounces.on == false then break end
  3937. rs:wait(2.7)
  3938. end
  3939. x = Instance.new("Sound",char)
  3940. x.SoundId = "rbxassetid://228343271"
  3941. x.Pitch = 1
  3942. x.Volume = .8
  3943. wait(.1)
  3944. x:Play()
  3945. Debounces.on = false
  3946. Debounces.Here = false
  3947. shot = shot + 1
  3948. local rng = Instance.new("Part", char)
  3949. rng.Anchored = true
  3950. rng.BrickColor = BrickColor.new("Lime green")
  3951. rng.CanCollide = false
  3952. rng.FormFactor = 3
  3953. rng.Name = "Ring"
  3954. rng.Size = Vector3.new(1, 1, 1)
  3955. rng.Transparency = 0.35
  3956. rng.TopSurface = 0
  3957. rng.BottomSurface = 0
  3958. rng2 = rng:clone()
  3959. rng3 = rng2:clone()
  3960. rng4 = rng2:clone()
  3961. local rngm = Instance.new("SpecialMesh", rng)
  3962. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3963. rngm.Scale = Vector3.new(10, 10, 1)
  3964. rngm2 = rngm:clone()
  3965. rngm2.Scale = Vector3.new(5, 5, 3)
  3966. rngm3=rngm2:clone()
  3967. rngm3.Parent = rng3
  3968. rngm3.Scale = Vector3.new(8, 8, 1)
  3969. rngm4 = rngm2:clone()
  3970. rngm4.Parent = rng4
  3971. rngm4.Scale = Vector3.new(6, 6, 1)
  3972. local bem = Instance.new("Part", char)
  3973. bem.Anchored = true
  3974. bem.BrickColor = BrickColor.new("Really black")
  3975. bem.CanCollide = false
  3976. bem.FormFactor = 3
  3977. bem.Name = "Beam" .. shot
  3978. bem.Size = Vector3.new(1, 1, 1)
  3979. bem.Transparency = 0.35
  3980. bem.TopSurface = 0
  3981. bem.BottomSurface = 0
  3982. local bemm = Instance.new("SpecialMesh", bem)
  3983. bemm.MeshType = 4
  3984. bemm.Scale = Vector3.new(1, 4, 4)
  3985. local out = Instance.new("Part", char)
  3986. out.Anchored = true
  3987. out.BrickColor = BrickColor.new("Really black")
  3988. out.CanCollide = false
  3989. out.FormFactor = 3
  3990. out.Name = "Out"
  3991. out.Size = Vector3.new(4, 4, 4)
  3992. out.Transparency = 0.35
  3993. out.TopSurface = 0
  3994. out.BottomSurface = 0
  3995. local outm = Instance.new("SpecialMesh", out)
  3996. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  3997. outm.Scale = Vector3.new(4, 4, 4)
  3998. local bnd = Instance.new("Part", char)
  3999. bnd.Anchored = true
  4000. bnd.BrickColor = BrickColor.new("Lime green")
  4001. bnd.CanCollide = false
  4002. bnd.FormFactor = 3
  4003. bnd.Name = "Bend"
  4004. bnd.Size = Vector3.new(1, 1, 1)
  4005. bnd.Transparency = 1
  4006. bnd.TopSurface = 0
  4007. bnd.BottomSurface = 0
  4008. local bndm = Instance.new("SpecialMesh", bnd)
  4009. bndm.MeshType = 3
  4010. bndm.Scale = Vector3.new(8, 8, 8)
  4011. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  4012. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  4013. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  4014. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  4015. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  4016. rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  4017. Debounces.Shewt = true
  4018. coroutine.wrap(function()
  4019. for i = 1, 20, 0.2 do
  4020. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  4021. rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
  4022. rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
  4023. rng.Transparency = i/20
  4024. rng3.Transparency = 1/24
  4025. rng4.Transparency = i/26
  4026. wait()
  4027. end
  4028. wait()
  4029. rng:Destroy()
  4030. end)()
  4031. if Debounces.Shewt == true then
  4032. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  4033. hit = ht.Parent
  4034. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  4035. if HasntTouched(hit.Name) == true and deb == false then
  4036. deb = true
  4037. coroutine.wrap(function()
  4038. hit:FindFirstChild("Humanoid").PlatformStand = true
  4039. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4040. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  4041. end)()
  4042. table.insert(Touche, hit.Name)
  4043. deb = false
  4044. end
  4045. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  4046. if HasntTouched(hit.Parent.Name) == true and deb == false then
  4047. deb = true
  4048. coroutine.wrap(function()
  4049. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  4050. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4051. wait(1)
  4052. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  4053. end)()
  4054. table.insert(Touche, hit.Parent.Name)
  4055. deb = false
  4056. for i, v in pairs(Touche) do
  4057. print(v)
  4058. end
  4059. end
  4060. end
  4061. end)
  4062. end
  4063. for i = 0, 260, 8 do
  4064. bem.Size = Vector3.new(i, 2, 2)
  4065. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  4066. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  4067. bnd.Size = Vector3.new(1,1,1)
  4068. bndm.Scale = Vector3.new(8,8,8)
  4069. if i % 10 == 0 then
  4070. local newRng = rng2:Clone()
  4071. newRng.Parent = char
  4072. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  4073. local newRngm = rngm2:clone()
  4074. newRngm.Parent=newRng
  4075. coroutine.wrap(function()
  4076. for i = 1, 10, 0.2 do
  4077. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
  4078. newRng.Transparency = i/10
  4079. wait()
  4080. end
  4081. wait()
  4082. newRng:Destroy()
  4083. end)()
  4084. end
  4085. wait()
  4086. end
  4087. wait()
  4088. Debounces.Shewt = false
  4089. bem:Destroy()
  4090. out:Destroy()
  4091. bnd:Destroy()
  4092. Debounces.Ready = false
  4093. for i, v in pairs(Touche) do
  4094. table.remove(Touche, i)
  4095. end
  4096. wait()
  4097. table.insert(Touche, char.Name)
  4098. Debounces.NoIdl = false
  4099. if Debounces.CanAttack == false then
  4100. Debounces.CanAttack = true
  4101. end
  4102. end
  4103. end
  4104. end)
  4105. ----------------------------------------------------
  4106. sidz = {"231917888", "231917845", "231917806"}
  4107. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  4108. mouse.KeyDown:connect(function(key)
  4109. if key == "f" then
  4110. larm.BrickColor = BrickColor.new("Bright red")
  4111. rarm.BrickColor = BrickColor.new("Bright red")
  4112. if Debounces.CanAttack == true then
  4113. Debounces.CanAttack = false
  4114. Debounces.on = true
  4115. Debounces.NoIdl = true
  4116. for i = 1, 20 do
  4117. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.2)
  4118. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.2)
  4119. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4120. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4121. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4122. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4123. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4124. if Debounces.on == false then break end
  4125. rs:wait(6)
  4126. end
  4127. z = Instance.new("Sound",char)
  4128. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  4129. z.Pitch = ptz[math.random(1,#ptz)]
  4130. z.Volume = 1
  4131. z1 = Instance.new("Sound",char)
  4132. z1.SoundId = z.SoundId
  4133. z1.Pitch = z.Pitch
  4134. z1.Volume = 1
  4135. z:Play()
  4136. z1:Play()
  4137. Stomp()
  4138. for i = 1, 20 do
  4139. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.3)
  4140. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.3)
  4141. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.3)
  4142. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.3)
  4143. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
  4144. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
  4145. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4146. if Debounces.on == false then break end
  4147. rs:wait(2.5)
  4148. end
  4149. if Debounces.CanAttack == false then
  4150. Debounces.CanAttack = true
  4151. Debounces.on = false
  4152. Debounces.NoIdl = false
  4153. larm.BrickColor = BrickColor.new("Really black")
  4154. rarm.BrickColor = BrickColor.new("Really black")
  4155. end
  4156. end
  4157. end
  4158. end)
  4159. ----------------------------------------------------
  4160. mouse.KeyDown:connect(function(key)
  4161. if key == "g" then
  4162. larm.BrickColor = BrickColor.new("Bright red")
  4163. rarm.BrickColor = BrickColor.new("Bright red")
  4164. if Debounces.CanAttack == true then
  4165. Debounces.CanAttack = false
  4166. Debounces.on = true
  4167. Debounces.NoIdl = true
  4168. chrg = lleg.Touched:connect(function(ht)
  4169. hit = ht.Parent
  4170. if ht and hit:IsA("Model") then
  4171. if hit:FindFirstChild("Humanoid") then
  4172. if hit.Name ~= p.Name then
  4173. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4174. Debounces.Slashed = true]]--
  4175. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4176. hit:FindFirstChild("Humanoid").PlatformStand = true
  4177. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4178. --Debounces.Slashed = false
  4179. --end
  4180. end
  4181. end
  4182. elseif ht and hit:IsA("Hat") then
  4183. if hit.Parent.Name ~= p.Name then
  4184. if hit.Parent:FindFirstChild("Humanoid") then
  4185. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  4186. Debounces.Slashed = true]]--
  4187. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4188. hit:FindFirstChild("Humanoid").PlatformStand = true
  4189. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4190. --Debounces.Slashed = false
  4191. end
  4192. end
  4193. end
  4194. end)
  4195. for i = 1, 14 do
  4196. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.2)
  4197. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.2)
  4198. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.2)
  4199. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.2)
  4200. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.2)
  4201. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.2)
  4202. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  4203. if Debounces.on == false then break end
  4204. rs:wait(3)
  4205. end
  4206. charge()
  4207. z = Instance.new("Sound",char)
  4208. z.SoundId = "rbxassetid://200632875"
  4209. z.Volume = 1
  4210. z.Pitch = .8
  4211. z1 = Instance.new("Sound",char)
  4212. z1.SoundId = "rbxassetid://200632875"
  4213. z1.Volume = 1
  4214. z1.Pitch = .9
  4215. z:Play()
  4216. z1:Play()
  4217. wait(1)
  4218. z:Destroy()
  4219. z1:Destroy()
  4220. chrg:disconnect()
  4221. if Debounces.CanAttack == false then
  4222. Debounces.CanAttack = true
  4223. Debounces.on = false
  4224. Debounces.NoIdl = false
  4225. larm.BrickColor = BrickColor.new("Really black")
  4226. rarm.BrickColor = BrickColor.new("Really black")
  4227. end
  4228. end
  4229. end
  4230. end)
  4231. ----------------------------------------------------
  4232. pt = {0.7, 0.8, 0.9}
  4233. mouse.KeyDown:connect(function(key)
  4234. if key == "h" then
  4235. if Debounces.CanJoke == true then
  4236. Debounces.CanJoke = false
  4237. u = Instance.new("Sound")
  4238. u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4239. u.Parent = char
  4240. u.Looped = false
  4241. u.Pitch = pt[math.random(1,#pt)]
  4242. u.Volume = 1
  4243. u2 = Instance.new("Sound")
  4244. u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4245. u2.Parent = char
  4246. u2.Looped = false
  4247. u2.Pitch = u.Pitch
  4248. u2.Volume = 1
  4249. wait(.01)
  4250. u:Play()
  4251. u2:Play()
  4252. wait(6)
  4253. u:Destroy()
  4254. u2:Destroy()
  4255. if Debounces.CanJoke == false then
  4256. Debounces.CanJoke = true
  4257. end
  4258. end
  4259. end
  4260. end)
  4261. ----------------------------------------------------
  4262. mouse.KeyDown:connect(function(key)
  4263. if key == "j" then
  4264. if Debounces.CanJoke == true then
  4265. Debounces.CanJoke = false
  4266. z = Instance.new("Sound",char)
  4267. z.SoundId = "rbxassetid://135017755"
  4268. z.Pitch = .76
  4269. z.Volume = 1
  4270. wait()
  4271. z:Play()
  4272. wait(6)
  4273. z:Destroy()
  4274. if Debounces.CanJoke == false then
  4275. Debounces.CanJoke = true
  4276. end
  4277. end
  4278. end
  4279. end)
  4280. ----------------------------------------------------
  4281. mouse.KeyDown:connect(function(key)
  4282. if key == "k" then
  4283. if Debounces.CanJoke == true then
  4284. Debounces.CanJoke = false
  4285. z = Instance.new("Sound",char)
  4286. z.SoundId = "rbxassetid://135017578"
  4287. z.Pitch = .76
  4288. z.Volume = 1
  4289. wait()
  4290. z:Play()
  4291. wait(4)
  4292. z:Destroy()
  4293. if Debounces.CanJoke == false then
  4294. Debounces.CanJoke = true
  4295. end
  4296. end
  4297. end
  4298. end)
  4299. ----------------------------------------------------
  4300. mouse.KeyDown:connect(function(key)
  4301. if key == "x" then
  4302. if Debounces.CanAttack == true then
  4303. Debounces.CanAttack = false
  4304. Debounces.NoIdl = true
  4305. Debounces.on = true
  4306. Debounces.ks = true
  4307. for i = 1, 10 do
  4308. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.2)
  4309. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.7,.9,-.5)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(20)), 0.2)
  4310. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.2)
  4311. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  4312. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2)
  4313. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.7, .6) * CFrame.Angles(math.rad(-70), math.rad(0), math.rad(0)), 0.2)
  4314. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4315. if Debounces.on == false then break end
  4316. rs:wait(1)
  4317. end
  4318. z = Instance.new("Sound",hed)
  4319. z.SoundId = "rbxassetid://169445092"
  4320. z.Volume = 1
  4321. wait(0.1)
  4322. z:Play()
  4323. kik = rleg.Touched:connect(function(ht)
  4324. hit = ht.Parent
  4325. if ht and hit:IsA("Model") then
  4326. if hit:FindFirstChild("Humanoid") then
  4327. if hit.Name ~= p.Name then
  4328. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4329. Debounces.Slashed = true]]--
  4330. if Debounces.ks==true then
  4331. z = Instance.new("Sound",hed)
  4332. z.SoundId = "rbxassetid://169380525"
  4333. z.Volume = 1
  4334. z:Play()
  4335. Debounces.ks=false
  4336. end
  4337. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4338. hit:FindFirstChild("Humanoid").PlatformStand = true
  4339. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4340. --Debounces.Slashed = false
  4341. --end
  4342. end
  4343. end
  4344. elseif ht and hit:IsA("Hat") then
  4345. if hit.Parent.Name ~= p.Name then
  4346. if hit.Parent:FindFirstChild("Humanoid") then
  4347. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4348. Debounces.Slashed = true]]--
  4349. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4350. hit:FindFirstChild("Humanoid").PlatformStand = true
  4351. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4352. --Debounces.Slashed = false
  4353. --end
  4354. end
  4355. end
  4356. end
  4357. end)
  4358. for i = 1, 8 do
  4359. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.3)
  4360. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.3)
  4361. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.3)
  4362. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.3)
  4363. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.3)
  4364. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, -1.4) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.3)
  4365. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4366. if Debounces.on == false then break end
  4367. rs:wait(.7)
  4368. end
  4369. kik:disconnect()
  4370. if Debounces.CanAttack == false then
  4371. Debounces.CanAttack = true
  4372. Debounces.on = false
  4373. Debounces.NoIdl = false
  4374. end
  4375. end
  4376. end
  4377. end)
  4378. ----------------------------------------------------
  4379. mouse.KeyDown:connect(function(key)
  4380. if key == "c" then
  4381. if Debounces.CanAttack == true then
  4382. Debounces.CanAttack = false
  4383. Debounces.NoIdl = true
  4384. Debounces.on = true
  4385. SIDZ = {"231917744", "231917742"}
  4386. PTZ = {0.7, 0.8, 0.9, 1}
  4387. for i = 1, 20 do
  4388. wait()
  4389. for i,v in pairs(char.Absolution:children()) do
  4390. if v:IsA("Part") or v:IsA("WedgePart") then
  4391. v.Transparency = v.Transparency + 0.05
  4392. end
  4393. end
  4394. end
  4395. function FindNearestTorso(Position,Distance,SinglePlayer)
  4396. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  4397. local List = {}
  4398. for i,v in pairs(workspace:GetChildren())do
  4399. if v:IsA("Model")then
  4400. if v:findFirstChild("Torso")then
  4401. if v ~= char then
  4402. if(v.Torso.Position -Position).magnitude <= Distance then
  4403. table.insert(List,v)
  4404. end
  4405. end
  4406. end
  4407. end
  4408. end
  4409. return List
  4410. end
  4411. GroundPound()
  4412. for i = 1, 11 do
  4413. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4414. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4)
  4415. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4416. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4417. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4418. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4419. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4420. if Debounces.on == false then break end
  4421. rs:wait(1.4)
  4422. end
  4423. GroundPound()
  4424. for i = 1, 11 do
  4425. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4)
  4426. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4427. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4428. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4429. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4430. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4431. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4432. if Debounces.on == false then break end
  4433. rs:wait(1.4)
  4434. end
  4435. GroundPound()
  4436. for i = 1, 11 do
  4437. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4438. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4)
  4439. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4440. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4441. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4442. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4443. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4444. if Debounces.on == false then break end
  4445. rs:wait(1.4)
  4446. end
  4447. GroundPound()
  4448. for i = 1, 11 do
  4449. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4)
  4450. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4451. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4452. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4453. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4454. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4455. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4456. if Debounces.on == false then break end
  4457. rs:wait(1.4)
  4458. end
  4459. GroundPound()
  4460. for i = 1, 11 do
  4461. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4462. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4)
  4463. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4464. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4465. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4466. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4467. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4468. if Debounces.on == false then break end
  4469. rs:wait(1.4)
  4470. end
  4471. GroundPound()
  4472. for i = 1, 11 do
  4473. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4)
  4474. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4475. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4476. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4477. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4478. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4479. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  4480. if Debounces.on == false then break end
  4481. rs:wait(1.4)
  4482. end
  4483. for i = 1, 24 do
  4484. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-10)), 0.2)
  4485. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(10)), 0.2)
  4486. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4487. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4488. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4489. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4490. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4491. if Debounces.on == false then break end
  4492. rs:wait(3)
  4493. end
  4494. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  4495. if v:FindFirstChild('Humanoid') then
  4496. v.Humanoid:TakeDamage(math.random(20,60))
  4497. v.Humanoid.PlatformStand = true
  4498. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  4499. end
  4500. end
  4501. x = Instance.new("Sound",char)
  4502. x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  4503. x.Pitch = PTZ[math.random(1,#PTZ)]
  4504. x.Volume = 1
  4505. wait(0.1)
  4506. x:Play()
  4507. Crater(hed,20)
  4508. for i = 1, 20 do
  4509. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(-10)), 0.6)
  4510. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(10)), 0.6)
  4511. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  4512. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  4513. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  4514. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  4515. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4516. if Debounces.on == false then break end
  4517. rs:wait(2)
  4518. end
  4519. if Debounces.CanAttack == false then
  4520. Debounces.CanAttack = true
  4521. Debounces.on = false
  4522. Debounces.NoIdl = false
  4523. for i = 1, 20 do
  4524. wait()
  4525. for i,v in pairs(char.Absolution:children()) do
  4526. if v:IsA("Part") or v:IsA("WedgePart") then
  4527. v.Transparency = v.Transparency - 0.05
  4528. end
  4529. end
  4530. end
  4531. end
  4532. end
  4533. end
  4534. end)
  4535. ----------------------------------------------------176349813
  4536. mouse.KeyDown:connect(function(key)
  4537. if key == "b" then
  4538. hum.WalkSpeed = 0.01
  4539. if Debounces.CanAttack == true then
  4540. Debounces.CanAttack = false
  4541. Debounces.NoIdl = true
  4542. Debounces.on = true
  4543. for i = 1, 30 do
  4544. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.2)
  4545. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.2)
  4546. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4547. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4548. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4549. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4550. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4551. if Debounces.on == false then break end
  4552. rs:wait(6)
  4553. end
  4554. v = Instance.new("Sound")
  4555. v.SoundId = "rbxassetid://181384451"
  4556. v.Parent = char
  4557. v.Looped = false
  4558. v.Pitch = .94
  4559. v.Volume = 1
  4560. wait(.01)
  4561. v:Play()
  4562.  
  4563. if Daytime == true then
  4564. Daytime = false
  4565. l.TimeOfDay = 24
  4566. else
  4567. Daytime = true
  4568. l.TimeOfDay = 12
  4569. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  4570. end
  4571.  
  4572. local Shockwave = function()
  4573. local rng1 = Instance.new("Part", char)
  4574. rng1.Anchored = true
  4575. rng1.BrickColor = BrickColor.new("Really black")
  4576. rng1.CanCollide = false
  4577. rng1.FormFactor = 3
  4578. rng1.Name = "Ring"
  4579. rng1.Size = Vector3.new(1, 1, 1)
  4580. rng1.Transparency = 0.35
  4581. rng1.TopSurface = 0
  4582. rng1.BottomSurface = 0
  4583. local rngm1 = Instance.new("SpecialMesh", rng)
  4584. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  4585. rngm1.Scale = Vector3.new(10, 10, 1)
  4586. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  4587. local Wave = Instance.new("Part", game.Workspace--[[?]])
  4588. Wave.Name = "Shockwave"
  4589. Wave.BrickColor = BrickColor.new("Really black")
  4590. Wave.Size = Vector3.new(1, 1, 1)
  4591. Wave.Shape = "Ball"
  4592. Wave.CanCollide = false
  4593. Wave.Anchored = true
  4594. Wave.TopSurface = 0
  4595. Wave.BottomSurface = 0
  4596. Wave.Touched:connect(function(hit)
  4597. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4598. local Occlude = true
  4599. local NotOccludes = {
  4600. char.Name;
  4601. "Wings";
  4602. "Scythe";
  4603. "Thingy";
  4604. "Thingy2"; -- put all of the names in a table pls
  4605. }
  4606. for i,v in pairs(NotOccludes) do
  4607. if hit.Parent.Name == v then
  4608. Occlude = false
  4609. end
  4610. end
  4611. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  4612. if Occlude then
  4613. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4614. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4615. end
  4616. end
  4617. end)
  4618.  
  4619. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  4620.  
  4621. coroutine.wrap(function()
  4622. for i = 1, 20, 0.2 do
  4623. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  4624. rng1.Transparency = i/20
  4625. wait()
  4626. end
  4627. wait()
  4628. rng1:Destroy()
  4629. end)()
  4630.  
  4631. Delay(0, function()
  4632.  
  4633. if Daytime == false then
  4634. for i = 1, 50, 1 do
  4635. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4636. Wave.CFrame = char.Torso.CFrame
  4637. local t = i / 50
  4638. Wave.Transparency = t
  4639. wait()
  4640. end
  4641. else
  4642. for i = 1, 50, 1 do
  4643. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4644. Wave.CFrame = char.Torso.CFrame
  4645. local t = i / 50
  4646. Wave.Transparency = t
  4647. wait()
  4648. end
  4649. end
  4650. Wave:Destroy()
  4651. end)
  4652. Delay(0, function()
  4653. while wait() do
  4654. if Wave ~= nil then
  4655. Wave.CFrame = char.Torso.CFrame
  4656. else
  4657. break
  4658. end
  4659. end
  4660. end)
  4661. end
  4662. Shockwave()
  4663. for i = 1, 30 do
  4664. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.3)
  4665. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.3)
  4666. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.3)
  4667. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.3)
  4668. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  4669. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3.2, .3) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4670. if Debounces.on == false then break end
  4671. rs:wait()
  4672. end
  4673. wait(2.4)
  4674. Debounces.NoIdl = false
  4675. hum.WalkSpeed = 5
  4676. Debounces.on = false
  4677. wait()
  4678. if Debounces.CanAttack == false then
  4679. Debounces.CanAttack = true
  4680. v:Destroy()
  4681. end
  4682. end
  4683. end
  4684. end)
  4685. ----------------------------------------------------
  4686. mouse.KeyDown:connect(function(key)
  4687. if key == "l" then
  4688. for i = 1, 20 do
  4689. wait()
  4690. for i,v in pairs(char.Absolution:children()) do
  4691. if v:IsA("Part") or v:IsA("WedgePart") then
  4692. v.Transparency = v.Transparency + 0.05
  4693. end
  4694. end
  4695. end
  4696. if Debounces.CanAttack == true then
  4697. Debounces.CanAttack = false
  4698. Debounces.NoIdl = true
  4699. Debounces.on = true
  4700. bv = Instance.new("BodyVelocity",torso)
  4701. bv.maxForce = Vector3.new(0,200000,0)
  4702. bv.P = 100000
  4703. bv.velocity = Vector3.new(0,500,0)
  4704. wait(2)
  4705. bv:Destroy()
  4706. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  4707. for i = 1, 20 do
  4708. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  4709. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  4710. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.5, .9, -.5) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(40)), 0.3)
  4711. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.5, .9, -.5) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(-40)), 0.3)
  4712. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.5, -1) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4713. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -1) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4714. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4715. if Debounces.on == false then break end
  4716. wait()
  4717. end
  4718. for i = 1, 360, 20 do wait()
  4719. torso.Weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(math.rad(i),0,0)
  4720. end
  4721. end
  4722. torso.Weld.C1 = CFrame.new(0,-1.2,0)
  4723. local ry,ht,ps=nil,nil,nil
  4724. while ht==nil do
  4725. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  4726. wait()
  4727. end
  4728. z = Instance.new("Sound",char)
  4729. z.SoundId = "rbxassetid://245537790"
  4730. z.Pitch = 1
  4731. z.Volume = 1
  4732. wait(0.1)
  4733. z:Play()
  4734. local sp = Instance.new("Part", char)
  4735. sp.Name = "Energy"
  4736. sp.BrickColor = BrickColor.new("Really black")
  4737. sp.Size = Vector3.new(1, 1, 1)
  4738. sp.Shape = "Ball"
  4739. sp.CanCollide = false
  4740. sp.Anchored = true
  4741. sp.TopSurface = 0
  4742. sp.BottomSurface = 0
  4743. local spm = Instance.new("SpecialMesh",sp)
  4744. spm.MeshId = "rbxassetid://9982590"
  4745. spm.Scale = Vector3.new(3,3,3)
  4746. local sp2 = Instance.new("Part", char)
  4747. sp2.Name = "Energy2"
  4748. sp2.BrickColor = BrickColor.new("Really black")
  4749. sp2.Size = Vector3.new(1, 1, 1)
  4750. sp2.Shape = "Ball"
  4751. sp2.CanCollide = false
  4752. sp2.Anchored = true
  4753. sp2.TopSurface = 0
  4754. sp2.BottomSurface = 0
  4755. local spm2 = Instance.new("SpecialMesh",sp2)
  4756. spm2.MeshId = "rbxassetid://9982590"
  4757. spm2.Scale = Vector3.new(3,3,3)
  4758. sp.Touched:connect(function(hit)
  4759. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4760. local Occlude = true
  4761. local NotOccludes = {
  4762. char.Name;
  4763. "Wings";
  4764. "Scythe";
  4765. "Thingy";
  4766. "Thingy2"; -- put all of the names in a table pls
  4767. }
  4768. for i,v in pairs(NotOccludes) do
  4769. if hit.Parent.Name == v then
  4770. Occlude = false
  4771. end
  4772. end
  4773. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  4774. if Occlude then
  4775. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 80
  4776. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4777. end
  4778. end
  4779. end)
  4780. sp2.Touched:connect(function(hit)
  4781. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4782. local Occlude = true
  4783. local NotOccludes = {
  4784. char.Name;
  4785. "Wings";
  4786. "Scythe";
  4787. "Thingy";
  4788. "Thingy2"; -- put all of the names in a table pls
  4789. }
  4790. for i,v in pairs(NotOccludes) do
  4791. if hit.Parent.Name == v then
  4792. Occlude = false
  4793. end
  4794. end
  4795. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  4796. if Occlude then
  4797. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4798. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4799. end
  4800. end
  4801. end)
  4802. for i = 1, 100, 1 do
  4803. sp.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4804. sp2.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4805. sp.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(i), math.rad(i), math.rad(-i))
  4806. sp2.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  4807. spm.Scale = sp.Size
  4808. spm2.Scale = sp2.Size
  4809. local t = i / 100
  4810. sp.Transparency = t
  4811. sp2.Transparency = t
  4812. wait()
  4813. end
  4814. sp:Destroy()
  4815. sp2:Destroy()
  4816. z:Destroy()
  4817. for i = 1, 20 do
  4818. wait()
  4819. for i,v in pairs(char.Absolution:children()) do
  4820. if v:IsA("Part") or v:IsA("WedgePart") then
  4821. v.Transparency = v.Transparency - 0.05
  4822. end
  4823. end
  4824. end
  4825. if Debounces.CanAttack == false then
  4826. Debounces.CanAttack = true
  4827. Debounces.NoIdl = false
  4828. Debounces.on = false
  4829. end
  4830. end
  4831. end
  4832. end)
  4833. ----------------------------------------------------
  4834. local orbt={}
  4835. local stlt={}
  4836. local chot={}
  4837. local cfxt={}
  4838. local pfxt={}
  4839. local cns=0
  4840. local cnOrb=nil
  4841. mouse.KeyDown:connect(function(key)
  4842. if key == "u" then
  4843. if Debounces.CanAttack == true then
  4844. Debounces.CanAttack = false
  4845. Debounces.NoIdl = true
  4846. Debounces.on = true
  4847. orbt={}
  4848. stlt={}
  4849. chot={}
  4850. cfxt={}
  4851. for i = 1, 20 do
  4852. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(30)), 0.2)
  4853. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1.4,0)*CFrame.Angles(math.rad(170),math.rad(-20),math.rad(-30)), 0.2)
  4854. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(-40),0), 0.2)
  4855. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  4856. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0.4) * CFrame.Angles(math.rad(-20), math.rad(20), math.rad(-10)), 0.2)
  4857. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, -0.4) * CFrame.Angles(math.rad(20), math.rad(-10), math.rad(10)), 0.2)
  4858. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  4859. if Debounces.on == false then end
  4860. rs:wait()
  4861. end
  4862. --[[z = Instance.new("Sound",char)
  4863. z.SoundId = "rbxassetid://170053944"
  4864. z.Pitch = 1.07
  4865. z.Volume = 1
  4866. wait(0.1)
  4867. z:Play() ]]
  4868. z = Instance.new("Sound",char)
  4869. z.SoundId = "rbxassetid://382366855"
  4870. z.Pitch = 1
  4871. z.Volume = 30
  4872. wait(0.01)
  4873. z:Play()
  4874. cnOrb=nwPrt(char,Vector3.new(1,1,1),larm.CFrame*CFrame.new(0,-3.4,-0.1),"Really black")
  4875. debris:AddItem(cnOrb,50)
  4876. cnOrb.Mesh.MeshType=3
  4877. table.insert(orbt,cnOrb)
  4878. table.insert(stlt,cnOrb)
  4879. local nt=0
  4880. --[[for i=0,5,0.02 do
  4881. nt=nt+1
  4882. cns=i
  4883. if nt>=2 then
  4884. nt=0
  4885. 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")
  4886. debris:AddItem(cho,1)
  4887. cho.Mesh.MeshType=3
  4888. table.insert(chot,cho)
  4889. end
  4890. cnOrb.CFrame=larm.CFrame*CFrame.new(0,-3.4-(cns/2),-0.1)
  4891. cnOrb.Mesh.Scale=Vector3.new(i,i,i) ]]
  4892. wait(1)
  4893. --end
  4894. for i = 1, 14 do
  4895. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1.4,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.6)
  4896. if Debounces.on == false then end
  4897. rs:wait()
  4898. end
  4899. coroutine.wrap(function()
  4900. for i = 1, 20 do
  4901. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.45)
  4902. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.8,-.3)*CFrame.Angles(math.rad(70),math.rad(20),math.rad(50)), 0.6)
  4903. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(20),0), 0.5)
  4904. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-40), math.rad(-20), 0), 0.5)
  4905. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, -0.4) * CFrame.Angles(math.rad(60), math.rad(20), math.rad(-10)), 0.5)
  4906. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0.4) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(10)), 0.5)
  4907. if Debounces.on == false then end
  4908. rs:wait()
  4909. end
  4910. end)()
  4911. wait(0.1)
  4912. stlt={}
  4913. 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})
  4914. cnOrb.CFrame=root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)
  4915. local nt=0
  4916. for i=0,160,3 do
  4917. cnOrb.CFrame=cnOrb.CFrame*CFrame.new(0,0,-3)
  4918. nt=nt+1
  4919. if nt>=6 then
  4920. nt=0
  4921. 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")
  4922. cfx.Mesh.MeshId="rbxassetid://20329976"
  4923. cfx.Transparency=0.4
  4924. table.insert(cfxt,cfx)
  4925. debris:AddItem(cfx,1)
  4926. end
  4927. if (cnOrb.Position-ps).magnitude<6 then
  4928. break
  4929. end
  4930. wait()
  4931. end
  4932. orbt={}
  4933.  
  4934. for i=0,1,0.1 do
  4935. local cs=cnOrb.Mesh.Scale
  4936. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,10,i),Tween(cs.Y,10,i),Tween(cs.Z,10,i))
  4937. wait()
  4938. end
  4939. local ofx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4940. ofx.Transparency=0.5
  4941. ofx.Mesh.MeshType=3
  4942. ofx.Mesh.Scale=Vector3.new(30,30,30)
  4943. for _,v in pairs(game:service"Players":GetChildren()) do
  4944. pcall(function()
  4945. for _,c in pairs(v.Character:GetChildren()) do
  4946. 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
  4947. local hrp=v.Character:FindFirstChild("HumanoidRootPart")
  4948. hrp.Velocity=CFrame.new(hrp.CFrame.p,(cnOrb.CFrame*CFrame.new(0,10,0)).p).lookVector*150
  4949. end
  4950. end
  4951. end)
  4952. end
  4953. for i=0,1,0.05 do
  4954. local cs=cnOrb.Mesh.Scale
  4955. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,0.1,i),Tween(cs.Y,0.1,i),Tween(cs.Z,0.1,i))
  4956. local ofs=ofx.Mesh.Scale
  4957. ofx.Mesh.Scale=Vector3.new(Tween(ofs.X,0.1,i),Tween(ofs.Y,0.1,i),Tween(ofs.Z,0.1,i))
  4958. ofx.Transparency=Tween(ofx.Transparency,1,i)
  4959. wait()
  4960. end
  4961. ofx:Destroy()
  4962. x = Instance.new("Sound",char)
  4963. x.SoundId = "rbxassetid://340722848"
  4964. x.Pitch = 1
  4965. x.Volume = 1
  4966. wait(.1)
  4967. x:Play()
  4968. cnOrb.CFrame=CFrame.new(cnOrb.Position)*CFrame.new(0,10,0)
  4969. local cnfx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4970. cnfx.Mesh.MeshType=3
  4971. cnOrb.Transparency=0.05
  4972. local cnr=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4973. cnr.Mesh.MeshType=3
  4974. local rn1=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.Angles(math.rad(90),0,0),"Really black")
  4975. rn1.Transparency=1
  4976. rn1.Mesh.MeshId="rbxassetid://3270017"
  4977. local rn2=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4978. rn2.Transparency=1
  4979. rn2.Mesh.MeshId="rbxassetid://3270017"
  4980. local nt=0
  4981. local cs=nil
  4982. for i=0,1,0.05 do
  4983. cs=cnOrb.Mesh.Scale
  4984. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,100,i),Tween(cs.Y,100,i),Tween(cs.Z,100,i))
  4985. local fs=cnfx.Mesh.Scale
  4986. cnfx.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,120,i))
  4987. cnfx.Transparency=cnfx.Transparency+0.05
  4988. rn1.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  4989. rn2.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  4990. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  4991. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  4992. rn1.Transparency=Tween(rn1.Transparency,0.8,i)
  4993. rn2.Transparency=Tween(rn2.Transparency,0.8,i)
  4994. local rs=cnr.Mesh.Scale
  4995. cnr.Mesh.Scale=Vector3.new(Tween(rs.X,10,i),Tween(rs.Y,10,i),Tween(rs.Z,10,i))
  4996. nt=nt+1
  4997. if nt>=6 then
  4998. local pls={}
  4999. for _,v in pairs(game.Players:GetChildren()) do
  5000. table.insert(pls,v)
  5001. end
  5002. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  5003. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  5004. pffx.Mesh.MeshId="rbxassetid://20329976"
  5005. pffx.Mesh.Scale=Vector3.new(cs.X,cs.Y/5,cs.Z)
  5006. debris:AddItem(pffx,2)
  5007. table.insert(pfxt,pffx)
  5008. nt=0
  5009. end
  5010. wait()
  5011. end
  5012. local int=0
  5013. coroutine.wrap(function()
  5014. for i=1,500 do
  5015. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  5016. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  5017. nt=nt+1
  5018. int=int+1
  5019. local htd={p}
  5020. for _,v in pairs(game:service"Players":GetChildren()) do
  5021. pcall(function()
  5022. for _,c in pairs(v.Character:GetChildren()) do
  5023. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  5024. v.Character:FindFirstChild("Humanoid").Health=v.Character:FindFirstChild("Humanoid").Health-2
  5025. v.Character:FindFirstChild("HumanoidRootPart").Velocity=Vector3.new(0,0,0)
  5026. table.insert(htd,v)
  5027. end
  5028. end
  5029. end)
  5030. end
  5031. htd={p}
  5032. if int>=6 then
  5033. for _,v in pairs(game:service"Players":GetChildren()) do
  5034. pcall(function()
  5035. for _,c in pairs(v.Character:GetChildren()) do
  5036. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  5037. table.insert(htd,v)
  5038. 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")
  5039. hfx.Mesh.Scale=Vector3.new(2,2,2)
  5040. hfx.Mesh.MeshType=3
  5041. debris:AddItem(hfx,2)
  5042. coroutine.wrap(function()
  5043. pcall(function()
  5044. for i=0,1,0.05 do
  5045. pcall(function()
  5046. local hs=hfx.Mesh.Scale
  5047. hfx.CFrame=Lerp(hfx.CFrame,cnOrb.CFrame,i)
  5048. hfx.Mesh.Scale=Vector3.new(Tween(hs.X,0.1,i),Tween(hs.Y,0.1,i),Tween(hs.Z,0.1,i))
  5049. end)
  5050. wait()
  5051. end
  5052. hfx:Destroy()
  5053. end)
  5054. end)()
  5055. end
  5056. end
  5057. end)
  5058. end
  5059. int=0
  5060. end
  5061. if nt>=4 then
  5062. local pls={}
  5063. for _,v in pairs(game.Players:GetChildren()) do
  5064. table.insert(pls,v)
  5065. end
  5066. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  5067. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  5068. pffx.Transparency=0.4
  5069. pffx.Mesh.MeshId="rbxassetid://20329976"
  5070. pffx.Mesh.Scale=Vector3.new(cs.X-10,cs.Y/5,cs.Z-10)
  5071. debris:AddItem(pffx,2)
  5072. table.insert(pfxt,pffx)
  5073. nt=0
  5074. end
  5075. wait()
  5076. end
  5077. cnOrb:Destroy()
  5078. cnfx:Destroy()
  5079. for _,v in pairs(mod3:GetChildren()) do
  5080. v:Destroy()
  5081. end
  5082. orbt={}
  5083. stlt={}
  5084. chot={}
  5085. cfxt={}
  5086. pfxt={}
  5087. end)()
  5088. if Debounces.CanAttack == false then
  5089. Debounces.CanAttack = true
  5090. Debounces.NoIdl = false
  5091. Debounces.on = false
  5092. end
  5093. end
  5094. end
  5095. end)
  5096. ----------------------------------------------------
  5097. mouse.KeyDown:connect(function(key)
  5098. if key == "m" then
  5099. if Debounces.CanAttack == true then
  5100. Debounces.CanAttack = false
  5101. Debounces.on = true
  5102. Debounces.NoIdl = true
  5103. --[[x = Instance.new("Sound",char)
  5104. x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  5105. x.Looped = false
  5106. x.Pitch = 1.1
  5107. x.Volume = 1
  5108. x:Play()
  5109. x2 = Instance.new("Sound",char)
  5110. x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  5111. x2.Looped = false
  5112. x2.Pitch = .7
  5113. x2.Volume = 1
  5114. wait(.1)
  5115. x:Play()
  5116. x2:Play()
  5117. for i = 1, 20 do
  5118. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,0.6,-.2) *CFrame.Angles (math.rad (45),math.rad(0),math.rad(32)), 0.2)
  5119. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1,0)*CFrame.Angles(math.rad (0),math.rad(0),math.rad(-20)), 0.2)
  5120. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad (- 8),math.rad(-40), math.rad(-8)),0.2)
  5121. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3.2, 0) * CFrame.Angles (math.rad (-50), math.rad(40), math.rad(0)), 0.2)
  5122. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, .4, -1.6) * CFrame.Angles (math.rad (30), 0, math.rad(20)), 0.2)
  5123. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.6, -2, 0) * CFrame.Angles (math.rad(- 10), math.rad(-40), math.rad(0)), 0.2)
  5124. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.4)
  5125. if Debounces.on == false then break end
  5126. wait()
  5127. x:Destroy()
  5128. x2:Destroy()
  5129. end
  5130. wait(1)]]--
  5131. local rng = Instance.new("Part", char)
  5132. rng.Anchored = true
  5133. rng.BrickColor = BrickColor.new("Really black")
  5134. rng.CanCollide = false
  5135. rng.FormFactor = 3
  5136. rng.Name = "Ring"
  5137. rng.Size = Vector3.new(1, 1, 1)
  5138. rng.Transparency = 0.35
  5139. rng.TopSurface = 0
  5140. rng.BottomSurface = 0
  5141. rng.Position = torso.Position - Vector3.new(0,5,0)
  5142. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  5143. local rngm = Instance.new("SpecialMesh", rng)
  5144. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5145. rngm.Scale = Vector3.new(1, 1, 2)
  5146. x = Instance.new("Sound",char)
  5147. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  5148. x.Looped = false
  5149. x.Pitch = .7
  5150. x.Volume = 1
  5151. x:Play()
  5152. coroutine.wrap(function()
  5153. for i = 1, 60, 2 do
  5154. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  5155. rng.Transparency = i/60
  5156. wait()
  5157. end
  5158. wait()
  5159. rng:Destroy()
  5160. end)()
  5161. hum.WalkSpeed = 100
  5162. BV = Instance.new("BodyVelocity", torso)
  5163. BV.maxForce = Vector3.new(0,200000,0)
  5164. BV.P = 240000
  5165. BV.velocity = Vector3.new(0,700,0)
  5166. for i = 1, 20 do
  5167. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.7)
  5168. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  5169. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  5170. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), math.rad(20)), 0.7)
  5171. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.8, .2) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  5172. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  5173. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5174. if Debounces.on == false then break end
  5175. wait()
  5176. end
  5177. x:Destroy()
  5178. BV:Destroy()
  5179. --[[for i = 1, 30 do
  5180. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  5181. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-16), math.rad (0), math.rad(0)), 0.3)
  5182. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  5183. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  5184. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  5185. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  5186. if Debounces.on == false then break end
  5187. wait()
  5188. end]]--
  5189. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  5190. for i = 1, 30 do
  5191. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  5192. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  5193. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-120)), 0.3)
  5194. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(120)), 0.3)
  5195. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  5196. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2)
  5197. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5198. if Debounces.on == false then break end
  5199. wait()
  5200. end
  5201. end
  5202. Debounces.on = false
  5203. Debounces.NoIdl = false
  5204. local ry,ht,ps=nil,nil,nil
  5205. while ht==nil do
  5206. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  5207. wait()
  5208. end
  5209. z = Instance.new("Sound",char)
  5210. z.SoundId = "rbxassetid://142070127"
  5211. z.Volume = 1
  5212. wait(.1)
  5213. z:Play()
  5214. Landing()
  5215. hum.WalkSpeed = 8
  5216. if Debounces.CanAttack == false then
  5217. Debounces.CanAttack = true
  5218. end
  5219. end
  5220. end
  5221. end)
  5222. ----------------------------------------------------
  5223. Grab = false
  5224. mouse.KeyDown:connect(function(key)
  5225. if key == "z" then
  5226. Debounces.on = true
  5227. Debounces.NoIdl = true
  5228. if Grab == false then
  5229. gp = nil
  5230. con1=larm.Touched:connect(function(hit) -- this is grab
  5231. ht = hit.Parent
  5232. hum1=ht:FindFirstChild('Humanoid')
  5233. if hum1 ~= nil then
  5234. hum1.PlatformStand=true
  5235. gp = ht
  5236. Grab = true
  5237. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  5238. asd.Parent = larm
  5239. asd.Name = "asd"
  5240. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  5241. con1:disconnect()
  5242. elseif hum1 ~= nil then
  5243. con1:disconnect()
  5244. wait() return
  5245. end
  5246. end)
  5247. for i = 1, 18 do
  5248. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(36)), 0.2)
  5249. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.65,.9,-.5)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
  5250. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5251. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  5252. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  5253. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  5254. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  5255. if Debounces.on == false then break end
  5256. wait()
  5257. end
  5258. con1:disconnect()
  5259. Debounces.on = false
  5260. Debounces.NoIdl = false
  5261. elseif Grab == true then
  5262. Grab = false
  5263. for i = 1, 20 do
  5264. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.2)
  5265. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-20)), 0.1)
  5266. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5267. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5268. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5269. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5270. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5271. if Debounces.on == false then end
  5272. wait()
  5273. end
  5274. if gp ~= nil then
  5275. for i,v in pairs(larm:GetChildren()) do
  5276. if v.Name == "asd" and v:IsA("Weld") then
  5277. v:Remove()
  5278. end
  5279. end
  5280. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  5281. bv.maxForce = Vector3.new(400000, 400000, 400000)
  5282. bv.P = 125000
  5283. bv.velocity = char.Head.CFrame.lookVector * 200
  5284. for i = 1, 12 do
  5285. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.75)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(20)), 0.5)
  5286. if Debounces.on == false then end
  5287. wait()
  5288. end--
  5289. ht=nil
  5290. Spawn(function()
  5291. wait(0.5)
  5292. bv:Destroy()
  5293. end)
  5294. Debounces.on = false
  5295. Debounces.NoIdl = false
  5296. elseif ht == nil then wait()
  5297. Grab = false
  5298. Debounces.on = false
  5299. Debounces.NoIdl = false
  5300. end
  5301. end
  5302. end
  5303. end)
  5304. ----------------------------------------------------
  5305. mouse.KeyDown:connect(function(key)
  5306. if string.byte(key) == 52 then
  5307. char.Humanoid.WalkSpeed = 21
  5308. end
  5309. end)
  5310. mouse.KeyUp:connect(function(key)
  5311. if string.byte(key) == 52 then
  5312. char.Humanoid.WalkSpeed = 5
  5313. end
  5314. end)
  5315. ----------------------------------------------------
  5316. Change = false
  5317. mouse.KeyDown:connect(function(key)
  5318. if key == "n" then
  5319. if Change == false then
  5320. Change = true
  5321. stanceToggle = "Normal2"
  5322. elseif Change == true then
  5323. Change = false
  5324. stanceToggle = "Normal"
  5325. end
  5326. end
  5327. end)
  5328. ----------------------------------------------------
  5329. local animpose = "Idle"
  5330. local lastanimpose = "Idle"
  5331. local sine = 0
  5332. local change = 1
  5333. local val = 0
  5334. local ffing = false
  5335. local och = 0
  5336. ----------------------------------------------------
  5337. game:GetService("RunService").RenderStepped:connect(function()
  5338. --[[if char.Humanoid.Jump == true then
  5339. jump = true
  5340. else
  5341. jump = false
  5342. end]]
  5343. char.Humanoid.FreeFalling:connect(function(f)
  5344. if f then
  5345. ffing = true
  5346. else
  5347. ffing = false
  5348. end
  5349. end)
  5350. sine = sine + change
  5351. if jumpn == true then
  5352. animpose = "Jumping"
  5353. elseif ffing == true then
  5354. animpose = "Freefalling"
  5355. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  5356. animpose = "Idle"
  5357. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  5358. animpose = "Walking"
  5359. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  5360. animpose = "Running"
  5361. end
  5362. if animpose ~= lastanimpose then
  5363. sine = 0
  5364. if Debounces.NoIdl == false then
  5365. if animpose == "Idle" then
  5366. for i = 1, 2 do
  5367. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.2)
  5368. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.2)
  5369. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5370. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5371. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5372. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5373. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5374. end
  5375. elseif animpose == "Walking" then
  5376. for i = 1, 2 do
  5377. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(20)), 0.2)
  5378. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  5379. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8), math.rad(0), math.rad(0)),0.2)
  5380. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  5381. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5382. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5383. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5384. end
  5385. elseif animpose == "Running" then
  5386. for i = 1, 2 do
  5387. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2)
  5388. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.2, 0-1*math.cos(sine/4)/2)*CFrame.Angles(math.rad(50-80*math.cos(sine/8)/2), math.rad(0), math.rad(0-70*math.cos(sine/8)/2)), 0.2)
  5389. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+8*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  5390. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+4*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  5391. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  5392. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  5393. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5394. end
  5395. rs:wait(2)
  5396. end
  5397. else
  5398. end
  5399. end
  5400. lastanimpose = animpose
  5401. if Debounces.NoIdl == false then
  5402. if animpose == "Idle" then
  5403. if stanceToggle == "Normal" then
  5404. change = 0.5
  5405. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
  5406. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(50),math.rad(-30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  5407. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(40),0), 0.2)
  5408. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  5409. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  5410. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  5411. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5412. elseif stanceToggle == "Sitting" then
  5413. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(100-1*math.cos(sine/14)), math.rad(0), math.rad(20)), 0.2)
  5414. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(math.rad(-36+1*math.cos(sine/14)), math.rad(0), math.rad(-30)), 0.2)
  5415. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.3) * CFrame.Angles(math.rad(-14+1*math.cos(sine/14)), math.rad(0), math.rad(0)),0.2)
  5416. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.8, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
  5417. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10-1*math.cos(sine/14)), 0, 0), 0.2)
  5418. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-50-1*math.cos(sine/14)), 0, 0), 0.2)
  5419. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5420. elseif stanceToggle == "Normal2" then
  5421. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(30+2*math.cos(sine/14)),math.rad(40),math.rad(40)), 0.2)
  5422. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-20),math.rad(30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  5423. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(-40),0), 0.2)
  5424. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  5425. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(-20), math.rad(-14)), 0.2)
  5426. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(10), math.rad(-30), math.rad(18)), 0.2)
  5427. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5428. end
  5429. elseif animpose == "Walking" then
  5430. if stanceToggle == "Normal" then
  5431. change = 1
  5432. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(90+2*math.cos(sine/7)), math.rad(0), math.rad(20)), 0.2)
  5433. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, math.rad(1) + -math.sin(sine/14)/2, math.rad(-30)), 0.2)
  5434. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0-8*math.cos(sine/14)), math.rad(0)),0.2)
  5435. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), math.rad(0+8*math.cos(sine/14)), math.rad(0)), 0.2)
  5436. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-12) + -math.sin(sine/14)/2, math.rad(0-8*math.cos(sine/14)), 0), .4)
  5437. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-12) + math.sin(sine/14)/2, math.rad(0-8*math.cos(sine/14)), 0), .4)
  5438. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5439. elseif stanceToggle == "Normal2" then
  5440. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), math.sin(sine/14)/2)*CFrame.Angles(-math.sin(sine/14)/4, -math.sin(sine/14)/2, math.rad(20)), 0.2)
  5441. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, -math.sin(sine/14)/2, math.rad(-20)), 0.2)
  5442. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0), math.rad(0)),0.2)
  5443. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), 0, math.rad(0)), 0.2)
  5444. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + -math.sin(sine/14)/2.3, 0, 0), .4)
  5445. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + math.sin(sine/14)/2.3, 0, 0), .4)
  5446. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5447. end
  5448. elseif animpose == "Running" then
  5449. change = 1
  5450. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10-20*math.cos(sine/4)/2), math.rad(-40+10*math.cos(sine/4)/2), math.rad(50-10*math.cos(sine/4)/2)), 0.2)
  5451. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .5)*CFrame.Angles(math.rad(10+20*math.cos(sine/4)/2), math.rad(40-10*math.cos(sine/4)/2), math.rad(-50+10*math.cos(sine/4)/2)), 0.2)
  5452. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+6*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  5453. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  5454. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  5455. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  5456. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5457. end
  5458. end
  5459. och=och+1
  5460. for _,v in pairs(orbt) do
  5461. pcall(function()
  5462. v.Mesh.Scale=Vector3.new(cns+(0.2*math.cos(och/12)),cns+(0.2*math.cos(och/10)),cns+(0.2*math.cos(och/8)))
  5463. end)
  5464. end
  5465. for _,v in pairs(stlt) do
  5466. pcall(function()
  5467. v.CFrame=larm.CFrame*CFrame.new(0,-3.5-(cns/2),-0.1)
  5468. end)
  5469. end
  5470. for _,v in pairs(chot) do
  5471. pcall(function()
  5472. v.CFrame=Lerp(v.CFrame,cnOrb.CFrame,0.1)
  5473. v.Mesh.Scale=Vector3.new(Tween(v.Mesh.Scale.X,0,0.1),Tween(v.Mesh.Scale.Y,0,0.1),Tween(v.Mesh.Scale.Z,0,0.1))
  5474. end)
  5475. end
  5476. for _,v in pairs(cfxt) do
  5477. pcall(function()
  5478. local vs=v.Mesh.Scale
  5479. v.Mesh.Scale=Vector3.new(vs.x+0.5,vs.y+0.1,vs.z+0.5)
  5480. v.Transparency=v.Transparency+0.05
  5481. end)
  5482. end
  5483. for _,v in pairs(pfxt) do
  5484. pcall(function()
  5485. local vs=v.Mesh.Scale
  5486. v.Mesh.Scale=Vector3.new(vs.x+2,vs.y+0.5,vs.z+2)
  5487. v.Transparency=v.Transparency+0.025
  5488. end)
  5489. end
  5490. end)
Add Comment
Please, Sign In to add comment