Advertisement
Sratus

Untitled

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