DarkScriptZEditors

Da axe man

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