Advertisement
Guest User

Untitled

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