Advertisement
Guest User

Untitled

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