Advertisement
Guest User

Dark Titan [R15 - Edited by Bram1507]

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