Advertisement
DaylightExploits

Untitled

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