Guest User

Untitled

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