Advertisement
Basykung7845

Untitled

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