Advertisement
lafur

Untitled

Sep 22nd, 2018
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. --https://github.com/Mokiros/roblox-FE-compatibility
  3. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  4. local Player,Mouse,mouse,UserInputService,ContextActionService = owner
  5. local RealPlayer = Player
  6. do print("FE Compatibility code by Mokiros")local a=RealPlayer;script.Parent=a.Character;local b=Instance.new("RemoteEvent")b.Name="UserInput_Event"local function c()local d={_fakeEvent=true,Functions={},Connect=function(self,e)table.insert(self.Functions,e)end}d.connect=d.Connect;return d end;local f={Target=nil,Hit=CFrame.new(),KeyUp=c(),KeyDown=c(),Button1Up=c(),Button1Down=c(),Button2Up=c(),Button2Down=c()}local g={InputBegan=c(),InputEnded=c()}local CAS={Actions={},BindAction=function(self,h,i,j,...)CAS.Actions[h]=i and{Name=h,Function=i,Keys={...}}or nil end}CAS.UnbindAction=CAS.BindAction;local function k(self,l,...)local d=f[l]if d and d._fakeEvent then for m,e in pairs(d.Functions)do e(...)end end end;f.TrigEvent=k;g.TrigEvent=k;b.OnServerEvent:Connect(function(n,o)if n~=a then return end;f.Target=o.Target;f.Hit=o.Hit;if not o.isMouse then local p=o.UserInputState==Enum.UserInputState.Begin;if o.UserInputType==Enum.UserInputType.MouseButton1 then return f:TrigEvent(p and"Button1Down"or"Button1Up")end;if o.UserInputType==Enum.UserInputType.MouseButton2 then return f:TrigEvent(p and"Button2Down"or"Button2Up")end;for m,d in pairs(CAS.Actions)do for m,q in pairs(d.Keys)do if q==o.KeyCode then d.Function(d.Name,o.UserInputState,o)end end end;f:TrigEvent(p and"KeyDown"or"KeyUp",o.KeyCode.Name:lower())g:TrigEvent(p and"InputBegan"or"InputEnded",o,false)end end)b.Parent=NLS([==[local a=game:GetService("Players").LocalPlayer;local b=script:WaitForChild("UserInput_Event")local c=a:GetMouse()local d=game:GetService("UserInputService")local e=function(f,g)if g then return end;b:FireServer({KeyCode=f.KeyCode,UserInputType=f.UserInputType,UserInputState=f.UserInputState,Hit=c.Hit,Target=c.Target})end;d.InputBegan:Connect(e)d.InputEnded:Connect(e)local h,i;while wait(1/30)do if h~=c.Hit or i~=c.Target then h,i=c.Hit,c.Target;b:FireServer({isMouse=true,Target=i,Hit=h})end end]==],Player.Character)local r=game;local s={__index=function(self,q)local t=rawget(self,"_RealService")if t then return typeof(t[q])=="function"and function(m,...)return t[q](t,...)end or t[q]end end,__newindex=function(self,q,u)local t=rawget(self,"_RealService")if t then t[q]=u end end}local function v(d,w)d._RealService=typeof(w)=="string"and r:GetService(w)or w;return setmetatable(d,s)end;local x={GetService=function(self,t)return rawget(self,t)or r:GetService(t)end,Players=v({LocalPlayer=v({GetMouse=function(self)return f end},Player)},"Players"),UserInputService=v(g,"UserInputService"),ContextActionService=v(CAS,"ContextActionService"),RunService=v({_btrs={},RenderStepped=r:GetService("RunService").Heartbeat,BindToRenderStep=function(self,h,m,i)self._btrs[h]=self.Heartbeat:Connect(i)end,UnbindFromRenderStep=function(self,h)self._btrs[h]:Disconnect()end},"RunService")}rawset(x.Players,"localPlayer",x.Players.LocalPlayer)x.service=x.GetService;v(x,game)game,owner=x,x.Players.LocalPlayer end
  7. local p = game.Players.LocalPlayer
  8. local char = p.Character
  9. local mouse = p:GetMouse()
  10. local larm = char["Left Arm"]
  11. local rarm = char["Right Arm"]
  12. local lleg = char["Left Leg"]
  13. local rleg = char["Right Leg"]
  14. local hed = char.Head
  15. local torso = char.Torso
  16. local hum = char.Humanoid
  17. local cam = game.Workspace.CurrentCamera
  18. local root = char.HumanoidRootPart
  19. local deb = false
  20. local shot = 0
  21. local l = game:GetService("Lighting")
  22. local rs = game:GetService("RunService").RenderStepped
  23. local stanceToggle = "Normal"
  24. math.randomseed(os.time())
  25. hum.WalkSpeed = 7
  26. char.Health:Destroy()
  27. hum.MaxHealth = 50000
  28. wait(0.01)
  29. hum.Health = 50000
  30. ----------------------------------------------------
  31. ----------------------------------------------------
  32. shirt = Instance.new("Shirt", char)
  33. shirt.Name = "Shirt"
  34. pants = Instance.new("Pants", char)
  35. pants.Name = "Pants"
  36. char.Shirt.ShirtTemplate = "rbxassetid://237906462"
  37. char.Pants.PantsTemplate = "rbxassetid://237906462"
  38. ----------------------------------------------------
  39. ----------------------------------------------------
  40. Debounces = {
  41. on = false;
  42. ks = false;
  43. CanAttack = true;
  44. CanJoke = true;
  45. NoIdl = false;
  46. Slashing = false;
  47. Slashed = false;
  48. Grabbing = false;
  49. Grabbed = false;
  50. }
  51. local Touche = {char.Name, }
  52. ----------------------------------------------------
  53. function lerp(a, b, t) -- Linear interpolation
  54. return a + (b - a)*t
  55. end
  56.  
  57. function slerp(a, b, t) --Spherical interpolation
  58. dot = a:Dot(b)
  59. if dot > 0.99999 or dot < -0.99999 then
  60. return t <= 0.5 and a or b
  61. else
  62. r = math.acos(dot)
  63. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  64. end
  65. end
  66.  
  67. function matrixInterpolate(a, b, t)
  68. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  69. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  70. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  71. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  72. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  73. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  74. local t = v1:Dot(v2)
  75. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  76. return CFrame.new()
  77. end
  78. return CFrame.new(
  79. v0.x, v0.y, v0.z,
  80. v1.x, v1.y, v1.z,
  81. v2.x, v2.y, v2.z,
  82. v3.x, v3.y, v3.z)
  83. end
  84. ----------------------------------------------------
  85. function genWeld(a,b)
  86. local w = Instance.new("Weld",a)
  87. w.Part0 = a
  88. w.Part1 = b
  89. return w
  90. end
  91. function weld(a, b)
  92. local weld = Instance.new("Weld")
  93. weld.Name = "W"
  94. weld.Part0 = a
  95. weld.Part1 = b
  96. weld.C0 = a.CFrame:inverse() * b.CFrame
  97. weld.Parent = a
  98. return weld;
  99. end
  100. ----------------------------------------------------
  101. function Lerp(c1,c2,al)
  102. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  103. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  104. for i,v in pairs(com1) do
  105. com1[i] = v+(com2[i]-v)*al
  106. end
  107. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  108. end
  109. ----------------------------------------------------
  110. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  111. local wld = Instance.new("Weld", wp1)
  112. wld.Part0 = wp0
  113. wld.Part1 = wp1
  114. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  115. end
  116. ----------------------------------------------------
  117. for i,v in pairs(char:children()) do
  118. if v:IsA("Hat") then
  119. v:Destroy()
  120. end
  121. end
  122. for i,v in pairs(hed:children()) do
  123. if v:IsA("Sound") then
  124. v:Destroy()
  125. end
  126. end
  127. ----------------------------------------------------
  128. function HasntTouched(plrname)
  129. local ret = true
  130. for _, v in pairs(Touche) do
  131. if v == plrname then
  132. ret = false
  133. end
  134. end
  135. return ret
  136. end
  137. ----------------------------------------------------
  138. larm.Size = larm.Size * 2
  139. rarm.Size = rarm.Size * 2
  140. lleg.Size = lleg.Size * 2
  141. rleg.Size = rleg.Size * 2
  142. torso.Size = torso.Size * 2
  143. hed.Size = hed.Size * 2
  144. root.Size = root.Size * 2
  145. ----------------------------------------------------
  146. newWeld(torso, larm, -1.5, 0.5, 0)
  147. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  148. newWeld(torso, rarm, 1.5, 0.5, 0)
  149. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  150. newWeld(torso, hed, 0, 1.5, 0)
  151. newWeld(torso, lleg, -0.5, -1, 0)
  152. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  153. newWeld(torso, rleg, 0.5, -1, 0)
  154. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  155. newWeld(root, torso, 0, -1, 0)
  156. torso.Weld.C1 = CFrame.new(0, -1, 0)
  157. hed.Transparency = 1
  158. ----------------------------------------------------
  159. lite = Instance.new("PointLight", torso)
  160. lite.Brightness = 100
  161. lite.Range = 15
  162. lite.Color = Color3.new(2, 2, 2)
  163. --[[local hed2 = hed:Clone()
  164. hed2.CanCollide = false
  165. hed2.Parent = char
  166. hed2:ClearAllChildren()
  167. hed2.Transparency = 1
  168. hed2.Name = "DARP"
  169. local w = Instance.new("Weld",hed2)
  170. w.Part0 = hed
  171. w.Part1 = hed2
  172. w.C0 = CFrame.new(0,0,-0.175)
  173. z=Instance.new("SurfaceGui",hed2)
  174. z.Enabled = true
  175. z.Face = "Front"
  176. z.Adornee = hed2
  177. z.CanvasSize = Vector2.new(100,100)
  178. local face = Instance.new("ImageLabel",z)
  179. face.Size = UDim2.new(1,-30,1,0)
  180. face.Position = UDim2.new(0,15,0,0)
  181. face.BackgroundTransparency = 1
  182. face.Image='rbxassetid://46282671']]--
  183. ----------------------------------------------------
  184. z = Instance.new("Sound", char)
  185. z.SoundId = "rbxassetid://242463565"--504618717
  186. z.Looped = true
  187. z.Pitch = 1
  188. z.Volume = 3
  189. wait(.001)
  190. z:Play()
  191. ----------------------------------------------------
  192.  
  193. local m = Instance.new("Model")
  194. m.Name = "Absolution"
  195. p1 = Instance.new("Part", m)
  196. p1.BrickColor = BrickColor.new("Bright blue")
  197. p1.FormFactor = Enum.FormFactor.Custom
  198. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  199. 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)
  200. p1.CanCollide = false
  201. p1.Locked = true
  202. p1.Elasticity = 0
  203. p1.BottomSurface = Enum.SurfaceType.Smooth
  204. p1.TopSurface = Enum.SurfaceType.Smooth
  205. b1 = Instance.new("SpecialMesh", p1)
  206. b1.MeshType = Enum.MeshType.Wedge
  207. b1.Name = "Mesh"
  208. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  209. p2 = Instance.new("Part", m)
  210. p2.BrickColor = BrickColor.new("Really black")
  211. p2.FormFactor = Enum.FormFactor.Custom
  212. p2.Size = Vector3.new(1, 2.9000001, 1)
  213. 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)
  214. p2.CanCollide = false
  215. p2.Locked = true
  216. p2.Elasticity = 0
  217. p2.BottomSurface = Enum.SurfaceType.Smooth
  218. p2.TopSurface = Enum.SurfaceType.Smooth
  219. b2 = Instance.new("BlockMesh", p2)
  220. b2.Name = "Mesh"
  221. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  222. p3 = Instance.new("Part", m)
  223. p3.BrickColor = BrickColor.new("Bright blue")
  224. p3.FormFactor = Enum.FormFactor.Custom
  225. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  226. 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)
  227. p3.CanCollide = false
  228. p3.Locked = true
  229. p3.Elasticity = 0
  230. p3.BottomSurface = Enum.SurfaceType.Smooth
  231. p3.TopSurface = Enum.SurfaceType.Smooth
  232. b3 = Instance.new("SpecialMesh", p3)
  233. b3.MeshType = Enum.MeshType.Wedge
  234. b3.Name = "Mesh"
  235. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  236. p4 = Instance.new("Part", m)
  237. p4.BrickColor = BrickColor.new("Bright blue")
  238. p4.FormFactor = Enum.FormFactor.Custom
  239. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  240. 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)
  241. p4.CanCollide = false
  242. p4.Locked = true
  243. p4.Elasticity = 0
  244. p4.BottomSurface = Enum.SurfaceType.Smooth
  245. p4.TopSurface = Enum.SurfaceType.Smooth
  246. b4 = Instance.new("SpecialMesh", p4)
  247. b4.MeshType = Enum.MeshType.Wedge
  248. b4.Name = "Mesh"
  249. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  250. p5 = Instance.new("Part", m)
  251. p5.BrickColor = BrickColor.new("Bright blue")
  252. p5.FormFactor = Enum.FormFactor.Custom
  253. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  254. 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)
  255. p5.CanCollide = false
  256. p5.Locked = true
  257. p5.Elasticity = 0
  258. p5.BottomSurface = Enum.SurfaceType.Smooth
  259. p5.TopSurface = Enum.SurfaceType.Smooth
  260. b5 = Instance.new("SpecialMesh", p5)
  261. b5.MeshType = Enum.MeshType.Wedge
  262. b5.Name = "Mesh"
  263. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  264. p6 = Instance.new("Part", m)
  265. p6.Name = "Handle"
  266. p6.BrickColor = BrickColor.new("Really black")
  267. p6.FormFactor = Enum.FormFactor.Custom
  268. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  269. 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)
  270. p6.CanCollide = false
  271. p6.Locked = true
  272. p6.Elasticity = 0
  273. p6.BottomSurface = Enum.SurfaceType.Smooth
  274. p6.TopSurface = Enum.SurfaceType.Smooth
  275. b6 = Instance.new("BlockMesh", p6)
  276. b6.Name = "Mesh"
  277. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  278. p7 = Instance.new("Part", m)
  279. p7.BrickColor = BrickColor.new("Bright blue")
  280. p7.FormFactor = Enum.FormFactor.Custom
  281. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  282. 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)
  283. p7.CanCollide = false
  284. p7.Locked = true
  285. p7.Elasticity = 0
  286. p7.BottomSurface = Enum.SurfaceType.Smooth
  287. p7.TopSurface = Enum.SurfaceType.Smooth
  288. b7 = Instance.new("SpecialMesh", p7)
  289. b7.MeshType = Enum.MeshType.Wedge
  290. b7.Name = "Mesh"
  291. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  292. p8 = Instance.new("Part", m)
  293. p8.BrickColor = BrickColor.new("Bright blue")
  294. p8.FormFactor = Enum.FormFactor.Custom
  295. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  296. 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)
  297. p8.CanCollide = false
  298. p8.Locked = true
  299. p8.Elasticity = 0
  300. p8.BottomSurface = Enum.SurfaceType.Smooth
  301. p8.TopSurface = Enum.SurfaceType.Smooth
  302. b8 = Instance.new("SpecialMesh", p8)
  303. b8.MeshType = Enum.MeshType.Wedge
  304. b8.Name = "Mesh"
  305. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  306. p9 = Instance.new("Part", m)
  307. p9.BrickColor = BrickColor.new("Really black")
  308. p9.FormFactor = Enum.FormFactor.Custom
  309. p9.Size = Vector3.new(1, 1.07999957, 1)
  310. 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)
  311. p9.CanCollide = false
  312. p9.Locked = true
  313. p9.Elasticity = 0
  314. p9.BottomSurface = Enum.SurfaceType.Smooth
  315. p9.TopSurface = Enum.SurfaceType.Smooth
  316. b9 = Instance.new("BlockMesh", p9)
  317. b9.Name = "Mesh"
  318. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  319. p10 = Instance.new("Part", m)
  320. p10.BrickColor = BrickColor.new("Really black")
  321. p10.FormFactor = Enum.FormFactor.Custom
  322. p10.Size = Vector3.new(1, 1.41999948, 1)
  323. 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)
  324. p10.CanCollide = false
  325. p10.Locked = true
  326. p10.Elasticity = 0
  327. p10.BottomSurface = Enum.SurfaceType.Smooth
  328. p10.TopSurface = Enum.SurfaceType.Smooth
  329. b10 = Instance.new("BlockMesh", p10)
  330. b10.Name = "Mesh"
  331. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  332. p11 = Instance.new("Part", m)
  333. p11.BrickColor = BrickColor.new("Really black")
  334. p11.FormFactor = Enum.FormFactor.Custom
  335. p11.Size = Vector3.new(1, 1.50999951, 1)
  336. 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)
  337. p11.CanCollide = false
  338. p11.Locked = true
  339. p11.Elasticity = 0
  340. p11.BottomSurface = Enum.SurfaceType.Smooth
  341. p11.TopSurface = Enum.SurfaceType.Smooth
  342. b11 = Instance.new("BlockMesh", p11)
  343. b11.Name = "Mesh"
  344. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  345. p12 = Instance.new("Part", m)
  346. p12.Name = "BladeCenter"
  347. p12.BrickColor = BrickColor.new("Dark stone grey")
  348. p12.Material = Enum.Material.Concrete
  349. p12.FormFactor = Enum.FormFactor.Symmetric
  350. p12.Size = Vector3.new(1, 2, 2)
  351. 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)
  352. p12.CanCollide = false
  353. p12.Locked = true
  354. p12.BottomSurface = Enum.SurfaceType.Smooth
  355. p12.TopSurface = Enum.SurfaceType.Smooth
  356. b12 = Instance.new("SpecialMesh", p12)
  357. b12.MeshType = Enum.MeshType.Brick
  358. b12.Name = "Mesh"
  359. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  360. p13 = Instance.new("Part", m)
  361. p13.BrickColor = BrickColor.new("Really black")
  362. p13.FormFactor = Enum.FormFactor.Custom
  363. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  364. 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)
  365. p13.CanCollide = false
  366. p13.Locked = true
  367. p13.Elasticity = 0
  368. p13.BottomSurface = Enum.SurfaceType.Smooth
  369. p13.TopSurface = Enum.SurfaceType.Smooth
  370. b13 = Instance.new("BlockMesh", p13)
  371. b13.Name = "Mesh"
  372. b13.Scale = Vector3.new(1, 1, 0.400000006)
  373. p14 = Instance.new("Part", m)
  374. p14.BrickColor = BrickColor.new("Really black")
  375. p14.FormFactor = Enum.FormFactor.Custom
  376. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  377. 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)
  378. p14.CanCollide = false
  379. p14.Locked = true
  380. p14.Elasticity = 0
  381. p14.BottomSurface = Enum.SurfaceType.Smooth
  382. p14.TopSurface = Enum.SurfaceType.Smooth
  383. b14 = Instance.new("BlockMesh", p14)
  384. b14.Name = "Mesh"
  385. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  386. p15 = Instance.new("Part", m)
  387. p15.BrickColor = BrickColor.new("Really black")
  388. p15.FormFactor = Enum.FormFactor.Custom
  389. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  390. 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)
  391. p15.CanCollide = false
  392. p15.Locked = true
  393. p15.Elasticity = 0
  394. p15.BottomSurface = Enum.SurfaceType.Smooth
  395. p15.TopSurface = Enum.SurfaceType.Smooth
  396. b15 = Instance.new("BlockMesh", p15)
  397. b15.Name = "Mesh"
  398. b15.Scale = Vector3.new(1, 1, 0.400000006)
  399. p16 = Instance.new("Part", m)
  400. p16.BrickColor = BrickColor.new("Really black")
  401. p16.FormFactor = Enum.FormFactor.Custom
  402. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  403. 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)
  404. p16.CanCollide = false
  405. p16.Locked = true
  406. p16.Elasticity = 0
  407. p16.BottomSurface = Enum.SurfaceType.Smooth
  408. p16.TopSurface = Enum.SurfaceType.Smooth
  409. b16 = Instance.new("BlockMesh", p16)
  410. b16.Name = "Mesh"
  411. b16.Scale = Vector3.new(1, 1, 0.400000006)
  412. p17 = Instance.new("Part", m)
  413. p17.BrickColor = BrickColor.new("Really black")
  414. p17.FormFactor = Enum.FormFactor.Custom
  415. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  416. 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)
  417. p17.CanCollide = false
  418. p17.Locked = true
  419. p17.Elasticity = 0
  420. p17.BottomSurface = Enum.SurfaceType.Smooth
  421. p17.TopSurface = Enum.SurfaceType.Smooth
  422. b17 = Instance.new("BlockMesh", p17)
  423. b17.Name = "Mesh"
  424. b17.Scale = Vector3.new(1, 1, 0.400000006)
  425. p18 = Instance.new("WedgePart", m)
  426. p18.BrickColor = BrickColor.new("Dark stone grey")
  427. p18.Name = "BladePart1"
  428. p18.Material = Enum.Material.Concrete
  429. p18.Name = "Wedge"
  430. p18.FormFactor = Enum.FormFactor.Symmetric
  431. p18.Size = Vector3.new(1, 4, 2)
  432. 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)
  433. p18.CanCollide = false
  434. p18.Locked = true
  435. p18.BottomSurface = Enum.SurfaceType.Smooth
  436. p18.TopSurface = Enum.SurfaceType.Smooth
  437. b18 = Instance.new("SpecialMesh", p18)
  438. b18.MeshType = Enum.MeshType.Wedge
  439. b18.Name = "Mesh"
  440. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  441. p19 = Instance.new("WedgePart", m)
  442. p19.BrickColor = BrickColor.new("Dark stone grey")
  443. p19.Name = "BladePart2"
  444. p19.Material = Enum.Material.Concrete
  445. p19.Name = "Wedge"
  446. p19.FormFactor = Enum.FormFactor.Symmetric
  447. p19.Size = Vector3.new(1, 4, 2)
  448. 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)
  449. p19.CanCollide = false
  450. p19.Locked = true
  451. p19.BottomSurface = Enum.SurfaceType.Smooth
  452. p19.TopSurface = Enum.SurfaceType.Smooth
  453. b19 = Instance.new("SpecialMesh", p19)
  454. b19.MeshType = Enum.MeshType.Wedge
  455. b19.Name = "Mesh"
  456. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  457. p20 = Instance.new("Part", m)
  458. p20.BrickColor = BrickColor.new("Really black")
  459. p20.FormFactor = Enum.FormFactor.Custom
  460. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  461. 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)
  462. p20.CanCollide = false
  463. p20.Locked = true
  464. p20.Elasticity = 0
  465. p20.BottomSurface = Enum.SurfaceType.Smooth
  466. p20.TopSurface = Enum.SurfaceType.Smooth
  467. b20 = Instance.new("BlockMesh", p20)
  468. b20.Name = "Mesh"
  469. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  470. p21 = Instance.new("Part", m)
  471. p21.BrickColor = BrickColor.new("Bright blue")
  472. p21.FormFactor = Enum.FormFactor.Custom
  473. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  474. 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)
  475. p21.CanCollide = false
  476. p21.Locked = true
  477. p21.Elasticity = 0
  478. p21.BottomSurface = Enum.SurfaceType.Smooth
  479. p21.TopSurface = Enum.SurfaceType.Smooth
  480. b21 = Instance.new("SpecialMesh", p21)
  481. b21.MeshType = Enum.MeshType.Wedge
  482. b21.Name = "Mesh"
  483. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  484. w1 = Instance.new("Weld", p1)
  485. w1.Name = "Part_Weld"
  486. w1.Part0 = p1
  487. 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)
  488. w1.Part1 = p2
  489. 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)
  490. w2 = Instance.new("Weld", p2)
  491. w2.Name = "Part_Weld"
  492. w2.Part0 = p2
  493. 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)
  494. w2.Part1 = p3
  495. 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)
  496. w3 = Instance.new("Weld", p3)
  497. w3.Name = "Part_Weld"
  498. w3.Part0 = p3
  499. 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)
  500. w3.Part1 = p4
  501. 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)
  502. w4 = Instance.new("Weld", p4)
  503. w4.Name = "Part_Weld"
  504. w4.Part0 = p4
  505. 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)
  506. w4.Part1 = p5
  507. 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)
  508. w5 = Instance.new("Weld", p5)
  509. w5.Name = "Part_Weld"
  510. w5.Part0 = p5
  511. 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)
  512. w5.Part1 = p6
  513. 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)
  514. w6 = Instance.new("Weld", p6)
  515. w6.Name = "Part_Weld"
  516. w6.Part0 = p6
  517. 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)
  518. w6.Part1 = p7
  519. 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)
  520. w7 = Instance.new("Weld", p7)
  521. w7.Name = "Part_Weld"
  522. w7.Part0 = p7
  523. 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)
  524. w7.Part1 = p8
  525. 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)
  526. w8 = Instance.new("Weld", p8)
  527. w8.Name = "Part_Weld"
  528. w8.Part0 = p8
  529. 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)
  530. w8.Part1 = p9
  531. 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)
  532. w9 = Instance.new("Weld", p9)
  533. w9.Name = "Part_Weld"
  534. w9.Part0 = p9
  535. 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)
  536. w9.Part1 = p10
  537. 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)
  538. w10 = Instance.new("Weld", p10)
  539. w10.Name = "Part_Weld"
  540. w10.Part0 = p10
  541. 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)
  542. w10.Part1 = p11
  543. 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)
  544. w11 = Instance.new("Weld", p11)
  545. w11.Name = "Part_Weld"
  546. w11.Part0 = p11
  547. 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)
  548. w11.Part1 = p12
  549. 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)
  550. w12 = Instance.new("Weld", p12)
  551. w12.Name = "Part_Weld"
  552. w12.Part0 = p12
  553. 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)
  554. w12.Part1 = p13
  555. 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)
  556. w13 = Instance.new("Weld", p13)
  557. w13.Name = "Part_Weld"
  558. w13.Part0 = p13
  559. 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)
  560. w13.Part1 = p14
  561. 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)
  562. w14 = Instance.new("Weld", p14)
  563. w14.Name = "Part_Weld"
  564. w14.Part0 = p14
  565. 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)
  566. w14.Part1 = p15
  567. 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)
  568. w15 = Instance.new("Weld", p15)
  569. w15.Name = "Part_Weld"
  570. w15.Part0 = p15
  571. 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)
  572. w15.Part1 = p16
  573. 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)
  574. w16 = Instance.new("Weld", p16)
  575. w16.Name = "Part_Weld"
  576. w16.Part0 = p16
  577. 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)
  578. w16.Part1 = p17
  579. 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)
  580. w17 = Instance.new("Weld", p17)
  581. w17.Name = "Wedge_Weld"
  582. w17.Part0 = p17
  583. 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)
  584. w17.Part1 = p18
  585. 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)
  586. w18 = Instance.new("Weld", p18)
  587. w18.Name = "Wedge_Weld"
  588. w18.Part0 = p18
  589. 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)
  590. w18.Part1 = p19
  591. 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)
  592. w19 = Instance.new("Weld", p19)
  593. w19.Name = "Part_Weld"
  594. w19.Part0 = p19
  595. 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)
  596. w19.Part1 = p20
  597. 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)
  598. w20 = Instance.new("Weld", p20)
  599. w20.Name = "Part_Weld"
  600. w20.Part0 = p20
  601. 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)
  602. w20.Part1 = p21
  603. 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)
  604. m.Parent = char
  605. m:MakeJoints()
  606. ----------------------------------------------------
  607. local cor = Instance.new("Part", char.Absolution)
  608. cor.Name = "Thingy"
  609. cor.Locked = true
  610. cor.BottomSurface = 0
  611. cor.CanCollide = false
  612. cor.Size = Vector3.new(1, 13, 1)
  613. cor.Transparency = 1
  614. cor.TopSurface = 0
  615. corw = Instance.new("Weld", cor)
  616. corw.Part0 = rarm
  617. corw.Part1 = cor
  618. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  619. corw.C1 = CFrame.new(0, 0, 0)
  620. weld1 = Instance.new("Weld", char.Absolution)
  621. weld1.Part0 = cor
  622. weld1.Part1 = p6
  623. weld1.C0 = CFrame.new(0, 0, 0)
  624. ----------------------------------------------------
  625. hitb = Instance.new("Part", char.Absolution)
  626. hitb.Name = "Thingy2"
  627. hitb.Locked = true
  628. hitb.BottomSurface = 0
  629. hitb.CanCollide = false
  630. hitb.Size = Vector3.new(0, 8, 6)
  631. hitb.Transparency = 1
  632. hitb.TopSurface = 0
  633. weld2 = Instance.new("Weld", char.Absolution)
  634. weld2.Part0 = hitb
  635. weld2.Part1 = p12
  636. weld2.C0 = CFrame.new(0, .6, 1)
  637. ----------------------------------------------------
  638. local m = Instance.new("Model")
  639. m.Name = "Claw"
  640. p1 = Instance.new("Part", m)
  641. p1.BrickColor = BrickColor.new("Really black")
  642. p1.FormFactor = Enum.FormFactor.Custom
  643. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  644. 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)
  645. p1.CanCollide = false
  646. p1.Locked = true
  647. p1.BottomSurface = Enum.SurfaceType.Smooth
  648. p1.TopSurface = Enum.SurfaceType.Smooth
  649. b1 = Instance.new("BlockMesh", p1)
  650. b1.Name = "Mesh"
  651. p2 = Instance.new("WedgePart", m)
  652. p2.BrickColor = BrickColor.new("Really black")
  653. p2.Name = "Wedge"
  654. p2.FormFactor = Enum.FormFactor.Custom
  655. p2.Size = Vector3.new(3, 1, 0.5)
  656. 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)
  657. p2.CanCollide = false
  658. p2.Locked = true
  659. p2.BottomSurface = Enum.SurfaceType.Smooth
  660. p2.TopSurface = Enum.SurfaceType.Smooth
  661. p3 = Instance.new("Part", m)
  662. p3.BrickColor = BrickColor.new("Really black")
  663. p3.FormFactor = Enum.FormFactor.Custom
  664. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  665. 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)
  666. p3.CanCollide = false
  667. p3.Locked = true
  668. p3.BottomSurface = Enum.SurfaceType.Smooth
  669. p3.TopSurface = Enum.SurfaceType.Smooth
  670. b2 = Instance.new("BlockMesh", p3)
  671. b2.Name = "Mesh"
  672. p4 = Instance.new("WedgePart", m)
  673. p4.BrickColor = BrickColor.new("Really black")
  674. p4.Name = "Wedge"
  675. p4.FormFactor = Enum.FormFactor.Custom
  676. p4.Size = Vector3.new(3, 1, 0.5)
  677. 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)
  678. p4.CanCollide = false
  679. p4.Locked = true
  680. p4.BottomSurface = Enum.SurfaceType.Smooth
  681. p4.TopSurface = Enum.SurfaceType.Smooth
  682. p5 = Instance.new("Part", m)
  683. p5.BrickColor = BrickColor.new("Really black")
  684. p5.FormFactor = Enum.FormFactor.Custom
  685. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  686. 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)
  687. p5.CanCollide = false
  688. p5.Locked = true
  689. p5.BottomSurface = Enum.SurfaceType.Smooth
  690. p5.TopSurface = Enum.SurfaceType.Smooth
  691. b3 = Instance.new("BlockMesh", p5)
  692. b3.Name = "Mesh"
  693. p6 = Instance.new("Part", m)
  694. p6.BrickColor = BrickColor.new("Really black")
  695. p6.FormFactor = Enum.FormFactor.Custom
  696. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  697. 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)
  698. p6.CanCollide = false
  699. p6.Locked = true
  700. p6.BottomSurface = Enum.SurfaceType.Smooth
  701. p6.TopSurface = Enum.SurfaceType.Smooth
  702. b4 = Instance.new("BlockMesh", p6)
  703. b4.Name = "Mesh"
  704. p7 = Instance.new("Part", m)
  705. p7.BrickColor = BrickColor.new("Really black")
  706. p7.FormFactor = Enum.FormFactor.Custom
  707. p7.Size = Vector3.new(3, 1, 1.20000005)
  708. 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)
  709. p7.CanCollide = false
  710. p7.Locked = true
  711. p7.BottomSurface = Enum.SurfaceType.Smooth
  712. p7.TopSurface = Enum.SurfaceType.Smooth
  713. b5 = Instance.new("BlockMesh", p7)
  714. b5.Name = "Mesh"
  715. p8 = Instance.new("Part", m)
  716. p8.BrickColor = BrickColor.new("Bright blue")
  717. p8.FormFactor = Enum.FormFactor.Symmetric
  718. p8.Size = Vector3.new(1, 1, 1)
  719. 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)
  720. p8.CanCollide = false
  721. p8.Locked = true
  722. b6 = Instance.new("SpecialMesh", p8)
  723. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  724. b6.TextureId = ""
  725. b6.MeshType = Enum.MeshType.FileMesh
  726. b6.Name = "Mesh"
  727. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  728. p9 = Instance.new("Part", m)
  729. p9.BrickColor = BrickColor.new("Really black")
  730. p9.FormFactor = Enum.FormFactor.Custom
  731. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  732. 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)
  733. p9.CanCollide = false
  734. p9.Locked = true
  735. p9.BottomSurface = Enum.SurfaceType.Smooth
  736. p9.TopSurface = Enum.SurfaceType.Smooth
  737. b7 = Instance.new("BlockMesh", p9)
  738. b7.Name = "Mesh"
  739. p10 = Instance.new("Part", m)
  740. p10.BrickColor = BrickColor.new("Bright blue")
  741. p10.FormFactor = Enum.FormFactor.Symmetric
  742. p10.Size = Vector3.new(1, 1, 1)
  743. 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)
  744. p10.CanCollide = false
  745. p10.Locked = true
  746. b8 = Instance.new("SpecialMesh", p10)
  747. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  748. b8.TextureId = ""
  749. b8.MeshType = Enum.MeshType.FileMesh
  750. b8.Name = "Mesh"
  751. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  752. p11 = Instance.new("Part", m)
  753. p11.BrickColor = BrickColor.new("Really black")
  754. p11.FormFactor = Enum.FormFactor.Custom
  755. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  756. 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)
  757. p11.CanCollide = false
  758. p11.Locked = true
  759. p11.BottomSurface = Enum.SurfaceType.Smooth
  760. p11.TopSurface = Enum.SurfaceType.Smooth
  761. b9 = Instance.new("BlockMesh", p11)
  762. b9.Name = "Mesh"
  763. p12 = Instance.new("Part", m)
  764. p12.BrickColor = BrickColor.new("Really black")
  765. p12.FormFactor = Enum.FormFactor.Custom
  766. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  767. 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)
  768. p12.CanCollide = false
  769. p12.Locked = true
  770. p12.BottomSurface = Enum.SurfaceType.Smooth
  771. p12.TopSurface = Enum.SurfaceType.Smooth
  772. b10 = Instance.new("BlockMesh", p12)
  773. b10.Name = "Mesh"
  774. p13 = Instance.new("Part", m)
  775. p13.BrickColor = BrickColor.new("Really black")
  776. p13.FormFactor = Enum.FormFactor.Custom
  777. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  778. 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)
  779. p13.CanCollide = false
  780. p13.Locked = true
  781. p13.BottomSurface = Enum.SurfaceType.Smooth
  782. p13.TopSurface = Enum.SurfaceType.Smooth
  783. b11 = Instance.new("BlockMesh", p13)
  784. b11.Name = "Mesh"
  785. p14 = Instance.new("Part", m)
  786. p14.BrickColor = BrickColor.new("Bright blue")
  787. p14.FormFactor = Enum.FormFactor.Symmetric
  788. p14.Size = Vector3.new(1, 1, 1)
  789. 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)
  790. p14.CanCollide = false
  791. p14.Locked = true
  792. b12 = Instance.new("SpecialMesh", p14)
  793. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  794. b12.TextureId = ""
  795. b12.MeshType = Enum.MeshType.FileMesh
  796. b12.Name = "Mesh"
  797. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  798. p15 = Instance.new("Part", m)
  799. p15.BrickColor = BrickColor.new("Medium stone grey")
  800. p15.Transparency = 1
  801. p15.Name = "ArmPart"
  802. p15.FormFactor = Enum.FormFactor.Custom
  803. p15.Size = Vector3.new(2, 1, 1)
  804. 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)
  805. p15.CanCollide = false
  806. p15.Locked = true
  807. p15.BottomSurface = Enum.SurfaceType.Smooth
  808. p15.TopSurface = Enum.SurfaceType.Smooth
  809. b13 = Instance.new("BlockMesh", p15)
  810. b13.Name = "Mesh"
  811. p16 = Instance.new("Part", m)
  812. p16.BrickColor = BrickColor.new("Really black")
  813. p16.FormFactor = Enum.FormFactor.Custom
  814. p16.Size = Vector3.new(3, 1, 2.4000001)
  815. 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)
  816. p16.CanCollide = false
  817. p16.Locked = true
  818. p16.BottomSurface = Enum.SurfaceType.Smooth
  819. p16.TopSurface = Enum.SurfaceType.Smooth
  820. b14 = Instance.new("BlockMesh", p16)
  821. b14.Name = "Mesh"
  822. p17 = Instance.new("Part", m)
  823. p17.BrickColor = BrickColor.new("Really black")
  824. p17.FormFactor = Enum.FormFactor.Custom
  825. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  826. 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)
  827. p17.CanCollide = false
  828. p17.Locked = true
  829. p17.BottomSurface = Enum.SurfaceType.Smooth
  830. p17.TopSurface = Enum.SurfaceType.Smooth
  831. b15 = Instance.new("BlockMesh", p17)
  832. b15.Name = "Mesh"
  833. p18 = Instance.new("Part", m)
  834. p18.BrickColor = BrickColor.new("Bright blue")
  835. p18.FormFactor = Enum.FormFactor.Symmetric
  836. p18.Size = Vector3.new(1, 1, 1)
  837. 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)
  838. p18.CanCollide = false
  839. p18.Locked = true
  840. b16 = Instance.new("SpecialMesh", p18)
  841. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  842. b16.TextureId = ""
  843. b16.MeshType = Enum.MeshType.FileMesh
  844. b16.Name = "Mesh"
  845. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  846. p19 = Instance.new("Part", m)
  847. p19.BrickColor = BrickColor.new("Bright blue")
  848. p19.FormFactor = Enum.FormFactor.Symmetric
  849. p19.Size = Vector3.new(1, 1, 1)
  850. 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)
  851. p19.CanCollide = false
  852. p19.Locked = true
  853. b17 = Instance.new("SpecialMesh", p19)
  854. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  855. b17.TextureId = ""
  856. b17.MeshType = Enum.MeshType.FileMesh
  857. b17.Name = "Mesh"
  858. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  859. p20 = Instance.new("Part", m)
  860. p20.BrickColor = BrickColor.new("Really black")
  861. p20.FormFactor = Enum.FormFactor.Custom
  862. p20.Size = Vector3.new(3, 1, 2.4000001)
  863. 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)
  864. p20.CanCollide = false
  865. p20.Locked = true
  866. p20.BottomSurface = Enum.SurfaceType.Smooth
  867. p20.TopSurface = Enum.SurfaceType.Smooth
  868. b18 = Instance.new("BlockMesh", p20)
  869. b18.Name = "Mesh"
  870. p21 = Instance.new("Part", m)
  871. p21.BrickColor = BrickColor.new("Really black")
  872. p21.FormFactor = Enum.FormFactor.Custom
  873. p21.Size = Vector3.new(3, 1, 1.19999993)
  874. 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)
  875. p21.CanCollide = false
  876. p21.Locked = true
  877. p21.BottomSurface = Enum.SurfaceType.Smooth
  878. p21.TopSurface = Enum.SurfaceType.Smooth
  879. b19 = Instance.new("BlockMesh", p21)
  880. b19.Name = "Mesh"
  881. p22 = Instance.new("WedgePart", m)
  882. p22.BrickColor = BrickColor.new("Really black")
  883. p22.Name = "Wedge"
  884. p22.FormFactor = Enum.FormFactor.Custom
  885. p22.Size = Vector3.new(3, 1, 0.5)
  886. 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)
  887. p22.CanCollide = false
  888. p22.Locked = true
  889. p22.BottomSurface = Enum.SurfaceType.Smooth
  890. p22.TopSurface = Enum.SurfaceType.Smooth
  891. p23 = Instance.new("Part", m)
  892. p23.BrickColor = BrickColor.new("Really black")
  893. p23.FormFactor = Enum.FormFactor.Custom
  894. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  895. 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)
  896. p23.CanCollide = false
  897. p23.Locked = true
  898. p23.BottomSurface = Enum.SurfaceType.Smooth
  899. p23.TopSurface = Enum.SurfaceType.Smooth
  900. b20 = Instance.new("BlockMesh", p23)
  901. b20.Name = "Mesh"
  902. p24 = Instance.new("WedgePart", m)
  903. p24.BrickColor = BrickColor.new("Really black")
  904. p24.Name = "Wedge"
  905. p24.FormFactor = Enum.FormFactor.Custom
  906. p24.Size = Vector3.new(3, 1, 0.5)
  907. 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)
  908. p24.CanCollide = false
  909. p24.Locked = true
  910. p24.BottomSurface = Enum.SurfaceType.Smooth
  911. p24.TopSurface = Enum.SurfaceType.Smooth
  912. p25 = Instance.new("Part", m)
  913. p25.BrickColor = BrickColor.new("Bright blue")
  914. p25.FormFactor = Enum.FormFactor.Symmetric
  915. p25.Size = Vector3.new(1, 1, 1)
  916. 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)
  917. p25.CanCollide = false
  918. p25.Locked = true
  919. p25.BottomSurface = Enum.SurfaceType.Smooth
  920. p25.TopSurface = Enum.SurfaceType.Smooth
  921. b21 = Instance.new("SpecialMesh", p25)
  922. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  923. b21.TextureId = ""
  924. b21.MeshType = Enum.MeshType.FileMesh
  925. b21.Name = "Mesh"
  926. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  927. p26 = Instance.new("Part", m)
  928. p26.BrickColor = BrickColor.new("Really black")
  929. p26.FormFactor = Enum.FormFactor.Symmetric
  930. p26.Size = Vector3.new(1, 1, 1)
  931. 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)
  932. p26.CanCollide = false
  933. p26.Locked = true
  934. p26.BottomSurface = Enum.SurfaceType.Smooth
  935. p26.TopSurface = Enum.SurfaceType.Smooth
  936. b22 = Instance.new("SpecialMesh", p26)
  937. b22.MeshType = Enum.MeshType.Brick
  938. b22.Name = "Mesh"
  939. w1 = Instance.new("Weld", p1)
  940. w1.Name = "Wedge_Weld"
  941. w1.Part0 = p1
  942. 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)
  943. w1.Part1 = p2
  944. 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)
  945. w2 = Instance.new("Weld", p2)
  946. w2.Name = "Part_Weld"
  947. w2.Part0 = p2
  948. 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)
  949. w2.Part1 = p3
  950. 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)
  951. w3 = Instance.new("Weld", p3)
  952. w3.Name = "Wedge_Weld"
  953. w3.Part0 = p3
  954. 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)
  955. w3.Part1 = p4
  956. 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)
  957. w4 = Instance.new("Weld", p4)
  958. w4.Name = "Part_Weld"
  959. w4.Part0 = p4
  960. 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)
  961. w4.Part1 = p5
  962. 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)
  963. w5 = Instance.new("Weld", p5)
  964. w5.Name = "Part_Weld"
  965. w5.Part0 = p5
  966. 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)
  967. w5.Part1 = p6
  968. 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)
  969. w6 = Instance.new("Weld", p6)
  970. w6.Name = "Part_Weld"
  971. w6.Part0 = p6
  972. 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)
  973. w6.Part1 = p7
  974. 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)
  975. w7 = Instance.new("Weld", p7)
  976. w7.Name = "Part_Weld"
  977. w7.Part0 = p7
  978. 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)
  979. w7.Part1 = p8
  980. 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)
  981. w8 = Instance.new("Weld", p8)
  982. w8.Name = "Part_Weld"
  983. w8.Part0 = p8
  984. 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)
  985. w8.Part1 = p9
  986. 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)
  987. w9 = Instance.new("Weld", p9)
  988. w9.Name = "Part_Weld"
  989. w9.Part0 = p9
  990. 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)
  991. w9.Part1 = p10
  992. 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)
  993. w10 = Instance.new("Weld", p10)
  994. w10.Name = "Part_Weld"
  995. w10.Part0 = p10
  996. 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)
  997. w10.Part1 = p11
  998. 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)
  999. w11 = Instance.new("Weld", p11)
  1000. w11.Name = "Part_Weld"
  1001. w11.Part0 = p11
  1002. 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)
  1003. w11.Part1 = p12
  1004. 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)
  1005. w12 = Instance.new("Weld", p12)
  1006. w12.Name = "Part_Weld"
  1007. w12.Part0 = p12
  1008. 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)
  1009. w12.Part1 = p13
  1010. 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)
  1011. w13 = Instance.new("Weld", p13)
  1012. w13.Name = "Part_Weld"
  1013. w13.Part0 = p13
  1014. 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)
  1015. w13.Part1 = p14
  1016. 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)
  1017. w14 = Instance.new("Weld", p14)
  1018. w14.Name = "ArmPart_Weld"
  1019. w14.Part0 = p14
  1020. 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)
  1021. w14.Part1 = p15
  1022. 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)
  1023. w15 = Instance.new("Weld", p15)
  1024. w15.Name = "Part_Weld"
  1025. w15.Part0 = p15
  1026. 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)
  1027. w15.Part1 = p16
  1028. 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)
  1029. w16 = Instance.new("Weld", p16)
  1030. w16.Name = "Part_Weld"
  1031. w16.Part0 = p16
  1032. 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)
  1033. w16.Part1 = p17
  1034. 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)
  1035. w17 = Instance.new("Weld", p17)
  1036. w17.Name = "Part_Weld"
  1037. w17.Part0 = p17
  1038. 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)
  1039. w17.Part1 = p18
  1040. 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)
  1041. w18 = Instance.new("Weld", p18)
  1042. w18.Name = "Part_Weld"
  1043. w18.Part0 = p18
  1044. 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)
  1045. w18.Part1 = p19
  1046. 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)
  1047. w19 = Instance.new("Weld", p19)
  1048. w19.Name = "Part_Weld"
  1049. w19.Part0 = p19
  1050. 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)
  1051. w19.Part1 = p20
  1052. 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)
  1053. w20 = Instance.new("Weld", p20)
  1054. w20.Name = "Part_Weld"
  1055. w20.Part0 = p20
  1056. 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)
  1057. w20.Part1 = p21
  1058. 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)
  1059. w21 = Instance.new("Weld", p21)
  1060. w21.Name = "Wedge_Weld"
  1061. w21.Part0 = p21
  1062. 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)
  1063. w21.Part1 = p22
  1064. 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)
  1065. w22 = Instance.new("Weld", p22)
  1066. w22.Name = "Part_Weld"
  1067. w22.Part0 = p22
  1068. 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)
  1069. w22.Part1 = p23
  1070. 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)
  1071. w23 = Instance.new("Weld", p23)
  1072. w23.Name = "Wedge_Weld"
  1073. w23.Part0 = p23
  1074. 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)
  1075. w23.Part1 = p24
  1076. 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)
  1077. w24 = Instance.new("Weld", p24)
  1078. w24.Name = "Part_Weld"
  1079. w24.Part0 = p24
  1080. 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)
  1081. w24.Part1 = p25
  1082. 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)
  1083. w25 = Instance.new("Weld", p25)
  1084. w25.Name = "Part_Weld"
  1085. w25.Part0 = p25
  1086. 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)
  1087. w25.Part1 = p26
  1088. 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)
  1089. m.Parent = char
  1090. m:MakeJoints()
  1091. ----------------------------------------------------
  1092. local cor2 = Instance.new("Part", char.Claw)
  1093. cor2.Name = "Thingy"
  1094. cor2.Locked = true
  1095. cor2.BottomSurface = 0
  1096. cor2.CanCollide = false
  1097. cor2.Size = Vector3.new(2, 1, 1)
  1098. cor2.Transparency = 1
  1099. cor2.TopSurface = 0
  1100. corw2 = Instance.new("Weld", cor2)
  1101. corw2.Part0 = larm
  1102. corw2.Part1 = cor2
  1103. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1104. corw2.C1 = CFrame.new(0, 0, 0)
  1105. weld2 = Instance.new("Weld", char.Claw)
  1106. weld2.Part0 = cor2
  1107. weld2.Part1 = char.Claw.ArmPart
  1108. weld2.C0 = CFrame.new(0, 0, 0)
  1109. ----------------------------------------------------
  1110. function weld5(part0, part1, c0, c1)
  1111. weeld=Instance.new("Weld", part0)
  1112. weeld.Part0=part0
  1113. weeld.Part1=part1
  1114. weeld.C0=c0
  1115. weeld.C1=c1
  1116. return weeld
  1117. end
  1118. ----------------------------------------------------
  1119. ----------------------------------------------------
  1120. a = game.Players.LocalPlayer.Character.Absolution:GetChildren()
  1121. for i = 1,#a do
  1122. if a[i]:IsA("UnionOperation") or a[i]:IsA("Part") or a[i]:IsA("WedgePart") then
  1123. a[i].Transparency = 1
  1124. end
  1125. end
  1126. ----------------------------------------------------
  1127. ACE = game.Players.LocalPlayer.Character.Claw:GetChildren()
  1128. for i = 1,#a do
  1129. if ACE[i]:IsA("UnionOperation") or ACE[i]:IsA("Part") or ACE[i]:IsA("WedgePart") then
  1130. ACE[i].Transparency = 1
  1131. end
  1132. end
  1133. ----------------------------------------------------
  1134. function newRay(start,face,range,wat)
  1135. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  1136. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  1137. return rey,hit,pos
  1138. end
  1139. ----------------------------------------------------
  1140. mod5 = Instance.new("Model",char)
  1141.  
  1142. function FindNearestTorso(Position,Distance,SinglePlayer)
  1143. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1144. local List = {}
  1145. for i,v in pairs(workspace:GetChildren())do
  1146. if v:IsA("Model")then
  1147. if v:findFirstChild("Torso")then
  1148. if v ~= char then
  1149. if(v.Torso.Position -Position).magnitude <= Distance then
  1150. table.insert(List,v)
  1151. end
  1152. end
  1153. end
  1154. end
  1155. end
  1156. return List
  1157. end
  1158.  
  1159. function Landing()
  1160. part=Instance.new('Part',mod5)
  1161. part.Anchored=true
  1162. part.CanCollide=false
  1163. part.FormFactor='Custom'
  1164. part.Size=Vector3.new(.2,.2,.2)
  1165. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  1166. part.Transparency=.7
  1167. part.BrickColor=BrickColor.new('Really black')
  1168. mesh=Instance.new('SpecialMesh',part)
  1169. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1170. mesh.Scale=Vector3.new(10,5,10)
  1171.  
  1172. for i,v in pairs(FindNearestTorso(torso.CFrame.p,40))do
  1173. if v:FindFirstChild('Humanoid') then
  1174. v.Humanoid:TakeDamage(math.random(20,30))
  1175. v.Humanoid.PlatformStand = true
  1176. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1177. end
  1178. end
  1179.  
  1180. coroutine.resume(coroutine.create(function()
  1181. for i=0,3.8,0.05 do
  1182. wait()
  1183. part.CFrame=part.CFrame
  1184. part.Transparency=i
  1185. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  1186. end
  1187. part.Parent = nil
  1188. end))
  1189. end
  1190. ----------------------------------------------------
  1191. mod4 = Instance.new("Model",char)
  1192.  
  1193. ptez = {0.7, 0.8, 0.9, 1}
  1194.  
  1195. function FindNearestTorso(Position,Distance,SinglePlayer)
  1196. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1197. local List = {}
  1198. for i,v in pairs(workspace:GetChildren())do
  1199. if v:IsA("Model")then
  1200. if v:findFirstChild("Torso")then
  1201. if v ~= char then
  1202. if(v.Torso.Position -Position).magnitude <= Distance then
  1203. table.insert(List,v)
  1204. end
  1205. end
  1206. end
  1207. end
  1208. end
  1209. return List
  1210. end
  1211.  
  1212. function GroundPound()
  1213. part=Instance.new('Part',mod4)
  1214. part.Anchored=true
  1215. part.CanCollide=false
  1216. part.FormFactor='Custom'
  1217. part.Size=Vector3.new(.2,.2,.2)
  1218. part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  1219. part.Transparency=.7
  1220. part.BrickColor=BrickColor.new('Really black')
  1221. mesh=Instance.new('SpecialMesh',part)
  1222. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1223. mesh.Scale=Vector3.new(3,3,3)
  1224. part2=Instance.new('Part',mod4)
  1225. part2.Anchored=true
  1226. part2.CanCollide=false
  1227. part2.FormFactor='Custom'
  1228. part2.Size=Vector3.new(.2,.2,.2)
  1229. part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  1230. part2.Transparency=.7
  1231. part2.BrickColor=BrickColor.new('Really red')
  1232. mesh2=Instance.new('SpecialMesh',part2)
  1233. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  1234. mesh2.Scale=Vector3.new(3,1.5,3)
  1235. x = Instance.new("Sound",char)
  1236. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  1237. x.Pitch = ptez[math.random(1,#ptez)]
  1238. x.Volume = 1
  1239. wait(0.001)
  1240. x:Play()
  1241. for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  1242. if v:FindFirstChild('Humanoid') then
  1243. v.Humanoid:TakeDamage(math.random(8,15))
  1244. end
  1245. end
  1246. coroutine.resume(coroutine.create(function()
  1247. for i=0,0.62,0.13 do
  1248. wait()
  1249. part.CFrame=part.CFrame
  1250. part.Transparency=i
  1251. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  1252. part2.CFrame=part2.CFrame
  1253. part2.Transparency=i
  1254. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  1255. end
  1256. part.Parent=nil
  1257. part2.Parent=nil
  1258. x:Destroy()
  1259. end))
  1260. end
  1261. ----------------------------------------------------
  1262. mod=Instance.new('Model',char)
  1263.  
  1264. function charge()
  1265. hed.Velocity=hed.CFrame.lookVector*200
  1266. part=Instance.new('Part',mod)
  1267. part.Anchored=true
  1268. part.CanCollide=false
  1269. part.FormFactor='Custom'
  1270. part.Size=Vector3.new(.2,.2,.2)
  1271. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  1272. part.Transparency=.7
  1273. part.BrickColor=BrickColor.new('Black')
  1274. mesh=Instance.new('SpecialMesh',part)
  1275. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1276. mesh.Scale=Vector3.new(10,5,10)
  1277. part2=part:clone()
  1278. part2.Parent=mod
  1279. part2.BrickColor=BrickColor.new('Bright red')
  1280. mesh2=mesh:clone()
  1281. mesh2.Parent=part2
  1282. mesh2.Scale=Vector3.new(20,10,20)
  1283. part3=part2:clone()
  1284. part3.Parent = mod
  1285. part3.BrickColor=BrickColor.new('Really black')
  1286. mesh3=mesh2:clone()
  1287. mesh2.Parent=part3
  1288. mesh3.Scale=Vector3.new(30,15,30)
  1289. coroutine.resume(coroutine.create(function()
  1290. for i=0,1,0.1 do
  1291. wait()
  1292. part.CFrame=part.CFrame
  1293. part.Transparency=i
  1294. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  1295. part2.CFrame=part2.CFrame
  1296. part2.Transparency=i
  1297. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1298. part3.CFrame=part3.CFrame
  1299. part3.Transparency=i
  1300. mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  1301. end
  1302. part.Parent=nil
  1303. part2.Parent=nil
  1304. part3.Parent = nil
  1305. end))
  1306. end
  1307. ----------------------------------------------------
  1308. function FindNearestTorso(Position,Distance,SinglePlayer)
  1309. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1310. local List = {}
  1311. for i,v in pairs(workspace:GetChildren())do
  1312. if v:IsA("Model")then
  1313. if v:findFirstChild("Torso")then
  1314. if v ~= char then
  1315. if(v.Torso.Position -Position).magnitude <= Distance then
  1316. table.insert(List,v)
  1317. end
  1318. end
  1319. end
  1320. end
  1321. end
  1322. return List
  1323. end
  1324.  
  1325. mod3 = Instance.new("Model",rleg)
  1326.  
  1327. function Stomp()
  1328. part=Instance.new('Part',mod3)
  1329. part.Anchored=true
  1330. part.CanCollide=false
  1331. part.FormFactor='Custom'
  1332. part.Size=Vector3.new(.2,.2,.2)
  1333. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  1334. part.Transparency=.7
  1335. part.BrickColor=BrickColor.new('Bright green')
  1336. mesh=Instance.new('SpecialMesh',part)
  1337. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1338. mesh.Scale=Vector3.new(25,25,25)
  1339. part2=part:clone()
  1340. part2.Parent=mod3
  1341. part2.BrickColor=BrickColor.new('Bright green')
  1342. mesh2=mesh:clone()
  1343. mesh2.Parent=part2
  1344. mesh2.Scale=Vector3.new(15,15,15)
  1345. part3=part:clone()
  1346. part3.Parent=mod3
  1347. part3.TopSurface=0
  1348. part3.BottomSurface=0
  1349. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  1350. mesh3=Instance.new('SpecialMesh',part3)
  1351. mesh3.MeshType = 3
  1352. mesh3.Scale=Vector3.new(12,12,12)
  1353. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  1354. if v:FindFirstChild('Humanoid') then
  1355. v.Humanoid:TakeDamage(math.random(20,60))
  1356. v.Humanoid.PlatformStand = true
  1357. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1358. end
  1359. end
  1360. coroutine.resume(coroutine.create(function()
  1361. for i=0,3.8,0.05 do
  1362. wait()
  1363. part.CFrame=part.CFrame
  1364. part.Transparency=i
  1365. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  1366. part2.CFrame=part2.CFrame
  1367. part2.Transparency=i
  1368. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1369. part3.CFrame=part3.CFrame
  1370. part3.Transparency=i
  1371. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  1372. end
  1373. end))
  1374. end
  1375. ----------------------------------------------------
  1376.  
  1377. local acos = math.acos
  1378. local sqrt = math.sqrt
  1379. local Vec3 = Vector3.new
  1380. local fromAxisAngle = CFrame.fromAxisAngle
  1381.  
  1382. local function toAxisAngle(CFr)
  1383. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  1384. local Angle = math.acos((R00+R11+R22-1)/2)
  1385. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1386. A = A == 0 and 0.00001 or A
  1387. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1388. B = B == 0 and 0.00001 or B
  1389. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1390. C = C == 0 and 0.00001 or C
  1391. local x = (R21-R12)/sqrt(A)
  1392. local y = (R02-R20)/sqrt(B)
  1393. local z = (R10-R01)/sqrt(C)
  1394. return Vec3(x,y,z),Angle
  1395. end
  1396.  
  1397. function ApplyTrig(Num,Func)
  1398. local Min,Max = Func(0),Func(1)
  1399. local i = Func(Num)
  1400. return (i-Min)/(Max-Min)
  1401. --[[if Func == "sin" then
  1402. return (math.sin((1-Num)*math.pi)+1)/2
  1403. elseif Func == "cos" then
  1404. return (math.cos((1-Num)*math.pi)+1)/2
  1405. end]]
  1406. end
  1407.  
  1408. function LerpCFrame(CFrame1,CFrame2,Num)
  1409. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  1410. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  1411. end
  1412.  
  1413. function Crater(Torso,Radius)
  1414. Spawn(function()
  1415. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  1416. local Ignore = {}
  1417. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1418. if v.Character ~= nil then
  1419. Ignore[#Ignore+1] = v.Character
  1420. end
  1421. end
  1422. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  1423. if Hit == nil then return end
  1424. local Parts = {}
  1425. for i = 1,360,10 do
  1426. local P = Instance.new("Part",Torso.Parent)
  1427. P.Anchored = true
  1428. P.FormFactor = "Custom"
  1429. P.BrickColor = Hit.BrickColor
  1430. P.Material = Hit.Material
  1431. P.TopSurface = "Smooth"
  1432. P.BottomSurface = "Smooth"
  1433. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  1434. 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)))
  1435. 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}
  1436. if math.random(0,5) == 0 then -- rubble
  1437. local P = Instance.new("Part",Torso.Parent)
  1438. P.Anchored = true
  1439. P.FormFactor = "Custom"
  1440. P.BrickColor = Hit.BrickColor
  1441. P.Material = Hit.Material
  1442. P.TopSurface = "Smooth"
  1443. P.BottomSurface = "Smooth"
  1444. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  1445. 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)))
  1446. 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}
  1447. end
  1448. end
  1449. for i = 0,1,0.05 do
  1450. for i2,v in pairs(Parts) do
  1451. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  1452. end
  1453. wait(0.02)
  1454. end
  1455. for i,v in pairs(Parts) do
  1456. if v[1].Size.X > 2.1 then
  1457. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  1458. end
  1459. v[1].Anchored = false
  1460. end
  1461. for i = 0,1,0.05 do
  1462. for i2,v in pairs(Parts) do
  1463. v[1].Transparency = i
  1464. if i == 1 then
  1465. v[1]:Destroy()
  1466. elseif i >= 0.25 then
  1467. v[1].CanCollide = false
  1468. end
  1469. end
  1470. wait(0.02)
  1471. end
  1472. Parts = nil
  1473. end)
  1474. end
  1475.  
  1476. ----------------------------------------------------
  1477. mouse.KeyDown:connect(function(key)
  1478. if key == "r" then
  1479. larm.BrickColor = BrickColor.new("Bright red")
  1480. rarm.BrickColor = BrickColor.new("Bright red")
  1481. if Debounces.CanAttack == true then
  1482. Debounces.CanAttack = false
  1483. Debounces.on = true
  1484. Debounces.NoIdl = true
  1485. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  1486. hit = ht.Parent
  1487. if ht and hit:IsA("Model") then
  1488. if hit:FindFirstChild("Humanoid") then
  1489. if hit.Name ~= p.Name then
  1490. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1491. Debounces.Slashed = true]]--
  1492. hit:FindFirstChild("Humanoid"):TakeDamage(10)
  1493. wait(1)
  1494. --Debounces.Slashed = false
  1495. --end
  1496. end
  1497. end
  1498. elseif ht and hit:IsA("Hat") then
  1499. if hit.Parent.Name ~= p.Name then
  1500. if hit.Parent:FindFirstChild("Humanoid") then
  1501. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1502. Debounces.Slashed = true]]--
  1503. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  1504. wait(1)
  1505. --Debounces.Slashed = false
  1506. end
  1507. end
  1508. end
  1509. end)
  1510. q = Instance.new("Sound",hed)
  1511. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  1512. q.Pitch = 0.85
  1513. q.Looped = false
  1514. q1 = Instance.new("Sound",hed)
  1515. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  1516. q1.Pitch = 0.85
  1517. q1.Looped = false
  1518. q:Play()
  1519. q1:Play()
  1520. for i = 1,20 do
  1521. 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.4)
  1522. 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.4)
  1523. 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)
  1524. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1525. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1526. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1527. 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.5)
  1528. if Debounces.on == false then break end
  1529. wait()
  1530. end
  1531. n = Instance.new("Sound",hed)
  1532. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  1533. n.Pitch = 0.94
  1534. n.Looped = false
  1535. n1 = Instance.new("Sound",hed)
  1536. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  1537. n1.Pitch = 0.94
  1538. n1.Looped = false
  1539. n:Play()
  1540. n1:Play()
  1541. b = Instance.new("Sound",hed)
  1542. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  1543. b.Pitch = 0.94
  1544. b.Looped = false
  1545. b1 = Instance.new("Sound",hed)
  1546. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  1547. b1.Pitch = 0.94
  1548. b1.Looped = false
  1549. b:Play()
  1550. b1:Play()
  1551. for i = 1,26 do
  1552. 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.5)
  1553. 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.5)
  1554. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.5)
  1555. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.5)
  1556. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.5)
  1557. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.5)
  1558. 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.5)
  1559. if Debounces.on == false then break end
  1560. wait()
  1561. end
  1562. wait(.5)
  1563. to:disconnect()
  1564. q:Destroy()
  1565. q1:Destroy()
  1566. n:Destroy()
  1567. n1:Destroy()
  1568. larm.BrickColor = BrickColor.new("Really black")
  1569. rarm.BrickColor = BrickColor.new("Really black")
  1570. if Debounces.CanAttack == false then
  1571. Debounces.CanAttack = true
  1572. Debounces.on = false
  1573. Debounces.NoIdl = false
  1574. end
  1575. end
  1576. end
  1577. end)
  1578. ----------------------------------------------------
  1579. mouse.KeyDown:connect(function(key)
  1580. if key == "q" then
  1581. larm.BrickColor = BrickColor.new("Bright red")
  1582. rarm.BrickColor = BrickColor.new("Bright red")
  1583. if Debounces.CanAttack == true then
  1584. Debounces.CanAttack = false
  1585. Debounces.on = true
  1586. Debounces.NoIdl = true
  1587. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  1588. hit = ht.Parent
  1589. if ht and hit:IsA("Model") then
  1590. if hit:FindFirstChild("Humanoid") then
  1591. if hit.Name ~= p.Name then
  1592. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1593. Debounces.Slashed = true]]--
  1594. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  1595. wait(1)
  1596. --Debounces.Slashed = false
  1597. --end
  1598. end
  1599. end
  1600. elseif ht and hit:IsA("Hat") then
  1601. if hit.Parent.Name ~= p.Name then
  1602. if hit.Parent:FindFirstChild("Humanoid") then
  1603. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1604. Debounces.Slashed = true]]--
  1605. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  1606. wait(1)
  1607. --Debounces.Slashed = false
  1608. end
  1609. end
  1610. end
  1611. end)
  1612. for i = 1, 20 do
  1613. 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)
  1614. 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)
  1615. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  1616. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  1617. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  1618. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  1619. 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)
  1620. if Debounces.on == false then break end
  1621. wait()
  1622. end
  1623. z = Instance.new("Sound",hed)
  1624. z.SoundId = "rbxassetid://160069154"
  1625. z.Looped = false
  1626. z.Pitch = .9
  1627. z1 = Instance.new("Sound",hed)
  1628. z1.SoundId = "rbxassetid://160069154"
  1629. z1.Looped = false
  1630. z1.Pitch = .9
  1631. wait(0.01)
  1632. z:Play()
  1633. z1:Play()
  1634. for i = 1, 12 do
  1635. 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)
  1636. 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)
  1637. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  1638. 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)
  1639. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  1640. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  1641. 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)
  1642. if Debounces.on == false then break end
  1643. wait()
  1644. end
  1645. for i = 1, 12 do
  1646. 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)
  1647. 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)
  1648. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  1649. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  1650. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  1651. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  1652. 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)
  1653. if Debounces.on == false then break end
  1654. wait()
  1655. end
  1656. z = Instance.new("Sound",hed)
  1657. z.SoundId = "rbxassetid://168586621"
  1658. z.Looped = false
  1659. z.Pitch = 1
  1660. z1 = Instance.new("Sound",hed)
  1661. z1.SoundId = "rbxassetid://168586621"
  1662. z1.Looped = false
  1663. z1.Pitch = 1
  1664. wait(0.01)
  1665. z:Play()
  1666. z1:Play()
  1667. for i = 1, 12 do
  1668. 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)
  1669. 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)
  1670. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  1671. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  1672. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  1673. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  1674. 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)
  1675. if Debounces.on == false then break end
  1676. wait()
  1677. end
  1678. to:disconnect()
  1679. larm.BrickColor = BrickColor.new("Really black")
  1680. rarm.BrickColor = BrickColor.new("Really black")
  1681. if Debounces.CanAttack == false then
  1682. Debounces.CanAttack = true
  1683. Debounces.on = false
  1684. Debounces.NoIdl = false
  1685. end
  1686. end
  1687. end
  1688. end)
  1689. ----------------------------------------------------
  1690. Sit = false
  1691. mouse.KeyDown:connect(function(key)
  1692. if key == "v" then
  1693. if Sit == false then
  1694. Sit = true
  1695. hum.WalkSpeed = 0.001
  1696. stanceToggle = "Sitting"
  1697. elseif Sit == true then
  1698. Sit = false
  1699. hum.WalkSpeed = 7
  1700. stanceToggle = "Normal"
  1701. end
  1702. end
  1703. end)
  1704. ----------------------------------------------------
  1705. mouse.KeyDown:connect(function(key)
  1706. if key == "t" then
  1707. if Debounces.CanAttack == true then
  1708. Debounces.CanAttack = false
  1709. Debounces.on = true
  1710. Debounces.NoIdl = true
  1711. for i = 1, 20 do
  1712. 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.4)
  1713. 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.4)
  1714. 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)
  1715. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1716. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.4)
  1717. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.4)
  1718. 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)
  1719. if Debounces.on == false then break end
  1720. wait()
  1721. end
  1722. Spawn(function()
  1723. local Parts = {}
  1724. for Y = -5,5 do
  1725. local P = Instance.new("Part",char)
  1726. P.Anchored = true
  1727. P.FormFactor = "Custom"
  1728. P.CanCollide = false
  1729. P.Size = Vector3.new(1,2,1)
  1730. P.TopSurface = "SmoothNoOutlines"
  1731. P.BottomSurface = "SmoothNoOutlines"
  1732. P.BrickColor = BrickColor.new("Really black")
  1733. P.Name = tostring(Y)
  1734. local i = (Y+5)/(10)
  1735. i = 1-math.cos(math.pi*i-(math.pi/2))
  1736. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  1737. --[[P.Touched:connect(function(ht)
  1738. local hit = ht.Parent
  1739. if hit:FindFirstChild("Humanoid") then
  1740. hit.Humanoid:TakeDamage(math.random(20,50))
  1741. end
  1742. end)]]--
  1743. s = Instance.new("Sound",P)
  1744. s.SoundId = "rbxassetid://228343271"
  1745. s.Volume = .7
  1746. s.Pitch = 0.9
  1747. s:Play()
  1748. P.Touched:connect(function(ht)
  1749. hit = ht.Parent
  1750. if ht and hit:IsA("Model") then
  1751. if hit:FindFirstChild("Humanoid") then
  1752. if hit.Name ~= p.Name then
  1753. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1754. Debounces.Slashed = true]]--
  1755. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
  1756. hit:FindFirstChild("Humanoid").PlatformStand = true
  1757. wait(1)
  1758. --Debounces.Slashed = false
  1759. --end
  1760. end
  1761. end
  1762. elseif ht and hit:IsA("Hat") then
  1763. if hit.Parent.Name ~= p.Name then
  1764. if hit.Parent:FindFirstChild("Humanoid") then
  1765. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1766. Debounces.Slashed = true]]--
  1767. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
  1768. hit:FindFirstChild("Humanoid").PlatformStand = true
  1769. wait(1)
  1770. --Debounces.Slashed = false
  1771. --end
  1772. end
  1773. end
  1774. end
  1775. end)
  1776. Parts[#Parts+1] = P
  1777. end
  1778. local BREAKIT = false
  1779. local CParts = {}
  1780. local Rocks = {}
  1781. local LastPos = nil
  1782. for i = 1,70 do
  1783. for i2,v in pairs(Parts) do
  1784. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  1785. local cf = v.CFrame
  1786. v.Size = v.Size+Vector3.new(0.4,0.35,0)
  1787. v.CFrame = cf
  1788. v.Transparency = v.Transparency+0.02
  1789. if v.Transparency >= 0.975 then BREAKIT = true end
  1790. if v.Name == "0" then
  1791. local Ignore = {}
  1792. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1793. if v.Character ~= nil then
  1794. Ignore[#Ignore+1] = v.Character
  1795. end
  1796. end
  1797. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  1798. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  1799. if Hit ~= nil then
  1800. if #Rocks == 0 then
  1801. for i = 1,5 do
  1802. local P = Instance.new("Part",char)
  1803. Rocks[#Rocks+1] = P
  1804. P.Anchored = true
  1805. P.FormFactor = "Custom"
  1806. P.BrickColor = Hit.BrickColor
  1807. P.Material = Hit.Material
  1808. P.TopSurface = "Smooth"
  1809. P.BottomSurface = "Smooth"
  1810. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  1811. end
  1812. end
  1813. for i,P in pairs(Rocks) do
  1814. 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)))
  1815. end
  1816. local P = Instance.new("Part",char)
  1817. CParts[#CParts+1] = {P,tick()}
  1818. P.Anchored = true
  1819. P.FormFactor = "Custom"
  1820. P.BrickColor = Hit.BrickColor
  1821. P.Material = Hit.Material
  1822. P.TopSurface = "Smooth"
  1823. P.BottomSurface = "Smooth"
  1824. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  1825. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  1826. Pos = Pos.p
  1827. 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)))
  1828. local P = P:Clone()
  1829. CParts[#CParts+1] = {P,tick()}
  1830. P.Parent = char
  1831. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  1832. Pos = Pos.p
  1833. 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)))
  1834. if LastPos ~= nil then
  1835. local P = P:Clone()
  1836. CParts[#CParts+1] = {P,tick()}
  1837. P.Parent = char
  1838. P.BrickColor = BrickColor.new("Really black")
  1839. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  1840. Pos = Pos.p
  1841. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  1842. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  1843. --P.Velocity = Vector3.new(0,-1000,0)
  1844. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  1845. end
  1846. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  1847. end
  1848. end
  1849. end
  1850. if BREAKIT then break end
  1851. wait(0.002)
  1852. end
  1853. for i,v in pairs(Rocks) do
  1854. CParts[#CParts+1] = {v,tick()}
  1855. end
  1856. for i,v in pairs(Parts) do
  1857. v:Destroy()
  1858. end
  1859. Parts = nil
  1860. while true do
  1861. local t = tick()
  1862. local p = nil
  1863. for i,v in pairs(CParts) do
  1864. if t-v[2] > 4 then
  1865. v[1].Transparency = v[1].Transparency+0.05
  1866. if v[1].Transparency >= 1 then
  1867. v[1]:Destroy()
  1868. CParts[i] = nil
  1869. end
  1870. end
  1871. p = v
  1872. end
  1873. if p == nil then break end
  1874. wait(0.002)
  1875. end
  1876. for i,v in pairs(CParts) do
  1877. v:Destroy()
  1878. end
  1879. CParts = {}
  1880. end)
  1881. for i = 1, 20 do
  1882. 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)
  1883. 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)
  1884. 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)
  1885. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  1886. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  1887. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  1888. 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)
  1889. if Debounces.on == false then break end
  1890. wait()
  1891. end
  1892. if Debounces.CanAttack == false then
  1893. Debounces.CanAttack = true
  1894. Debounces.on = false
  1895. Debounces.NoIdl = false
  1896. end
  1897. end
  1898. end
  1899. end)
  1900. ----------------------------------------------------
  1901. mouse.KeyDown:connect(function(key)
  1902. if key == "e" then
  1903. larm.BrickColor = BrickColor.new("Bright red")
  1904. rarm.BrickColor = BrickColor.new("Bright red")
  1905. if Debounces.CanAttack == true then
  1906. Debounces.CanAttack = false
  1907. Debounces.on = true
  1908. Debounces.NoIdl = true
  1909. for i = 1, 18 do
  1910. 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)
  1911. 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)
  1912. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  1913. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  1914. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  1915. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  1916. 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)
  1917. if Debounces.on == false then break end
  1918. wait()
  1919. end
  1920. 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))
  1921. local rng = Instance.new("Part", char.Absolution.Handle)
  1922. rng.Anchored = true
  1923. rng.BrickColor = BrickColor.new("Really black")
  1924. rng.CanCollide = true
  1925. rng.FormFactor = 3
  1926. rng.Name = "Ring"
  1927. rng.Size = Vector3.new(1, 1, 1)
  1928. rng.CanCollide = false
  1929. rng.Transparency = 0.35
  1930. rng.TopSurface = 0
  1931. rng.BottomSurface = 0
  1932. rng.CFrame = HandCF
  1933. local rngm = Instance.new("SpecialMesh", rng)
  1934. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1935. rngm.Scale = Vector3.new(1, 1, 2)
  1936. x = Instance.new("Sound", hed)
  1937. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  1938. x.Looped = false
  1939. x.Pitch = .7
  1940. x.Volume = 1
  1941. x1 = Instance.new("Sound", hed)
  1942. x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  1943. x1.Looped = false
  1944. x1.Pitch = .7
  1945. x1.Volume = 1
  1946. x:Play()
  1947. x1:Play()
  1948. rngto = rng.Touched:connect(function(ht)
  1949. hit = ht.Parent
  1950. if ht and hit:IsA("Model") then
  1951. if hit:FindFirstChild("Humanoid") then
  1952. if hit.Name ~= p.Name then
  1953. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1954. Debounces.Slashed = true]]--
  1955. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  1956. hit:FindFirstChild("Humanoid").PlatformStand = true
  1957. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  1958. --Debounces.Slashed = false
  1959. --end
  1960. end
  1961. end
  1962. elseif ht and hit:IsA("Hat") then
  1963. if hit.Parent.Name ~= p.Name then
  1964. if hit.Parent:FindFirstChild("Humanoid") then
  1965. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1966. Debounces.Slashed = true]]--
  1967. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  1968. hit:FindFirstChild("Humanoid").PlatformStand = true
  1969. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  1970. --Debounces.Slashed = false
  1971. end
  1972. end
  1973. end
  1974. end)
  1975. coroutine.wrap(function()
  1976. for i = 1, 60, 2 do
  1977. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  1978. rng.Size = rngm.Scale
  1979. rng.CFrame = HandCF
  1980. rng.Transparency = i/60
  1981. wait()
  1982. end
  1983. wait()
  1984. rng:Destroy()
  1985. end)()
  1986. for i = 1, 18 do
  1987. 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)
  1988. 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)
  1989. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  1990. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  1991. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  1992. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  1993. 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)
  1994. if Debounces.on == false then break end
  1995. wait()
  1996. end
  1997. larm.BrickColor = BrickColor.new("Really black")
  1998. rarm.BrickColor = BrickColor.new("Really black")
  1999. x:Destroy()
  2000. x1:Destroy()
  2001. if Debounces.CanAttack == false then
  2002. Debounces.CanAttack = true
  2003. Debounces.on = false
  2004. Debounces.NoIdl = false
  2005. end
  2006. end
  2007. end
  2008. end)
  2009. ----------------------------------------------------
  2010. mouse.KeyDown:connect(function(key)
  2011. if key == "y" then
  2012. if Debounces.CanAttack == true then
  2013. Debounces.CanAttack = false
  2014. Debounces.on = true
  2015. Debounces.NoIdl = true
  2016. for i = 1, 15 do
  2017. 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)
  2018. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.2)
  2019. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  2020. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  2021. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  2022. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  2023. 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)
  2024. if Debounces.on == false then break end
  2025. wait()
  2026. end
  2027. x = Instance.new("Sound",char)
  2028. x.SoundId = "rbxassetid://228343271"
  2029. x.Pitch = 1
  2030. x.Volume = .8
  2031. wait(.1)
  2032. x:Play()
  2033. Debounces.on = false
  2034. Debounces.Here = false
  2035. shot = shot + 1
  2036. local rng = Instance.new("Part", char)
  2037. rng.Anchored = true
  2038. rng.BrickColor = BrickColor.new("Really black")
  2039. rng.CanCollide = false
  2040. rng.FormFactor = 3
  2041. rng.Name = "Ring"
  2042. rng.Size = Vector3.new(1, 1, 1)
  2043. rng.Transparency = 0.35
  2044. rng.TopSurface = 0
  2045. rng.BottomSurface = 0
  2046. rng2 = rng:clone()
  2047. rng3 = rng2:clone()
  2048. rng4 = rng2:clone()
  2049. local rngm = Instance.new("SpecialMesh", rng)
  2050. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2051. rngm.Scale = Vector3.new(10, 10, 1)
  2052. rngm2 = rngm:clone()
  2053. rngm2.Scale = Vector3.new(5, 5, 1)
  2054. rngm3=rngm2:clone()
  2055. rngm3.Parent = rng3
  2056. rngm3.Scale = Vector3.new(8, 8, 1)
  2057. rngm4 = rngm2:clone()
  2058. rngm4.Parent = rng4
  2059. rngm4.Scale = Vector3.new(6, 6, 1)
  2060. local bem = Instance.new("Part", char)
  2061. bem.Anchored = true
  2062. bem.BrickColor = BrickColor.new("Really black")
  2063. bem.CanCollide = false
  2064. bem.FormFactor = 3
  2065. bem.Name = "Beam" .. shot
  2066. bem.Size = Vector3.new(1, 1, 1)
  2067. bem.Transparency = 0.35
  2068. bem.TopSurface = 0
  2069. bem.BottomSurface = 0
  2070. local bemm = Instance.new("SpecialMesh", bem)
  2071. bemm.MeshType = 4
  2072. bemm.Scale = Vector3.new(1, 4, 4)
  2073. local out = Instance.new("Part", char)
  2074. out.Anchored = true
  2075. out.BrickColor = BrickColor.new("Really black")
  2076. out.CanCollide = false
  2077. out.FormFactor = 3
  2078. out.Name = "Out"
  2079. out.Size = Vector3.new(4, 4, 4)
  2080. out.Transparency = 0.35
  2081. out.TopSurface = 0
  2082. out.BottomSurface = 0
  2083. local outm = Instance.new("SpecialMesh", out)
  2084. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  2085. outm.Scale = Vector3.new(4, 4, 4)
  2086. local bnd = Instance.new("Part", char)
  2087. bnd.Anchored = true
  2088. bnd.BrickColor = BrickColor.new("Really black")
  2089. bnd.CanCollide = false
  2090. bnd.FormFactor = 3
  2091. bnd.Name = "Bend"
  2092. bnd.Size = Vector3.new(1, 1, 1)
  2093. bnd.Transparency = 1
  2094. bnd.TopSurface = 0
  2095. bnd.BottomSurface = 0
  2096. local bndm = Instance.new("SpecialMesh", bnd)
  2097. bndm.MeshType = 3
  2098. bndm.Scale = Vector3.new(8, 8, 8)
  2099. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  2100. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  2101. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  2102. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  2103. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  2104. rng4.CFrame = rng3.CFrame * CFrame.new(0, -.5, 0)
  2105. Debounces.Shewt = true
  2106. coroutine.wrap(function()
  2107. for i = 1, 20, 0.2 do
  2108. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2109. rngm3.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2110. rngm4.Scale = Vector3.new(6 + i*2, 6 + i*2, 1)
  2111. rng.Transparency = i/20
  2112. rng3.Transparency = 1/16
  2113. rng4.Transparency = i/12
  2114. wait()
  2115. end
  2116. wait()
  2117. rng:Destroy()
  2118. end)()
  2119. if Debounces.Shewt == true then
  2120. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  2121. hit = ht.Parent
  2122. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  2123. if HasntTouched(hit.Name) == true and deb == false then
  2124. deb = true
  2125. coroutine.wrap(function()
  2126. hit:FindFirstChild("Humanoid").PlatformStand = true
  2127. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2128. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  2129. end)()
  2130. table.insert(Touche, hit.Name)
  2131. deb = false
  2132. end
  2133. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  2134. if HasntTouched(hit.Parent.Name) == true and deb == false then
  2135. deb = true
  2136. coroutine.wrap(function()
  2137. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  2138. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2139. wait(1)
  2140. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  2141. end)()
  2142. table.insert(Touche, hit.Parent.Name)
  2143. deb = false
  2144. for i, v in pairs(Touche) do
  2145. print(v)
  2146. end
  2147. end
  2148. end
  2149. end)
  2150. end
  2151. for i = 0, 260, 8 do
  2152. bem.Size = Vector3.new(i, 2, 2)
  2153. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  2154. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  2155. bnd.Size = Vector3.new(1,1,1)
  2156. bndm.Scale = Vector3.new(8,8,8)
  2157. if i % 10 == 0 then
  2158. local newRng = rng2:Clone()
  2159. newRng.Parent = char
  2160. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  2161. local newRngm = rngm2:clone()
  2162. newRngm.Parent=newRng
  2163. coroutine.wrap(function()
  2164. for i = 1, 10, 0.2 do
  2165. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2166. newRng.Transparency = i/10
  2167. wait()
  2168. end
  2169. wait()
  2170. newRng:Destroy()
  2171. end)()
  2172. end
  2173. wait()
  2174. end
  2175. wait()
  2176. Debounces.Shewt = false
  2177. bem:Destroy()
  2178. out:Destroy()
  2179. bnd:Destroy()
  2180. Debounces.Ready = false
  2181. for i, v in pairs(Touche) do
  2182. table.remove(Touche, i)
  2183. end
  2184. wait()
  2185. table.insert(Touche, char.Name)
  2186. Debounces.NoIdl = false
  2187. if Debounces.CanAttack == false then
  2188. Debounces.CanAttack = true
  2189. end
  2190. end
  2191. end
  2192. end)
  2193. ----------------------------------------------------
  2194. sidz = {"231917888", "231917845", "231917806"}
  2195. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  2196. mouse.KeyDown:connect(function(key)
  2197. if key == "f" then
  2198. larm.BrickColor = BrickColor.new("Bright red")
  2199. rarm.BrickColor = BrickColor.new("Bright red")
  2200. if Debounces.CanAttack == true then
  2201. Debounces.CanAttack = false
  2202. Debounces.on = true
  2203. Debounces.NoIdl = true
  2204. for i = 1, 10 do
  2205. 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.4)
  2206. 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.4)
  2207. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2208. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2209. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2210. 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.4)
  2211. 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)
  2212. if Debounces.on == false then break end
  2213. wait()
  2214. end
  2215. z = Instance.new("Sound",char)
  2216. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  2217. z.Pitch = ptz[math.random(1,#ptz)]
  2218. z.Volume = 1
  2219. z1 = Instance.new("Sound",char)
  2220. z1.SoundId = z.SoundId
  2221. z1.Pitch = z.Pitch
  2222. z1.Volume = 1
  2223. wait(1)
  2224. z:Play()
  2225. z1:Play()
  2226. Stomp()
  2227. for i = 1, 20 do
  2228. 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.6)
  2229. 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.6)
  2230. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2231. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.6)
  2232. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  2233. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  2234. 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)
  2235. if Debounces.on == false then break end
  2236. wait()
  2237. end
  2238. if Debounces.CanAttack == false then
  2239. Debounces.CanAttack = true
  2240. Debounces.on = false
  2241. Debounces.NoIdl = false
  2242. larm.BrickColor = BrickColor.new("Really black")
  2243. rarm.BrickColor = BrickColor.new("Really black")
  2244. end
  2245. end
  2246. end
  2247. end)
  2248. ----------------------------------------------------
  2249. mouse.KeyDown:connect(function(key)
  2250. if key == "g" then
  2251. larm.BrickColor = BrickColor.new("Bright red")
  2252. rarm.BrickColor = BrickColor.new("Bright red")
  2253. if Debounces.CanAttack == true then
  2254. Debounces.CanAttack = false
  2255. Debounces.on = true
  2256. Debounces.NoIdl = true
  2257. chrg = lleg.Touched:connect(function(ht)
  2258. hit = ht.Parent
  2259. if ht and hit:IsA("Model") then
  2260. if hit:FindFirstChild("Humanoid") then
  2261. if hit.Name ~= p.Name then
  2262. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2263. Debounces.Slashed = true]]--
  2264. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  2265. hit:FindFirstChild("Humanoid").PlatformStand = true
  2266. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2267. --Debounces.Slashed = false
  2268. --end
  2269. end
  2270. end
  2271. elseif ht and hit:IsA("Hat") then
  2272. if hit.Parent.Name ~= p.Name then
  2273. if hit.Parent:FindFirstChild("Humanoid") then
  2274. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  2275. Debounces.Slashed = true]]--
  2276. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  2277. hit:FindFirstChild("Humanoid").PlatformStand = true
  2278. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2279. --Debounces.Slashed = false
  2280. end
  2281. end
  2282. end
  2283. end)
  2284. for i = 1, 14 do
  2285. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.5)
  2286. 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.5)
  2287. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.5)
  2288. 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.5)
  2289. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  2290. 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.5)
  2291. 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)
  2292. if Debounces.on == false then break end
  2293. wait()
  2294. end
  2295. charge()
  2296. z = Instance.new("Sound",char)
  2297. z.SoundId = "rbxassetid://200632875"
  2298. z.Volume = 1
  2299. z.Pitch = .8
  2300. z1 = Instance.new("Sound",char)
  2301. z1.SoundId = "rbxassetid://200632875"
  2302. z1.Volume = 1
  2303. z1.Pitch = .9
  2304. z:Play()
  2305. z1:Play()
  2306. wait(1)
  2307. z:Destroy()
  2308. z1:Destroy()
  2309. chrg:disconnect()
  2310. if Debounces.CanAttack == false then
  2311. Debounces.CanAttack = true
  2312. Debounces.on = false
  2313. Debounces.NoIdl = false
  2314. larm.BrickColor = BrickColor.new("Really black")
  2315. rarm.BrickColor = BrickColor.new("Really black")
  2316. end
  2317. end
  2318. end
  2319. end)
  2320. ----------------------------------------------------
  2321. pt = {0.7, 0.8, 0.9}
  2322. mouse.KeyDown:connect(function(key)
  2323. if key == "h" then
  2324. if Debounces.CanJoke == true then
  2325. Debounces.CanJoke = false
  2326. u = Instance.new("Sound")
  2327. u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  2328. u.Parent = char
  2329. u.Looped = false
  2330. u.Pitch = pt[math.random(1,#pt)]
  2331. u.Volume = 1
  2332. u2 = Instance.new("Sound")
  2333. u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  2334. u2.Parent = char
  2335. u2.Looped = false
  2336. u2.Pitch = u.Pitch
  2337. u2.Volume = 1
  2338. wait(.01)
  2339. u:Play()
  2340. u2:Play()
  2341. wait(6)
  2342. u:Destroy()
  2343. u2:Destroy()
  2344. if Debounces.CanJoke == false then
  2345. Debounces.CanJoke = true
  2346. end
  2347. end
  2348. end
  2349. end)
  2350. ----------------------------------------------------
  2351. mouse.KeyDown:connect(function(key)
  2352. if key == "j" then
  2353. if Debounces.CanJoke == true then
  2354. Debounces.CanJoke = false
  2355. z = Instance.new("Sound",char)
  2356. z.SoundId = "rbxassetid://135017755"
  2357. z.Pitch = .76
  2358. z.Volume = 1
  2359. wait()
  2360. z:Play()
  2361. wait(6)
  2362. z:Destroy()
  2363. if Debounces.CanJoke == false then
  2364. Debounces.CanJoke = true
  2365. end
  2366. end
  2367. end
  2368. end)
  2369. ----------------------------------------------------
  2370. mouse.KeyDown:connect(function(key)
  2371. if key == "k" then
  2372. if Debounces.CanJoke == true then
  2373. Debounces.CanJoke = false
  2374. z = Instance.new("Sound",char)
  2375. z.SoundId = "rbxassetid://135017578"
  2376. z.Pitch = .76
  2377. z.Volume = 1
  2378. wait()
  2379. z:Play()
  2380. wait(4)
  2381. z:Destroy()
  2382. if Debounces.CanJoke == false then
  2383. Debounces.CanJoke = true
  2384. end
  2385. end
  2386. end
  2387. end)
  2388. ----------------------------------------------------
  2389. mouse.KeyDown:connect(function(key)
  2390. if key == "x" then
  2391. if Debounces.CanAttack == true then
  2392. Debounces.CanAttack = false
  2393. Debounces.NoIdl = true
  2394. Debounces.on = true
  2395. Debounces.ks = true
  2396. for i = 1, 10 do
  2397. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.6)
  2398. 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.6)
  2399. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2400. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.6)
  2401. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.6)
  2402. 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.6)
  2403. 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)
  2404. if Debounces.on == false then break end
  2405. wait()
  2406. end
  2407. z = Instance.new("Sound",hed)
  2408. z.SoundId = "rbxassetid://169445092"
  2409. z.Volume = 1
  2410. wait(0.1)
  2411. z:Play()
  2412. kik = rleg.Touched:connect(function(ht)
  2413. hit = ht.Parent
  2414. if ht and hit:IsA("Model") then
  2415. if hit:FindFirstChild("Humanoid") then
  2416. if hit.Name ~= p.Name then
  2417. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2418. Debounces.Slashed = true]]--
  2419. if Debounces.ks==true then
  2420. z = Instance.new("Sound",hed)
  2421. z.SoundId = "rbxassetid://169380525"
  2422. z.Volume = 1
  2423. z:Play()
  2424. Debounces.ks=false
  2425. end
  2426. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  2427. hit:FindFirstChild("Humanoid").PlatformStand = true
  2428. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2429. --Debounces.Slashed = false
  2430. --end
  2431. end
  2432. end
  2433. elseif ht and hit:IsA("Hat") then
  2434. if hit.Parent.Name ~= p.Name then
  2435. if hit.Parent:FindFirstChild("Humanoid") then
  2436. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2437. Debounces.Slashed = true]]--
  2438. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  2439. hit:FindFirstChild("Humanoid").PlatformStand = true
  2440. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2441. --Debounces.Slashed = false
  2442. --end
  2443. end
  2444. end
  2445. end
  2446. end)
  2447. for i = 1, 8 do
  2448. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2449. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.7)
  2450. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.7)
  2451. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.7)
  2452. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  2453. 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.7)
  2454. 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)
  2455. if Debounces.on == false then break end
  2456. wait()
  2457. end
  2458. kik:disconnect()
  2459. if Debounces.CanAttack == false then
  2460. Debounces.CanAttack = true
  2461. Debounces.on = false
  2462. Debounces.NoIdl = false
  2463. end
  2464. end
  2465. end
  2466. end)
  2467. ----------------------------------------------------
  2468. mouse.KeyDown:connect(function(key)
  2469. if key == "c" then
  2470. if Debounces.CanAttack == true then
  2471. Debounces.CanAttack = false
  2472. Debounces.NoIdl = true
  2473. Debounces.on = true
  2474. SIDZ = {"231917744", "231917742"}
  2475. PTZ = {0.7, 0.8, 0.9, 1}
  2476. for i = 1, 20 do
  2477. wait()
  2478. for i,v in pairs(char.Absolution:children()) do
  2479. if v:IsA("Part") or v:IsA("WedgePart") then
  2480. v.Transparency = v.Transparency + 0.05
  2481. end
  2482. end
  2483. end
  2484. function FindNearestTorso(Position,Distance,SinglePlayer)
  2485. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  2486. local List = {}
  2487. for i,v in pairs(workspace:GetChildren())do
  2488. if v:IsA("Model")then
  2489. if v:findFirstChild("Torso")then
  2490. if v ~= char then
  2491. if(v.Torso.Position -Position).magnitude <= Distance then
  2492. table.insert(List,v)
  2493. end
  2494. end
  2495. end
  2496. end
  2497. end
  2498. return List
  2499. end
  2500. GroundPound()
  2501. for i = 1, 5 do
  2502. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2503. 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.7)
  2504. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2505. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2506. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2507. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2508. 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)
  2509. if Debounces.on == false then break end
  2510. wait()
  2511. end
  2512. GroundPound()
  2513. for i = 1, 5 do
  2514. 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.7)
  2515. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2516. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2517. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2518. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2519. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2520. 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)
  2521. if Debounces.on == false then break end
  2522. wait()
  2523. end
  2524. GroundPound()
  2525. for i = 1, 5 do
  2526. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2527. 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.7)
  2528. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2529. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2530. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2531. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2532. 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)
  2533. if Debounces.on == false then break end
  2534. wait()
  2535. end
  2536. GroundPound()
  2537. for i = 1, 5 do
  2538. 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.7)
  2539. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2540. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2541. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2542. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2543. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2544. 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)
  2545. if Debounces.on == false then break end
  2546. wait()
  2547. end
  2548. GroundPound()
  2549. for i = 1, 5 do
  2550. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2551. 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.7)
  2552. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2553. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2554. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2555. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2556. 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)
  2557. if Debounces.on == false then break end
  2558. wait()
  2559. end
  2560. GroundPound()
  2561. for i = 1, 5 do
  2562. 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.7)
  2563. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2564. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2565. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2566. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2567. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2568. 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)
  2569. if Debounces.on == false then break end
  2570. wait()
  2571. end
  2572. for i = 1, 18 do
  2573. 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.4)
  2574. 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.4)
  2575. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2576. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2577. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2578. 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.4)
  2579. 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)
  2580. if Debounces.on == false then break end
  2581. wait()
  2582. end
  2583. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  2584. if v:FindFirstChild('Humanoid') then
  2585. v.Humanoid:TakeDamage(math.random(20,60))
  2586. v.Humanoid.PlatformStand = true
  2587. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2588. end
  2589. end
  2590. x = Instance.new("Sound",char)
  2591. x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  2592. x.Pitch = PTZ[math.random(1,#PTZ)]
  2593. x.Volume = 1
  2594. wait(0.1)
  2595. x:Play()
  2596. Crater(hed,20)
  2597. for i = 1, 14 do
  2598. 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)
  2599. 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)
  2600. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  2601. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  2602. 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)
  2603. 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)
  2604. 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)
  2605. if Debounces.on == false then break end
  2606. wait()
  2607. end
  2608. if Debounces.CanAttack == false then
  2609. Debounces.CanAttack = true
  2610. Debounces.on = false
  2611. Debounces.NoIdl = false
  2612. for i = 1, 20 do
  2613. wait()
  2614. for i,v in pairs(char.Absolution:children()) do
  2615. if v:IsA("Part") or v:IsA("WedgePart") then
  2616. v.Transparency = v.Transparency - 0.05
  2617. end
  2618. end
  2619. end
  2620. end
  2621. end
  2622. end
  2623. end)
  2624. ----------------------------------------------------176349813
  2625. mouse.KeyDown:connect(function(key)
  2626. if key == "b" then
  2627. hum.WalkSpeed = 0.01
  2628. if Debounces.CanAttack == true then
  2629. Debounces.CanAttack = false
  2630. Debounces.NoIdl = true
  2631. Debounces.on = true
  2632. for i = 1,20 do
  2633. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(-30)), 0.1)
  2634. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(30)), 0.1)
  2635. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.1)
  2636. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.1)
  2637. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(-5)), 0.1)
  2638. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(5)), 0.1)
  2639. 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)
  2640. if Debounces.on == false then break end
  2641. wait()
  2642. end
  2643. wait(1)
  2644. v = Instance.new("Sound")
  2645. v.SoundId = "rbxassetid://181384451"
  2646. v.Parent = char
  2647. v.Looped = false
  2648. v.Pitch = 1.04
  2649. v.Volume = 1
  2650. wait(.01)
  2651. v:Play()
  2652.  
  2653. if Daytime == true then
  2654. Daytime = false
  2655. l.TimeOfDay = 24
  2656. else
  2657. Daytime = true
  2658. l.TimeOfDay = 12
  2659. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  2660. end
  2661.  
  2662. local Shockwave = function()
  2663. local rng1 = Instance.new("Part", char)
  2664. rng1.Anchored = true
  2665. rng1.BrickColor = BrickColor.new("Really black")
  2666. rng1.CanCollide = false
  2667. rng1.FormFactor = 3
  2668. rng1.Name = "Ring"
  2669. rng1.Size = Vector3.new(1, 1, 1)
  2670. rng1.Transparency = 0.35
  2671. rng1.TopSurface = 0
  2672. rng1.BottomSurface = 0
  2673. local rngm1 = Instance.new("SpecialMesh", rng)
  2674. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2675. rngm1.Scale = Vector3.new(10, 10, 1)
  2676. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  2677. local Wave = Instance.new("Part", game.Workspace--[[?]])
  2678. Wave.Name = "Shockwave"
  2679. Wave.BrickColor = BrickColor.new("Really black")
  2680. Wave.Size = Vector3.new(1, 1, 1)
  2681. Wave.Shape = "Ball"
  2682. Wave.CanCollide = false
  2683. Wave.Anchored = true
  2684. Wave.TopSurface = 0
  2685. Wave.BottomSurface = 0
  2686. Wave.Touched:connect(function(hit)
  2687. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  2688. local Occlude = true
  2689. local NotOccludes = {
  2690. char.Name;
  2691. "Wings";
  2692. "Scythe";
  2693. "Thingy";
  2694. "Thingy2"; -- put all of the names in a table pls
  2695. }
  2696. for i,v in pairs(NotOccludes) do
  2697. if hit.Parent.Name == v then
  2698. Occlude = false
  2699. end
  2700. end
  2701. --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
  2702. if Occlude then
  2703. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  2704. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  2705. end
  2706. end
  2707. end)
  2708.  
  2709. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  2710.  
  2711. coroutine.wrap(function()
  2712. for i = 1, 20, 0.2 do
  2713. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2714. rng1.Transparency = i/20
  2715. wait()
  2716. end
  2717. wait()
  2718. rng1:Destroy()
  2719. end)()
  2720.  
  2721. Delay(0, function()
  2722.  
  2723. if Daytime == false then
  2724. for i = 1, 50, 1 do
  2725. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  2726. Wave.CFrame = char.Torso.CFrame
  2727. local t = i / 50
  2728. Wave.Transparency = t
  2729. wait()
  2730. end
  2731. else
  2732. for i = 1, 50, 1 do
  2733. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  2734. Wave.CFrame = char.Torso.CFrame
  2735. local t = i / 50
  2736. Wave.Transparency = t
  2737. wait()
  2738. end
  2739. end
  2740. Wave:Destroy()
  2741. end)
  2742. Delay(0, function()
  2743. while wait() do
  2744. if Wave ~= nil then
  2745. Wave.CFrame = char.Torso.CFrame
  2746. else
  2747. break
  2748. end
  2749. end
  2750. end)
  2751. end
  2752. Shockwave()
  2753. for i = 1, 15 do
  2754. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2755. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2756. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2757. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2758. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2759. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2760. if Debounces.on == false then break end
  2761. wait()
  2762. end
  2763. for i = 1, 15 do
  2764. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2765. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2766. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2767. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2768. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2769. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2770. if Debounces.on == false then break end
  2771. wait()
  2772. end
  2773. for i = 1, 15 do
  2774. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2775. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2776. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2777. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2778. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2779. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2780. if Debounces.on == false then break end
  2781. wait()
  2782. end
  2783. for i = 1, 15 do
  2784. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2785. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2786. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2787. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2788. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2789. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2790. if Debounces.on == false then break end
  2791. wait()
  2792. end
  2793. for i = 1, 15 do
  2794. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2795. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2796. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2797. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2798. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2799. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2800. if Debounces.on == false then break end
  2801. wait()
  2802. end
  2803. for i = 1, 15 do
  2804. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2805. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2806. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2807. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2808. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2809. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2810. if Debounces.on == false then break end
  2811. wait()
  2812. end
  2813. wait(1.4)
  2814. Debounces.NoIdl = false
  2815. hum.WalkSpeed = 5
  2816. Debounces.on = false
  2817. wait()
  2818. if Debounces.CanAttack == false then
  2819. Debounces.CanAttack = true
  2820. v:Destroy()
  2821. end
  2822. end
  2823. end
  2824. end)
  2825. ----------------------------------------------------
  2826. mouse.KeyDown:connect(function(key)
  2827. if key == "m" then
  2828. hum.WalkSpeed = 0
  2829. if Debounces.CanAttack == true then
  2830. Debounces.CanAttack = false
  2831. Debounces.on = true
  2832. Debounces.NoIdl = true
  2833. --[[x = Instance.new("Sound",char)
  2834. x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  2835. x.Looped = false
  2836. x.Pitch = 1.1
  2837. x.Volume = 1
  2838. x:Play()
  2839. x2 = Instance.new("Sound",char)
  2840. x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  2841. x2.Looped = false
  2842. x2.Pitch = .7
  2843. x2.Volume = 1
  2844. wait(.1)
  2845. x:Play()
  2846. x2:Play()
  2847. for i = 1, 20 do
  2848. 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)
  2849. 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)
  2850. 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)
  2851. 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)
  2852. 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)
  2853. 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)
  2854. 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)
  2855. if Debounces.on == false then break end
  2856. wait()
  2857. x:Destroy()
  2858. x2:Destroy()
  2859. end
  2860. wait(1)]]--
  2861. local rng = Instance.new("Part", char)
  2862. rng.Anchored = true
  2863. rng.BrickColor = BrickColor.new("Really black")
  2864. rng.CanCollide = false
  2865. rng.FormFactor = 3
  2866. rng.Name = "Ring"
  2867. rng.Size = Vector3.new(1, 1, 1)
  2868. rng.Transparency = 0.35
  2869. rng.TopSurface = 0
  2870. rng.BottomSurface = 0
  2871. rng.Position = torso.Position - Vector3.new(0,2,0)
  2872. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2873. local rngm = Instance.new("SpecialMesh", rng)
  2874. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2875. rngm.Scale = Vector3.new(1, 1, 2)
  2876. x = Instance.new("Sound",char)
  2877. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2878. x.Looped = false
  2879. x.Pitch = .7
  2880. x.Volume = 1
  2881. x:Play()
  2882. coroutine.wrap(function()
  2883. for i = 1, 60, 2 do
  2884. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2885. rng.Transparency = i/60
  2886. wait()
  2887. end
  2888. wait()
  2889. rng:Destroy()
  2890. end)()
  2891. hum.WalkSpeed = 50
  2892. BV = Instance.new("BodyVelocity", torso)
  2893. BV.maxForce = Vector3.new(0,200000,0)
  2894. BV.P = 100000
  2895. BV.velocity = Vector3.new(0,800,0)
  2896. for i = 1, 20 do
  2897. 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)
  2898. 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)
  2899. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  2900. 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)
  2901. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  2902. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, 0, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  2903. 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)
  2904. if Debounces.on == false then break end
  2905. wait()
  2906. end
  2907. x:Destroy()
  2908. BV:Destroy()
  2909. --[[for i = 1, 30 do
  2910. 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)
  2911. 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)
  2912. 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)
  2913. 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)
  2914. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  2915. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  2916. if Debounces.on == false then break end
  2917. wait()
  2918. end]]--
  2919. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  2920. for i = 1, 30 do
  2921. 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)
  2922. 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)
  2923. 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.3)
  2924. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)), 0.3)
  2925. 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)
  2926. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  2927. 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)
  2928. if Debounces.on == false then break end
  2929. wait()
  2930. end
  2931. end
  2932. Debounces.on = false
  2933. Debounces.NoIdl = false
  2934. local ry,ht,ps=nil,nil,nil
  2935. while ht==nil do
  2936. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  2937. wait()
  2938. end
  2939. z = Instance.new("Sound",char)
  2940. z.SoundId = "rbxassetid://142070127"
  2941. z.Volume = 1
  2942. wait(.1)
  2943. z:Play()
  2944. Landing()
  2945. hum.WalkSpeed = 8
  2946. if Debounces.CanAttack == false then
  2947. Debounces.CanAttack = true
  2948. end
  2949. end
  2950. end
  2951. end)
  2952. ----------------------------------------------------
  2953. Grab = false
  2954. mouse.KeyDown:connect(function(key)
  2955. if key == "z" then
  2956. larm.BrickColor = BrickColor.new("Bright red")
  2957. rarm.BrickColor = BrickColor.new("Bright red")
  2958. Debounces.on = true
  2959. Debounces.NoIdl = true
  2960. if Grab == false then
  2961. gp = nil
  2962. con1=larm.Touched:connect(function(hit) -- this is grab
  2963. ht = hit.Parent
  2964. hum1=ht:FindFirstChild('Humanoid')
  2965. if hum1 ~= nil then
  2966. hum1.PlatformStand=true
  2967. gp = ht
  2968. Grab = true
  2969. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  2970. asd.Parent = larm
  2971. asd.Name = "asd"
  2972. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  2973. elseif hum1 == nil then
  2974. con1:disconnect()
  2975. wait() return
  2976. end
  2977. end)
  2978. for i = 1, 18 do
  2979. 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)
  2980. 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)
  2981. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  2982. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  2983. 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)
  2984. 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)
  2985. 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)
  2986. if Debounces.on == false then break end
  2987. wait()
  2988. end
  2989. con1:disconnect()
  2990. Debounces.on = false
  2991. Debounces.NoIdl = false
  2992. elseif Grab == true then
  2993. Grab = false
  2994. for i = 1, 20 do
  2995. 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)
  2996. 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)
  2997. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  2998. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  2999. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3000. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3001. 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)
  3002. if Debounces.on == false then end
  3003. wait()
  3004. end
  3005. if gp ~= nil then
  3006. for i,v in pairs(larm:GetChildren()) do
  3007. if v.Name == "asd" and v:IsA("Weld") then
  3008. v:Remove()
  3009. end
  3010. end
  3011. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  3012. bv.maxForce = Vector3.new(400000, 400000, 400000)
  3013. bv.P = 125000
  3014. bv.velocity = char.Head.CFrame.lookVector * 200
  3015. for i = 1, 12 do
  3016. 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)
  3017. if Debounces.on == false then end
  3018. wait()
  3019. end
  3020. ht=nil
  3021. Spawn(function()
  3022. wait(0.5)
  3023. bv:Destroy()
  3024. end)
  3025. Debounces.on = false
  3026. Debounces.NoIdl = false
  3027. elseif ht == nil then wait()
  3028. Grab = false
  3029. Debounces.on = false
  3030. Debounces.NoIdl = false
  3031. end
  3032. end
  3033. end
  3034. end)
  3035. mouse.KeyDown:connect(function(key)
  3036. if string.byte(key) == 52 then
  3037. char.Humanoid.WalkSpeed = 21
  3038. end
  3039. end)
  3040. mouse.KeyUp:connect(function(key)
  3041. if string.byte(key) == 52 then
  3042. char.Humanoid.WalkSpeed = 5
  3043. end
  3044. end)
  3045. ----------------------------------------------------
  3046. local animpose = "Idle"
  3047. local lastanimpose = "Idle"
  3048. local sine = 0
  3049. local change = 1
  3050. local val = 0
  3051. local ffing = false
  3052. ----------------------------------------------------
  3053. -------------------------------
  3054. game:GetService("RunService").RenderStepped:connect(function()
  3055. --[[if char.Humanoid.Jump == true then
  3056. jump = true
  3057. else
  3058. jump = false
  3059. end]]
  3060. char.Humanoid.FreeFalling:connect(function(f)
  3061. if f then
  3062. ffing = true
  3063. else
  3064. ffing = false
  3065. end
  3066. end)
  3067. sine = sine + change
  3068. if jumpn == true then
  3069. animpose = "Jumping"
  3070. elseif ffing == true then
  3071. animpose = "Freefalling"
  3072. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  3073. animpose = "Idle"
  3074. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3075. animpose = "Walking"
  3076. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3077. animpose = "Running"
  3078. end
  3079. if animpose ~= lastanimpose then
  3080. sine = 0
  3081. if Debounces.NoIdl == false then
  3082. if animpose == "Idle" then
  3083. for i = 1, 2 do
  3084. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(20)), 0.05)
  3085. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.05)
  3086. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3087. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3088. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3089. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3090. 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)
  3091. end
  3092. elseif animpose == "Walking" then
  3093. for i = 1, 2 do
  3094. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,1+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  3095. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  3096. hed.Weld.C0 = CFrame.new(0,4,-1.5)*CFrame.Angles(math.rad(-14-4*math.cos(sine/14)),0,0)
  3097. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(-8)), 0.4)
  3098. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(8)), 0.4)
  3099. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(1.2, 20, -.2) * CFrame.Angles(math.rad(-15),0, math.rad(0)), 0.05)
  3100. end
  3101. elseif animpose == "Running" then
  3102. for i = 1, 2 do
  3103. 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)
  3104. 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)
  3105. 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)
  3106. 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)
  3107. 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)
  3108. 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)
  3109. 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)
  3110. end
  3111. wait()
  3112. end
  3113. else
  3114. end
  3115. end
  3116. lastanimpose = animpose
  3117. if Debounces.NoIdl == false then
  3118. if animpose == "Idle" then
  3119. if stanceToggle == "Normal" then
  3120. change = 0.5
  3121. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(10+2*math.cos(sine/10)),math.rad(0),math.rad(20)), 0.2)
  3122. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(15),math.rad(5),math.rad(-20-2*math.cos(sine/14))), 0.2)
  3123. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/20)),math.rad(40),0), 0.2)
  3124. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1*math.cos(sine/20), 2) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  3125. 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)
  3126. 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)
  3127. 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)
  3128. elseif stanceToggle == "Sitting" then
  3129. 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)
  3130. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2, .9, -1)*CFrame.Angles(math.rad(78+1*math.cos(sine/14)), math.rad(0), math.rad(50)), 0.2)
  3131. 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)
  3132. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
  3133. 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)
  3134. 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)
  3135. 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)
  3136. end
  3137. elseif animpose == "Walking" then
  3138. if stanceToggle == "Normal" then
  3139. change = 1
  3140. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,1+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  3141. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  3142. hed.Weld.C0 = CFrame.new(0,3,-1.5)*CFrame.Angles(math.rad(-14-4*math.cos(sine/14)),0,0)
  3143. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(-8)), 0.4)
  3144. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(8)), 0.4)
  3145. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(1.2, 10, -.2) * CFrame.Angles(math.rad(-15),0, math.rad(0)), 0.05)
  3146. end
  3147. elseif animpose == "Running" then
  3148. change = 1
  3149. 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)
  3150. 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)
  3151. 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)
  3152. 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+10*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  3153. 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)
  3154. 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)
  3155. 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)
  3156. end
  3157. end
  3158. --[[if animpose == "Walking" then
  3159. if footsteps == false then
  3160. x:Play()
  3161. footsteps = true
  3162. end
  3163. x.Pitch = 1.1
  3164. elseif animpose == "Idle" then
  3165. x:Stop()
  3166. footsteps = false
  3167. elseif animpose == "Running" then
  3168. x.Pitch = 1.2
  3169. if footsteps == false then
  3170. x:Play()
  3171. footsteps = true
  3172. end
  3173. end]]--
  3174. end)
  3175.  
  3176.  
  3177.  
  3178. Player=game:GetService('Players').LocalPlayer
  3179. Character=Player.Character
  3180. Mouse=Player:GetMouse()
  3181. m=Instance.new('Model',Character)
  3182.  
  3183.  
  3184. local function weldBetween(a, b)
  3185. local weldd = Instance.new("ManualWeld")
  3186. weldd.Part0 = a
  3187. weldd.Part1 = b
  3188. weldd.C0 = CFrame.new()
  3189. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3190. weldd.Parent = a
  3191. return weldd
  3192. end
  3193.  
  3194. it=Instance.new
  3195.  
  3196. function nooutline(part)
  3197. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3198. end
  3199.  
  3200. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3201. local fp=it("Part")
  3202. fp.formFactor=formfactor
  3203. fp.Parent=parent
  3204. fp.Reflectance=reflectance
  3205. fp.Transparency=transparency
  3206. fp.CanCollide=false
  3207. fp.Locked=true
  3208. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3209. fp.Name=name
  3210. fp.Size=size
  3211. fp.Position=Character.Torso.Position
  3212. nooutline(fp)
  3213. fp.Material=material
  3214. fp:BreakJoints()
  3215. return fp
  3216. end
  3217.  
  3218. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3219. local mesh=it(Mesh)
  3220. mesh.Parent=part
  3221. if Mesh=="SpecialMesh" then
  3222. mesh.MeshType=meshtype
  3223. mesh.MeshId=meshid
  3224. end
  3225. mesh.Offset=offset
  3226. mesh.Scale=scale
  3227. return mesh
  3228. end
  3229.  
  3230. function weld(parent,part0,part1,c0,c1)
  3231. local weld=it("Weld")
  3232. weld.Parent=parent
  3233. weld.Part0=part0
  3234. weld.Part1=part1
  3235. weld.C0=c0
  3236. weld.C1=c1
  3237. return weld
  3238. end
  3239.  
  3240. Head=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Really black","Handle",Vector3.new(4.50989914, 4.5098958, 4.50989771))
  3241. Headweld=weld(m,Character["Head"],Head,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.019949913, -0.784425735, 0.342384338, 1, 0, 0, 0, 0.939693093, -0.342019022, 0, 0.342018992, 0.939693093))
  3242. mesh("SpecialMesh",Head,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=16952952",Vector3.new(0, 0, 0),Vector3.new(2.25494957, 2.2549479, 2.25494885))
  3243. Player=game:GetService('Players').LocalPlayer
  3244. Character=Player.Character
  3245. Mouse=Player:GetMouse()
  3246. m=Instance.new('Model',Character)
  3247.  
  3248.  
  3249. local function weldBetween(a, b)
  3250. local weldd = Instance.new("ManualWeld")
  3251. weldd.Part0 = a
  3252. weldd.Part1 = b
  3253. weldd.C0 = CFrame.new()
  3254. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3255. weldd.Parent = a
  3256. return weldd
  3257. end
  3258.  
  3259. it=Instance.new
  3260.  
  3261. function nooutline(part)
  3262. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3263. end
  3264.  
  3265. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3266. local fp=it("Part")
  3267. fp.formFactor=formfactor
  3268. fp.Parent=parent
  3269. fp.Reflectance=reflectance
  3270. fp.Transparency=transparency
  3271. fp.CanCollide=false
  3272. fp.Locked=true
  3273. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3274. fp.Name=name
  3275. fp.Size=size
  3276. fp.Position=Character.Torso.Position
  3277. nooutline(fp)
  3278. fp.Material=material
  3279. fp:BreakJoints()
  3280. return fp
  3281. end
  3282.  
  3283. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3284. local mesh=it(Mesh)
  3285. mesh.Parent=part
  3286. if Mesh=="SpecialMesh" then
  3287. mesh.MeshType=meshtype
  3288. mesh.MeshId=meshid
  3289. end
  3290. mesh.Offset=offset
  3291. mesh.Scale=scale
  3292. return mesh
  3293. end
  3294.  
  3295. function weld(parent,part0,part1,c0,c1)
  3296. local weld=it("Weld")
  3297. weld.Parent=parent
  3298. weld.Part0=part0
  3299. weld.Part1=part1
  3300. weld.C0=c0
  3301. weld.C1=c1
  3302. return weld
  3303. end
  3304.  
  3305. LArm=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(2.39230847, 1.27000177, 2.25777745))
  3306. LArmweld=weld(m,Character["Left Arm"],LArm,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0699939728, 0.124999046, -1.14440918e-005, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3307. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 4.16000175, 2.08000016))
  3308. Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.42499733, -0.0949978828, -7.62939453e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3309. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(2.39230847, 1.27000177, 2.25777745))
  3310. Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 1.45000315, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3311. LLeg=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","LLeg",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3312. LLegweld=weld(m,LArm,LLeg,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.450008392, -0.290473938, -1.11473179, 0, 0, 1, 1, 0, 0, 0, 1, 0))
  3313. mesh("SpecialMesh",LLeg,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3314. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Part",Vector3.new(1.97212684, 4.08000183, 1.9832561))
  3315. Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.155472755, -0.149731159, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3316. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3317. Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.822774887, -1.09854889, 1.52587891e-005, -0.984807849, 0.173647985, 0, 0.173647985, 0.984807849, 0, 0, 0, -1))
  3318. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3319. Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.789524078, 0.795269012, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3320. Player=game:GetService('Players').LocalPlayer
  3321. Character=Player.Character
  3322. Mouse=Player:GetMouse()
  3323. m=Instance.new('Model',Character)
  3324.  
  3325.  
  3326. local function weldBetween(a, b)
  3327. local weldd = Instance.new("ManualWeld")
  3328. weldd.Part0 = a
  3329. weldd.Part1 = b
  3330. weldd.C0 = CFrame.new()
  3331. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3332. weldd.Parent = a
  3333. return weldd
  3334. end
  3335.  
  3336. it=Instance.new
  3337.  
  3338. function nooutline(part)
  3339. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3340. end
  3341.  
  3342. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3343. local fp=it("Part")
  3344. fp.formFactor=formfactor
  3345. fp.Parent=parent
  3346. fp.Reflectance=reflectance
  3347. fp.Transparency=transparency
  3348. fp.CanCollide=false
  3349. fp.Locked=true
  3350. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3351. fp.Name=name
  3352. fp.Size=size
  3353. fp.Position=Character.Torso.Position
  3354. nooutline(fp)
  3355. fp.Material=material
  3356. fp:BreakJoints()
  3357. return fp
  3358. end
  3359.  
  3360. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3361. local mesh=it(Mesh)
  3362. mesh.Parent=part
  3363. if Mesh=="SpecialMesh" then
  3364. mesh.MeshType=meshtype
  3365. mesh.MeshId=meshid
  3366. end
  3367. mesh.Offset=offset
  3368. mesh.Scale=scale
  3369. return mesh
  3370. end
  3371.  
  3372. function weld(parent,part0,part1,c0,c1)
  3373. local weld=it("Weld")
  3374. weld.Parent=parent
  3375. weld.Part0=part0
  3376. weld.Part1=part1
  3377. weld.C0=c0
  3378. weld.C1=c1
  3379. return weld
  3380. end
  3381.  
  3382. RArm=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(2.39230847, 1.27000177, 2.25777745))
  3383. RArmweld=weld(m,Character["Right Arm"],RArm,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0500068665, 0.124999046, -1.14440918e-005, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3384. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(2.39230847, 1.27000177, 2.25777745))
  3385. Partweld=weld(m,RArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 1.45000315, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3386. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 4.16000175, 2.08000016))
  3387. Partweld=weld(m,RArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.54501152, -0.0949978828, -7.62939453e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3388. Player=game:GetService('Players').LocalPlayer
  3389. Character=Player.Character
  3390. Mouse=Player:GetMouse()
  3391. m=Instance.new('Model',Character)
  3392.  
  3393.  
  3394. local function weldBetween(a, b)
  3395. local weldd = Instance.new("ManualWeld")
  3396. weldd.Part0 = a
  3397. weldd.Part1 = b
  3398. weldd.C0 = CFrame.new()
  3399. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3400. weldd.Parent = a
  3401. return weldd
  3402. end
  3403.  
  3404. it=Instance.new
  3405.  
  3406. function nooutline(part)
  3407. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3408. end
  3409.  
  3410. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3411. local fp=it("Part")
  3412. fp.formFactor=formfactor
  3413. fp.Parent=parent
  3414. fp.Reflectance=reflectance
  3415. fp.Transparency=transparency
  3416. fp.CanCollide=false
  3417. fp.Locked=true
  3418. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3419. fp.Name=name
  3420. fp.Size=size
  3421. fp.Position=Character.Torso.Position
  3422. nooutline(fp)
  3423. fp.Material=material
  3424. fp:BreakJoints()
  3425. return fp
  3426. end
  3427.  
  3428. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3429. local mesh=it(Mesh)
  3430. mesh.Parent=part
  3431. if Mesh=="SpecialMesh" then
  3432. mesh.MeshType=meshtype
  3433. mesh.MeshId=meshid
  3434. end
  3435. mesh.Offset=offset
  3436. mesh.Scale=scale
  3437. return mesh
  3438. end
  3439.  
  3440. function weld(parent,part0,part1,c0,c1)
  3441. local weld=it("Weld")
  3442. weld.Parent=parent
  3443. weld.Part0=part0
  3444. weld.Part1=part1
  3445. weld.C0=c0
  3446. weld.C1=c1
  3447. return weld
  3448. end
  3449.  
  3450. RLeg=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3451. RLegweld=weld(m,Character["Right Leg"],RLeg,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.450008392, -0.269515991, -0.949736118, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  3452. mesh("SpecialMesh",RLeg,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3453. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3454. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.00201035, 1.44436717, 0.57000351, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  3455. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3456. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.542831421, 0.283806801, 0.569999695, 0, -0.866025388, 0.500000238, 0, 0.500000179, 0.866025329, -1, 0, 0))
  3457. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Part",Vector3.new(1.97212684, 4.0700016, 1.9832561))
  3458. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.254991531, 0.96000123, -0.450004578, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  3459. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3460. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.06000137, 1.91000128, -0.449989319, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  3461. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3462. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.895587921, 0.0462193489, -0.450004578, 0, -0.984807849, 0.173647985, 0, 0.173647985, 0.984807849, -1, 0, 0))
  3463. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3464. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00769901276, 0.173805237, 0.593242645, -0.150384068, -0.852868438, 0.500000238, 0.0868240222, 0.492404103, 0.866025329, -0.984807789, 0.173648432, -2.60770406e-007))
  3465. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3466. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.470241547, 1.62436724, 0.593242645, -0.173647985, -0.984807849, 0, 0, 0, 1, -0.984807849, 0.173647985, 0))
  3467. Player=game:GetService('Players').LocalPlayer
  3468. Character=Player.Character
  3469. Mouse=Player:GetMouse()
  3470. m=Instance.new('Model',Character)
  3471.  
  3472.  
  3473. local function weldBetween(a, b)
  3474. local weldd = Instance.new("ManualWeld")
  3475. weldd.Part0 = a
  3476. weldd.Part1 = b
  3477. weldd.C0 = CFrame.new()
  3478. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3479. weldd.Parent = a
  3480. return weldd
  3481. end
  3482.  
  3483. it=Instance.new
  3484.  
  3485. function nooutline(part)
  3486. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3487. end
  3488.  
  3489. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3490. local fp=it("Part")
  3491. fp.formFactor=formfactor
  3492. fp.Parent=parent
  3493. fp.Reflectance=reflectance
  3494. fp.Transparency=transparency
  3495. fp.CanCollide=false
  3496. fp.Locked=true
  3497. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3498. fp.Name=name
  3499. fp.Size=size
  3500. fp.Position=Character.Torso.Position
  3501. nooutline(fp)
  3502. fp.Material=material
  3503. fp:BreakJoints()
  3504. return fp
  3505. end
  3506.  
  3507. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3508. local mesh=it(Mesh)
  3509. mesh.Parent=part
  3510. if Mesh=="SpecialMesh" then
  3511. mesh.MeshType=meshtype
  3512. mesh.MeshId=meshid
  3513. end
  3514. mesh.Offset=offset
  3515. mesh.Scale=scale
  3516. return mesh
  3517. end
  3518.  
  3519. function weld(parent,part0,part1,c0,c1)
  3520. local weld=it("Weld")
  3521. weld.Parent=parent
  3522. weld.Part0=part0
  3523. weld.Part1=part1
  3524. weld.C0=c0
  3525. weld.C1=c1
  3526. return weld
  3527. end
  3528.  
  3529. Torso=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Handle",Vector3.new(2.03212667, 4.08000183, 2.04325604))
  3530. Torsoweld=weld(m,Character["Torso"],Torso,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.044511795, 0.0452680588, 0.0299835205, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3531. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
  3532. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.991963387, 0.394999981, -0.990013123, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3533. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.05393803, 4.16000175, 2.08000016))
  3534. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.43049431, -0.0152668953, -0.0299987793, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3535. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
  3536. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.07803631, 0.394999981, -0.990009308, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3537. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(2.43393803, 4.46000195, 2.11000013))
  3538. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0449981689, 0.119999886, 0.0149841309, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3539. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 4.16000175, 2.08000016))
  3540. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.48950481, -0.0152668953, -0.0299835205, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3541. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
  3542. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.708036423, 0.585000515, -0.990009308, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3543. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
  3544. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.571961403, 0.585000515, -0.990013123, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3545. Player=game:GetService('Players').LocalPlayer
  3546. Character=Player.Character
  3547. Mouse=Player:GetMouse()
  3548. m=Instance.new('Model',Character)
  3549.  
  3550.  
  3551. local function weldBetween(a, b)
  3552. local weldd = Instance.new("ManualWeld")
  3553. weldd.Part0 = a
  3554. weldd.Part1 = b
  3555. weldd.C0 = CFrame.new()
  3556. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3557. weldd.Parent = a
  3558. return weldd
  3559. end
  3560.  
  3561. it=Instance.new
  3562.  
  3563. function nooutline(part)
  3564. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3565. end
  3566.  
  3567. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3568. local fp=it("Part")
  3569. fp.formFactor=formfactor
  3570. fp.Parent=parent
  3571. fp.Reflectance=reflectance
  3572. fp.Transparency=transparency
  3573. fp.CanCollide=false
  3574. fp.Locked=true
  3575. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3576. fp.Name=name
  3577. fp.Size=size
  3578. fp.Position=Character.Torso.Position
  3579. nooutline(fp)
  3580. fp.Material=material
  3581. fp:BreakJoints()
  3582. return fp
  3583. end
  3584.  
  3585. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3586. local mesh=it(Mesh)
  3587. mesh.Parent=part
  3588. if Mesh=="SpecialMesh" then
  3589. mesh.MeshType=meshtype
  3590. mesh.MeshId=meshid
  3591. end
  3592. mesh.Offset=offset
  3593. mesh.Scale=scale
  3594. return mesh
  3595. end
  3596.  
  3597. function weld(parent,part0,part1,c0,c1)
  3598. local weld=it("Weld")
  3599. weld.Parent=parent
  3600. weld.Part0=part0
  3601. weld.Part1=part1
  3602. weld.C0=c0
  3603. weld.C1=c1
  3604. return weld
  3605. end
  3606.  
  3607. LLeg=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3608. LLegweld=weld(m,Character["Left Leg"],LLeg,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.450004578, -0.240491867, -0.949736118, 0, 0, 1, 1, 0, 0, 0, 1, 0))
  3609. mesh("SpecialMesh",LLeg,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3610. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Part",Vector3.new(1.97212684, 4.08000183, 1.9832561))
  3611. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.135001183, 0.965001106, -0.450008392, 0, 1, 0, 0, 0, 1, 1, 0, 0))
  3612. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3613. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.07999802, 1.91000128, 0.450008392, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  3614. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3615. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.91526413, 0.0496888161, 0.450023651, 0, -0.984807849, 0.173647985, 0, 0.173647985, 0.984807849, -1, 0, 0))
  3616. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3617. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.1345892, 1.44436717, -0.569984436, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  3618. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3619. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.657648087, 0.350095749, -0.569992065, 0, -0.866025388, 0.500000238, 0, 0.500000179, 0.866025329, -1, 0, 0))
  3620. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3621. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.754587173, 1.624367, -0.569984436, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  3622. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3623. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.238555908, 0.315980911, -0.569992065, 0, -0.866025388, 0.500000238, 0, 0.500000179, 0.866025329, -1, 0, 0))
  3624.  
  3625. Player=game:GetService('Players').LocalPlayer
  3626. Character=Player.Character
  3627. Mouse=Player:GetMouse()
  3628. m=Instance.new('Model',Character)
  3629.  
  3630.  
  3631. local function weldBetween(a, b)
  3632. local weldd = Instance.new("ManualWeld")
  3633. weldd.Part0 = a
  3634. weldd.Part1 = b
  3635. weldd.C0 = CFrame.new()
  3636. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3637. weldd.Parent = a
  3638. return weldd
  3639. end
  3640.  
  3641. it=Instance.new
  3642.  
  3643. function nooutline(part)
  3644. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3645. end
  3646.  
  3647. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3648. local fp=it("Part")
  3649. fp.formFactor=formfactor
  3650. fp.Parent=parent
  3651. fp.Reflectance=reflectance
  3652. fp.Transparency=transparency
  3653. fp.CanCollide=false
  3654. fp.Locked=true
  3655. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3656. fp.Name=name
  3657. fp.Size=size
  3658. fp.Position=Character.Torso.Position
  3659. nooutline(fp)
  3660. fp.Material=material
  3661. fp:BreakJoints()
  3662. return fp
  3663. end
  3664.  
  3665. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3666. local mesh=it(Mesh)
  3667. mesh.Parent=part
  3668. if Mesh=="SpecialMesh" then
  3669. mesh.MeshType=meshtype
  3670. mesh.MeshId=meshid
  3671. end
  3672. mesh.Offset=offset
  3673. mesh.Scale=scale
  3674. return mesh
  3675. end
  3676.  
  3677. function weld(parent,part0,part1,c0,c1)
  3678. local weld=it("Weld")
  3679. weld.Parent=parent
  3680. weld.Part0=part0
  3681. weld.Part1=part1
  3682. weld.C0=c0
  3683. weld.C1=c1
  3684. return weld
  3685. end
  3686.  
  3687. Orb=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0.5,"Institutional white","Handle",Vector3.new(3.20000124, 3.20000124, 3.20000124))
  3688. Orb.Shape = "Ball"
  3689. Orbweld=weld(m,Character["Left Arm"],Orb,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.319931984, 3.51501703, -0.0999984741, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3690. Orb.Transparency = 0
  3691. ----------------------------------------------------
  3692. Player=game:GetService('Players').LocalPlayer
  3693. Character=Player.Character
  3694. Mouse=Player:GetMouse()
  3695. m=Instance.new('Model',Character)
  3696.  
  3697.  
  3698. local function weldBetween(a, b)
  3699. local weldd = Instance.new("ManualWeld")
  3700. weldd.Part0 = a
  3701. weldd.Part1 = b
  3702. weldd.C0 = CFrame.new()
  3703. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3704. weldd.Parent = a
  3705. return weldd
  3706. end
  3707.  
  3708. it=Instance.new
  3709.  
  3710. function nooutline(part)
  3711. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3712. end
  3713.  
  3714. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3715. local fp=it("Part")
  3716. fp.formFactor=formfactor
  3717. fp.Parent=parent
  3718. fp.Reflectance=reflectance
  3719. fp.Transparency=transparency
  3720. fp.CanCollide=false
  3721. fp.Locked=true
  3722. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3723. fp.Name=name
  3724. fp.Size=size
  3725. fp.Position=Character.Torso.Position
  3726. nooutline(fp)
  3727. fp.Material=material
  3728. fp:BreakJoints()
  3729. return fp
  3730. end
  3731.  
  3732. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3733. local mesh=it(Mesh)
  3734. mesh.Parent=part
  3735. if Mesh=="SpecialMesh" then
  3736. mesh.MeshType=meshtype
  3737. mesh.MeshId=meshid
  3738. end
  3739. mesh.Offset=offset
  3740. mesh.Scale=scale
  3741. return mesh
  3742. end
  3743.  
  3744. function weld(parent,part0,part1,c0,c1)
  3745. local weld=it("Weld")
  3746. weld.Parent=parent
  3747. weld.Part0=part0
  3748. weld.Part1=part1
  3749. weld.C0=c0
  3750. weld.C1=c1
  3751. return weld
  3752. end
  3753.  
  3754. WIngs=part(Enum.FormFactor.Symmetric,m,Enum.Material.DiamondPlate,0,0,"Lily white","Handle",Vector3.new(0.526163042, 0.373031557, 0.931079745))
  3755. WIngsweld=weld(m,Character["Torso"],WIngs,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.0159111, -1.20853615, -6.0207634, 0.866024971, 0.250001013, -0.433012992, -0.326577812, 0.938599944, -0.111252062, 0.378612816, 0.237759501, 0.894495845))
  3756. mesh("BlockMesh",WIngs,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.429282606, 1))
  3757. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3758. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0145301819, -1.5309906, 1.12540245, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.187036917, 0.982352853, -3.7252903e-009, -0.982352912, -0.187036932))
  3759. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3760. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3761. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.012840271, -2.20268631, 1.11525655, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.187036917, 0.982352853, -3.7252903e-009, -0.982352912, -0.187036932))
  3762. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3763. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3764. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128250122, 1.69621086, 2.74610329, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.329198927, -0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  3765. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3766. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3767. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128326416, 3.14628506, 2.63505173, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.757224739, -0.653154373, 2.98023224e-008, -0.653154373, 0.757224917))
  3768. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3769. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3770. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128250122, 1.01108551, 2.51173878, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, -0.0735907629, -0.997288585, 0, -0.997288525, 0.0735907704))
  3771. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3772. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3773. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128250122, 0.396331787, 2.11554885, -1, 1.86264515e-008, 5.96046448e-008, 0, 0.187033802, -0.982353449, -7.4505806e-009, -0.982353449, -0.187033832))
  3774. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3775. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3776. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128250122, -0.0868225098, 1.57054901, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.434913546, -0.900472343, 0, -0.900472283, -0.434913576))
  3777. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3778. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3779. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128173828, 2.42856979, 2.78783226, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, -0.562374592, -0.82688272, 0, -0.826882541, 0.562374532))
  3780. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3781. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3782. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128173828, -0.416015625, 0.917181015, -1, 1.86264515e-008, 5.96046448e-008, -5.96046448e-008, 0.653154254, -0.757224917, 1.49011612e-008, -0.757224798, -0.653154254))
  3783. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3784. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3785. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128173828, 0.159194946, -1.12555099, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, 0.187036917, -0.982352853, 3.7252903e-009, 0.982352912, 0.187036932))
  3786. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3787. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3788. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140304565, -3.38129997, -2.7243309, -1, 1.86264515e-008, 5.96046448e-008, 0, 0.329198927, 0.944260657, -1.49011612e-008, 0.944260657, -0.329198956))
  3789. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3790. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3791. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140457153, 1.33783531, 2.71401596, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.329198927, -0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  3792. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3793. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.DiamondPlate,0,0,"Lily white","Part",Vector3.new(0.526163042, 0.373031557, 0.931079745))
  3794. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.78812122, 1.92715263, -2.28927612, 0.49999845, -0.565649092, 0.655776381, 0.565651298, 0.786692977, 0.24729073, -0.655774534, 0.247295752, 0.713305533))
  3795. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.429282606, 1))
  3796. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3797. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80215645, 2.86511993, 0.140659332, -0.49999845, 0.565649092, -0.655776381, 0.433012724, -0.492487878, -0.754954159, -0.750001132, -0.661435425, 0.00130999088))
  3798. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3799. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3800. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80046654, -4.2369194, -0.140804291, -0.49999845, 0.565649092, -0.655776381, -0.433012724, 0.492487878, 0.754954159, 0.750001132, 0.661435425, -0.00130999088))
  3801. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3802. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3803. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80215645, -4.90860367, -0.150947571, -0.49999845, 0.565649092, -0.655776381, -0.433012724, 0.492487878, 0.754954159, 0.750001132, 0.661435425, -0.00130999088))
  3804. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3805. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3806. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80265999, -4.14035034, -0.33956337, 0.49999845, -0.565649092, 0.655776381, -0.750000596, 0.0957893208, 0.654464483, -0.433013558, -0.819063783, -0.376342565))
  3807. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3808. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3809. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80095482, 3.22347641, 0.17275238, -0.49999845, 0.565649092, -0.655776381, 0.433012724, -0.492487878, -0.754954159, -0.750001132, -0.661435425, 0.00130999088))
  3810. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3811. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3812. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094624, -4.81201553, -0.349707603, 0.49999845, -0.565649092, 0.655776381, -0.750000596, 0.0957893208, 0.654464483, -0.433013558, -0.819063783, -0.376342565))
  3813. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3814. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3815. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094624, 2.76852798, 0.339404106, 0.49999845, -0.565649092, 0.655776381, 0.750000596, -0.0957893208, -0.654464483, 0.433013558, 0.819063783, 0.376342565))
  3816. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3817. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3818. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80095482, 3.18227959, -0.357192993, -0.49999845, 0.565649092, -0.655776381, -2.98023224e-007, -0.757224619, -0.653154492, -0.866026402, -0.326576054, 0.378611445))
  3819. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3820. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3821. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80094719, 3.23778915, -0.0931434631, -0.49999845, 0.565649092, -0.655776381, 0.224142939, -0.646899283, -0.728890419, -0.836517453, -0.511431754, 0.196662545))
  3822. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3823. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3824. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80093193, 3.15235138, 0.421354294, -0.49999845, 0.565649092, -0.655776381, 0.612372398, -0.304515153, -0.729568839, -0.61237365, -0.766362667, -0.194130719))
  3825. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3826. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3827. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80095387, 3.00566101, 0.650568962, -0.49999845, 0.565649092, -0.655776381, 0.749999642, -0.0957909003, -0.654465079, -0.433014959, -0.819063544, -0.376341343))
  3828. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3829. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3830. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80094147, 2.81278229, 0.830840111, -0.49999845, 0.565649092, -0.655776381, 0.836516857, 0.119463086, -0.534760058, -0.224145442, -0.815947115, -0.532906353))
  3831. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3832. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3833. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80094433, 2.57622147, 0.953166008, -0.49999845, 0.565649092, -0.655776381, 0.866026282, 0.326575905, -0.378611505, -4.32133675e-007, -0.757224679, -0.653154492))
  3834. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3835. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3836. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128326416, 0.963986397, 2.83012009, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.997288585, -0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
  3837. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3838. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3839. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128173828, -3.00747108, -2.84039688, 1, -1.86264515e-008, -5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, -2.98023224e-008, -0.0735884532, -0.997288704))
  3840. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3841. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3842. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128250122, 3.25563431, 2.63391113, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.757224739, 0.653154373, 2.98023224e-008, -0.653154373, 0.757224917))
  3843. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3844. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3845. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128440857, 2.53445959, 2.8150177, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.900472701, 0.434912592, 0, -0.434912592, 0.90047276))
  3846. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3847. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3848. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128326416, 1.79145408, 2.79978943, 1, -1.86264515e-008, -5.96046448e-008, 5.58793545e-009, 0.982353508, 0.187033504, 0, -0.187033504, 0.982353628))
  3849. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3850. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3851. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128364563, -0.414859772, 1.02649212, 1, -1.86264515e-008, -5.96046448e-008, -5.96046448e-008, 0.653154254, -0.757224917, -1.49011612e-008, 0.757224798, 0.653154254))
  3852. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3853. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3854. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128326416, 0.451953888, 2.2096405, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.94426012, -0.329200208, 2.98023224e-008, 0.329200208, 0.94426012))
  3855. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3856. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3857. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128364563, 1.08917046, 2.58826447, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.997288585, -0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
  3858. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3859. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3860. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128173828, -0.057434082, 1.67582893, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.826882601, -0.562374711, 0, 0.562374711, 0.82688272))
  3861. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3862. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3863. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140419006, -1.82085991, 1.02886391, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, -0.826881826, 0.562375784, 5.96046448e-008, 0.562375724, 0.826881766))
  3864. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3865. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3866. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.014541626, -2.33579445, -2.83024597, 1, -1.86264515e-008, -5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, -2.98023224e-008, -0.0735884532, -0.997288704))
  3867. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3868. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3869. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0123214722, -1.149189, 1.03900719, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, -0.826881826, 0.562375784, 5.96046448e-008, 0.562375724, 0.826881766))
  3870. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3871. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3872. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.01404953, -0.222623825, -1.03916359, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.826881826, -0.562375784, -5.96046448e-008, -0.562375724, -0.826881766))
  3873. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3874. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3875. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80045509, -4.03017044, 0.229810715, -0.49999845, 0.565649092, -0.655776381, -0.836517692, -0.511431158, 0.196663141, -0.224142194, 0.6468997, 0.7288903))
  3876. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3877. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3878. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094051, 3.2564106, 0.190433502, 0.49999845, -0.565649092, 0.655776381, 0.433015227, 0.819063604, 0.376341105, -0.749999583, 0.0957911685, 0.654465318))
  3879. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3880. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3881. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80093765, 3.05438042, 0.688827515, 0.49999845, -0.565649092, 0.655776381, 0.612375081, 0.766361952, 0.194129199, -0.612371087, 0.304516733, 0.729569316))
  3882. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3883. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3884. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80093765, 3.21963882, -0.358337402, 0.49999845, -0.565649092, 0.655776381, 2.98023224e-007, 0.757224619, 0.653154492, -0.866026402, -0.326576054, 0.378611445))
  3885. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3886. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3887. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80095196, 3.27416515, -0.0845680237, 0.49999845, -0.565649092, 0.655776381, 0.224145487, 0.815947115, 0.532906294, -0.836516857, -0.119463041, 0.534760058))
  3888. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3889. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3890. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094719, 2.57737732, 0.990515709, 0.49999845, -0.565649092, 0.655776381, 0.866026282, 0.326575905, -0.378611505, 4.32133675e-007, 0.757224679, 0.653154492))
  3891. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3892. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3893. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094624, 3.0253334, 0.682353973, 0.49999845, -0.565649092, 0.655776381, 0.75000155, 0.66143465, -0.00131103396, -0.433011711, 0.492488772, 0.7549541))
  3894. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3895. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3896. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.8026638, -4.42617226, -0.68901062, 0.49999845, -0.565649092, 0.655776381, -0.612375081, -0.766361952, -0.194129199, 0.612371087, -0.304516733, -0.729569316))
  3897. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3898. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3899. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80093575, -5.09785843, -0.699146271, 0.49999845, -0.565649092, 0.655776381, -0.612375081, -0.766361952, -0.194129199, 0.612371087, -0.304516733, -0.729569316))
  3900. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3901. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3902. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094624, 2.8235321, 0.866632462, 0.49999845, -0.565649092, 0.655776381, 0.836517394, 0.511432052, -0.196662098, -0.224143416, 0.646898985, 0.728890657))
  3903. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3904. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3905. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80217552, -4.70182419, 0.219669342, -0.49999845, 0.565649092, -0.655776381, -0.836517692, -0.511431158, 0.196663141, -0.224142194, 0.6468997, 0.7288903))
  3906. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3907. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3908. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80096149, 3.17957115, 0.446971893, 0.49999845, -0.565649092, 0.655776381, 0.612375081, 0.766361952, 0.194129199, -0.612371087, 0.304516733, 0.729569316))
  3909. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3910. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3911. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216312, 2.65835953, -0.229951859, -0.49999845, 0.565649092, -0.655776381, 0.836517692, 0.511431158, -0.196663141, 0.224142194, -0.6468997, -0.7288903))
  3912. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3913. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3914. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0123329163, -2.7096405, -2.71417046, -1, 1.86264515e-008, 5.96046448e-008, 0, 0.329198927, 0.944260657, -1.49011612e-008, 0.944260657, -0.329198956))
  3915. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3916. Part=part(Enum.FormFactor.Brick,m,Enum.Material.DiamondPlate,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.518153846, 1.07062769))
  3917. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000423431396, 0.000568389893, 0.0205516815, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  3918. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3919. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  3920. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.397033691, 0.00685501099, 0.361976624, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  3921. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  3922. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.33570647, 0.502140284, 1.85872841))
  3923. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000408172607, 0.000564575195, 0.0234174728, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  3924. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3925. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.507859409, 1.26050401))
  3926. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000427246094, 0.00227355957, 0.0205459595, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  3927. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3928. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.497564912, 2.28537822))
  3929. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000438690186, 0.00173950195, 0.0229845047, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  3930. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3931. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  3932. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146331787, -3.40140152, -1.11369061, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, -0.187036917, 0.982352853, 3.7252903e-009, 0.982352912, 0.187036932))
  3933. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3934. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  3935. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146255493, 1.63386917, 1.11945939, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.187036917, -0.982352853, -3.7252903e-009, -0.982352912, -0.187036932))
  3936. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3937. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  3938. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122375488, -6.76598835, 0.57843399, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, 0.608101726, 0.793859124, 0, -0.793859184, 0.608101785))
  3939. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3940. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  3941. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.385643005, 0.0125732422, -0.371212006, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  3942. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  3943. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  3944. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0115966797, -0.543251038, 1.7864542, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.434913546, 0.900472343, 0, -0.900472283, -0.434913576))
  3945. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3946. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  3947. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0116043091, -1.59219742, 2.67541885, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, 0.0735907629, 0.997288585, 0, -0.997288525, 0.0735907704))
  3948. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  3949. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  3950. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0115814209, -2.22006989, 2.7550087, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.329198927, 0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  3951. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  3952. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  3953. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.011592865, -1.02312088, 2.25215411, 1, -1.86264515e-008, -5.96046448e-008, 0, -0.187033802, 0.982353449, -7.4505806e-009, -0.982353449, -0.187033832))
  3954. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3955. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.70316744))
  3956. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0116004944, -0.851036072, 0.823085785, 1, -1.86264515e-008, -5.96046448e-008, 5.96046448e-008, -0.653154254, 0.757224917, 1.49011612e-008, -0.757224798, -0.653154254))
  3957. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3958. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 2.33112097, 0.885326684))
  3959. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0116004944, -4.12805939, 3.14675999, -1, 1.86264515e-008, 5.96046448e-008, -5.96046448e-008, 0.653154254, -0.757224917, 1.49011612e-008, -0.757224798, -0.653154254))
  3960. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3961. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  3962. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0146331787, -1.75381827, 0.0856170654, 1, -1.86264515e-008, -5.96046448e-008, 5.58793545e-009, 0.982353508, 0.187033504, 0, -0.187033504, 0.982353628))
  3963. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3964. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  3965. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146331787, -1.7653625, 1.58002472, -1, 1.86264515e-008, 5.96046448e-008, 5.58793545e-009, 0.982353508, 0.187033504, 0, 0.187033504, -0.982353628))
  3966. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  3967. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  3968. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146217346, 1.84269714, 2.61419201, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, 0.484992713, -0.874518216, 0, -0.874518156, -0.484992743))
  3969. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3970. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  3971. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, -1.39143753, -1.12134099, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, -0.187036917, 0.982352853, 3.7252903e-009, 0.982352912, 0.187036932))
  3972. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3973. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  3974. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146255493, -4.44521141, -2.69960213, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, -0.484992713, 0.874518216, 0, 0.874518156, 0.484992743))
  3975. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3976. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  3977. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0146102905, -1.24437332, -1.12705016, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, 0.187036917, -0.982352853, 3.7252903e-009, 0.982352912, 0.187036932))
  3978. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3979. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  3980. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.012260437, 2.08576965, -1.09300995, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.94426012, 0.329200208, 2.98023224e-008, 0.329200208, 0.94426012))
  3981. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3982. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  3983. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122528076, 2.07419205, 2.7586441, 1, -1.86264515e-008, -5.96046448e-008, -1.49011612e-008, -0.94426012, 0.329200208, -2.98023224e-008, -0.329200208, -0.94426012))
  3984. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  3985. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  3986. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122528076, 2.81254005, -2.72010994, 1, -1.86264515e-008, -5.96046448e-008, 0, -0.329198927, -0.944260657, -1.49011612e-008, 0.944260657, -0.329198956))
  3987. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3988. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  3989. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0122528076, -0.0657215118, 2.71253204, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.329198927, -0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  3990. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3991. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  3992. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122528076, -4.58002281, 2.72588158, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.329198927, 0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  3993. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3994. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  3995. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122489929, -2.57005119, 2.71822929, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.329198927, 0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  3996. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3997. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  3998. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122451782, 4.16341972, -0.663871765, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, -0.608101726, -0.793859124, 0, 0.793859184, -0.608101785))
  3999. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4000. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.76950121, 0.741203785))
  4001. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0115814209, -4.30217743, 3.24400997, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.627695382, -0.778459072, -1.49011612e-008, -0.778458953, -0.627695441))
  4002. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4003. Part=part(Enum.FormFactor.Brick,m,Enum.Material.DiamondPlate,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.518153846, 1.07062769))
  4004. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.99267197, 4.78870678, -0.0154352188, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4005. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4006. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  4007. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.59518433, 4.79498959, 0.32599926, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4008. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  4009. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.33570647, 0.502140284, 1.85872841))
  4010. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.99268341, 4.7886982, -0.0125761032, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4011. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4012. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.507859409, 1.26050401))
  4013. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.99270248, 4.79042339, -0.0154447556, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4014. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4015. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.497564912, 2.28537822))
  4016. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.99266815, 4.78983879, -0.0129785538, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4017. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4018. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4019. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80036545, 4.80890846, 2.25815582, 0.49999845, -0.565649092, 0.655776381, 0.176621437, -0.674706042, -0.716642678, 0.847824514, 0.474144399, -0.237446278))
  4020. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4021. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4022. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037117, -4.09732819, 0.144859314, 0.49999845, -0.565649092, 0.655776381, -0.433012724, 0.492487878, 0.754954159, -0.750001132, -0.661435425, 0.00130999088))
  4023. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4024. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4025. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037403, -6.10728073, 0.152519226, 0.49999845, -0.565649092, 0.655776381, -0.433012724, 0.492487878, 0.754954159, -0.750001132, -0.661435425, 0.00130999088))
  4026. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4027. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4028. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037498, -0.499183655, 4.28593826, 0.49999845, -0.565649092, 0.655776381, -0.75000155, -0.66143465, 0.00131103396, 0.433011711, -0.492488772, -0.7549541))
  4029. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4030. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4031. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.802742, 1.36500931, 0.337909698, 0.49999845, -0.565649092, 0.655776381, 0.750000596, -0.0957893208, -0.654464483, 0.433013558, 0.819063783, 0.376342565))
  4032. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4033. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4034. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80034828, 1.46158218, 0.139152527, -0.49999845, 0.565649092, -0.655776381, 0.433012724, -0.492487878, -0.754954159, -0.750001132, -0.661435425, 0.00130999088))
  4035. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4036. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4037. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80037212, -0.487609863, -2.62030792, -0.49999845, 0.565649092, -0.655776381, -0.75000155, -0.66143465, 0.00131103396, -0.433011711, 0.492488772, 0.7549541))
  4038. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4039. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4040. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80035973, 4.33980179, -0.146759033, 0.49999845, -0.565649092, 0.655776381, 0.433012724, -0.492487878, -0.754954159, 0.750001132, 0.661435425, -0.00130999088))
  4041. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4042. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4043. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037403, -7.41146851, -2.34357452, 0.49999845, -0.565649092, 0.655776381, -0.176621437, 0.674706042, 0.716642678, -0.847824514, -0.474144399, 0.237446278))
  4044. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4045. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4046. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.8027401, 4.77935791, 2.0391655, -0.49999845, 0.565649092, -0.655776381, 0.847824097, 0.16527845, -0.50386256, -0.176623657, -0.807913423, -0.562209845))
  4047. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4048. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4049. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80274773, -0.288840294, -2.52373123, 0.49999845, -0.565649092, 0.655776381, 0.433015227, 0.819063604, 0.376341105, -0.749999583, 0.0957911685, 0.654465318))
  4050. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4051. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  4052. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.60663605, 4.80071163, -0.407197952, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4053. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  4054. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4055. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80274963, -0.300402641, 4.18932724, -0.49999845, 0.565649092, -0.655776381, 0.433015227, 0.819063604, 0.376341105, 0.749999583, -0.0957911685, -0.654465318))
  4056. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4057. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4058. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80271721, -4.00077438, 0.34360981, -0.49999845, 0.565649092, -0.655776381, -0.750000596, 0.0957893208, 0.654464483, 0.433013558, 0.819063783, 0.376342565))
  4059. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4060. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4061. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.802742, 4.24324417, -0.345514297, -0.49999845, 0.565649092, -0.655776381, 0.750000596, -0.0957893208, -0.654464483, -0.433013558, -0.819063783, -0.376342565))
  4062. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4063. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4064. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80274391, -7.38192749, -2.1245718, -0.49999845, 0.565649092, -0.655776381, -0.847824097, -0.16527845, 0.50386256, 0.176623657, 0.807913423, 0.562209845))
  4065. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4066. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  4067. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.79971504, -3.44285583, 1.04676247, 0.49999845, -0.565649092, 0.655776381, -0.836516857, -0.119463086, 0.534760058, -0.224145442, -0.815947115, -0.532906353))
  4068. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4069. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  4070. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.79971695, -3.73348618, 0.58502388, 0.49999845, -0.565649092, 0.655776381, -0.612372398, 0.304515153, 0.729568839, -0.61237365, -0.766362667, -0.194130719))
  4071. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  4072. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4073. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.802742, -6.01073456, 0.351270676, -0.49999845, 0.565649092, -0.655776381, -0.750000596, 0.0957893208, 0.654464483, 0.433013558, 0.819063783, 0.376342565))
  4074. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4075. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  4076. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.79972649, -3.63246918, 0.787195206, 0.49999845, -0.565649092, 0.655776381, -0.749999642, 0.0957909003, 0.654465079, -0.433014959, -0.819063544, -0.376341343))
  4077. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4078. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.76950121, 0.741203785))
  4079. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.79971886, -1.31037903, 3.18079185, -0.49999845, 0.565649092, -0.655776381, 0.865550399, 0.301296592, -0.400053799, -0.0287068337, -0.767633677, -0.640245616))
  4080. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4081. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 2.33112097, 0.885326684))
  4082. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.79972172, -1.1358223, 3.18273926, -0.49999845, 0.565649092, -0.655776381, 0.866026282, 0.326575905, -0.378611505, -4.32133675e-007, -0.757224679, -0.653154492))
  4083. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4084. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  4085. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.7997303, -3.74736404, 0.181629181, 0.49999845, -0.565649092, 0.655776381, -0.433012724, 0.492487878, 0.754954159, -0.750001132, -0.661435425, 0.00130999088))
  4086. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  4087. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.70316744))
  4088. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.79971409, -3.84326553, 0.859061241, 0.49999845, -0.565649092, 0.655776381, -0.866026282, -0.326575905, 0.378611505, -4.32133675e-007, -0.757224679, -0.653154492))
  4089. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4090. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4091. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0146179199, -0.439552307, 2.82862473, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.997288585, -0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
  4092. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4093. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4094. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146255493, 2.43866539, -2.83621216, -1, 1.86264515e-008, 5.96046448e-008, 1.49011612e-008, 0.997288585, -0.073588416, -2.98023224e-008, -0.0735884532, -0.997288704))
  4095. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4096. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4097. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, 2.19028473, 2.38479328, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, 0.0735907629, 0.997288585, 0, 0.997288525, -0.0735907704))
  4098. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4099. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4100. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0146331787, 2.20183945, -0.719162941, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, 0.0735907629, 0.997288585, 0, -0.997288525, 0.0735907704))
  4101. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4102. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  4103. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140457153, -2.31531954, 2.80868149, -1, 1.86264515e-008, 5.96046448e-008, -5.58793545e-009, -0.982353508, -0.187033504, 0, -0.187033504, 0.982353628))
  4104. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  4105. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  4106. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140533447, -1.67030334, 2.75189209, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
  4107. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  4108. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4109. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0145950317, -6.44722939, 0.805679321, -1, 1.86264515e-008, 5.96046448e-008, 1.11758709e-008, -0.970244586, -0.242127106, 0, -0.242127106, 0.970244527))
  4110. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4111. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  4112. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140609741, -0.572654724, 1.89173317, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.826882601, 0.562374711, 0, 0.562374711, 0.82688272))
  4113. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4114. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  4115. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140533447, -1.07876587, 2.34624863, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.94426012, 0.329200208, 2.98023224e-008, 0.329200208, 0.94426012))
  4116. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4117. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4118. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, -4.20618105, 2.84195328, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
  4119. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4120. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4121. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, -2.19620895, 2.83431244, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
  4122. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4123. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4124. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, 3.84465933, -0.891094208, -1, 1.86264515e-008, 5.96046448e-008, -1.11758709e-008, 0.970244586, 0.242127106, 0, 0.242127106, -0.970244527))
  4125. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4126. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4127. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.012260437, 1.25204659, 1.03306961, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, 0.826881826, -0.562375784, 5.96046448e-008, 0.562375724, 0.826881766))
  4128. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4129. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4130. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122413635, -3.0195713, -1.02729225, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.826881826, 0.562375784, -5.96046448e-008, -0.562375724, -0.826881766))
  4131. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4132. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4133. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0122451782, -1.66742134, 0.467433929, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, -0.562374592, -0.82688272, 0, -0.826882541, 0.562374532))
  4134. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4135. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4136. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122451782, -1.67897987, 1.19819832, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, -0.562374592, -0.82688272, 0, 0.826882541, -0.562374532))
  4137. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4138. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4139. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122489929, 1.50705338, 2.41267586, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, 0.609420419, -0.792847335, 0, 0.792847276, 0.609420419))
  4140. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4141. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4142. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.012260437, -1.00959778, -1.03495979, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.826881826, 0.562375784, -5.96046448e-008, -0.562375724, -0.826881766))
  4143. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4144. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4145. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122528076, -4.10961151, -2.49808693, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.609420419, 0.792847335, 0, -0.792847276, -0.609420419))
  4146. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4147. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4148. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.012260437, -1.6261673, -1.04066467, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.826881826, -0.562375784, -5.96046448e-008, -0.562375724, -0.826881766))
  4149. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4150. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.75463974))
  4151. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140533447, -0.852184296, 0.906645775, -1, 1.86264515e-008, 5.96046448e-008, 5.96046448e-008, -0.653154254, 0.757224917, -1.49011612e-008, 0.757224798, 0.653154254))
  4152. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4153. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4154. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80034447, -0.86977005, 4.07917023, 0.49999845, -0.565649092, 0.655776381, 0.224142939, -0.646899283, -0.728890419, 0.836517453, 0.511431754, -0.196662545))
  4155. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4156. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4157. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80038261, -7.09912872, -2.63088512, 0.49999845, -0.565649092, 0.655776381, -0.864648581, -0.283361614, 0.414836287, -0.0488298535, -0.774433494, -0.630768061))
  4158. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4159. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4160. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037403, -3.89056778, -0.225765228, 0.49999845, -0.565649092, 0.655776381, -0.836517692, -0.511431158, 0.196663141, 0.224142194, -0.6468997, -0.7288903))
  4161. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4162. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4163. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80038261, -5.9005394, -0.218101501, 0.49999845, -0.565649092, 0.655776381, -0.836517692, -0.511431158, 0.196663141, 0.224142194, -0.6468997, -0.7288903))
  4164. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4165. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4166. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80037498, -0.858222961, -2.41352463, -0.49999845, 0.565649092, -0.655776381, 0.224142939, -0.646899283, -0.728890419, -0.836517453, -0.511431754, 0.196662545))
  4167. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4168. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4169. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037594, 4.49656296, 2.54547501, 0.49999845, -0.565649092, 0.655776381, 0.864648581, 0.283361614, -0.414836287, 0.0488298535, 0.774433494, 0.630768061))
  4170. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4171. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4172. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.8027277, 0.0490112305, 4.47517967, -0.49999845, 0.565649092, -0.655776381, -0.612372398, 0.304515153, 0.729568839, 0.61237365, 0.766362667, 0.194130719))
  4173. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4174. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4175. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80274391, 0.0605697632, -2.80956078, 0.49999845, -0.565649092, 0.655776381, -0.612372398, 0.304515153, 0.729568839, -0.61237365, -0.766362667, -0.194130719))
  4176. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4177. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4178. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80274677, 4.52905464, -0.69493866, -0.49999845, 0.565649092, -0.655776381, 0.612375081, 0.766361952, 0.194129199, 0.612371087, -0.304516733, -0.729569316))
  4179. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4180. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4181. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80274773, 1.65083885, 0.687343597, 0.49999845, -0.565649092, 0.655776381, 0.612375081, 0.766361952, 0.194129199, -0.612371087, 0.304516733, 0.729569316))
  4182. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4183. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4184. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80273438, 5.16016769, 1.79669189, -0.49999845, 0.565649092, -0.655776381, 0.390038431, 0.823161662, 0.412643731, 0.773221493, -0.0494567379, -0.632204533))
  4185. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4186. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4187. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80038166, 4.13302612, 0.223876953, 0.49999845, -0.565649092, 0.655776381, 0.836517692, 0.511431158, -0.196663141, -0.224142194, 0.6468997, 0.7288903))
  4188. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4189. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4190. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80273819, -4.28659248, 0.693054199, -0.49999845, 0.565649092, -0.655776381, -0.612375081, -0.766361952, -0.194129199, -0.612371087, 0.304516733, 0.729569316))
  4191. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4192. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4193. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80276012, -6.29656792, 0.700717926, -0.49999845, 0.565649092, -0.655776381, -0.612375081, -0.766361952, -0.194129199, -0.612371087, 0.304516733, 0.729569316))
  4194. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4195. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  4196. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216217, -3.78028393, 0.199310303, -0.49999845, 0.565649092, -0.655776381, -0.433015227, -0.819063604, -0.376341105, -0.749999583, 0.0957911685, 0.654465318))
  4197. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  4198. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  4199. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216694, -3.76069069, 0.610641479, -0.49999845, 0.565649092, -0.655776381, -0.612375081, -0.766361952, -0.194129199, -0.612371087, 0.304516733, 0.729569316))
  4200. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  4201. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4202. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80275726, -7.76274252, -1.88209915, -0.49999845, 0.565649092, -0.655776381, -0.390038431, -0.823161662, -0.412643731, -0.773221493, 0.0494567379, 0.632204533))
  4203. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4204. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.75463974))
  4205. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216217, -3.84443283, 0.870663643, -0.49999845, 0.565649092, -0.655776381, -0.866026282, -0.326575905, 0.378611505, 4.32133675e-007, 0.757224679, 0.653154492))
  4206. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4207. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  4208. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80217838, -3.45362091, 1.0825386, -0.49999845, 0.565649092, -0.655776381, -0.836517394, -0.511432052, 0.196662098, -0.224143416, 0.646898985, 0.728890657))
  4209. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4210. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  4211. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216312, -3.65211487, 0.818996429, -0.49999845, 0.565649092, -0.655776381, -0.75000155, -0.66143465, 0.00131103396, -0.433011711, 0.492488772, 0.7549541))
  4212. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4213. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4214. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80037689, 1.2548027, -0.231477737, -0.49999845, 0.565649092, -0.655776381, 0.836517692, 0.511431158, -0.196663141, 0.224142194, -0.6468997, -0.7288903))
  4215. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4216. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.44351673, 0.373031557, 1.23305202))
  4217. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.37387466, 0.0131607056, 3.24288177, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  4218. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904559135, 1))
  4219. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  4220. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.45108032, -0.324279785, 3.24173164, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  4221. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  4222. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(1.28909934, 0.543318033, 1.14497685))
  4223. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.45108795, 0.0165786743, 3.23201942, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  4224. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4225. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  4226. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.45106888, 0.370029449, 3.24633598, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  4227. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  4228. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  4229. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.458839417, 5.15813541, 3.2103529, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4230. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  4231. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  4232. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.458843231, 4.46384811, 3.20575047, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4233. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  4234. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(1.28909934, 0.543318033, 1.14497685))
  4235. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.458824158, 4.80470562, 3.19602489, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4236. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4237. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.44351673, 0.373031557, 1.23305202))
  4238. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.381649017, 4.80128193, 3.20690632, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  4239. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904559135, 1))
  4240.  
  4241.  
  4242.  
  4243.  
  4244. Player=game:GetService('Players').LocalPlayer
  4245. Character=Player.Character
  4246. Mouse=Player:GetMouse()
  4247. m=Instance.new('Model',Character)
  4248.  
  4249.  
  4250. local function weldBetween(a, b)
  4251. local weldd = Instance.new("ManualWeld")
  4252. weldd.Part0 = a
  4253. weldd.Part1 = b
  4254. weldd.C0 = CFrame.new()
  4255. weldd.C1 = b.CFrame:inverse() * a.CFrame
  4256. weldd.Parent = a
  4257. return weldd
  4258. end
  4259.  
  4260. it=Instance.new
  4261.  
  4262. function nooutline(part)
  4263. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  4264. end
  4265.  
  4266. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  4267. local fp=it("Part")
  4268. fp.formFactor=formfactor
  4269. fp.Parent=parent
  4270. fp.Reflectance=reflectance
  4271. fp.Transparency=transparency
  4272. fp.CanCollide=false
  4273. fp.Locked=true
  4274. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  4275. fp.Name=name
  4276. fp.Size=size
  4277. fp.Position=Character.Torso.Position
  4278. nooutline(fp)
  4279. fp.Material=material
  4280. fp:BreakJoints()
  4281. return fp
  4282. end
  4283.  
  4284. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  4285. local mesh=it(Mesh)
  4286. mesh.Parent=part
  4287. if Mesh=="SpecialMesh" then
  4288. mesh.MeshType=meshtype
  4289. mesh.MeshId=meshid
  4290. end
  4291. mesh.Offset=offset
  4292. mesh.Scale=scale
  4293. return mesh
  4294. end
  4295.  
  4296. function weld(parent,part0,part1,c0,c1)
  4297. local weld=it("Weld")
  4298. weld.Parent=parent
  4299. weld.Part0=part0
  4300. weld.Part1=part1
  4301. weld.C0=c0
  4302. weld.C1=c1
  4303. return weld
  4304. end
  4305.  
  4306. BladeEnd=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle",Vector3.new(0.333970994, 2.40790987, 0.825482368))
  4307. BladeEndweld=weld(m,Character["Right Arm"],BladeEnd,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.450769424, -5.79949188, -1.7236805, -0.999986351, -0.00451200129, -0.00263599772, 0.00276065455, -0.0278460663, -0.999610126, 0.00443684589, -0.999605477, 0.0278581958))
  4308. mesh("BlockMesh",BladeEnd,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
  4309. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 2.93125677, 0.825482368))
  4310. Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.90734863e-005, -5.98527908, 0.00445604324, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4311. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
  4312. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.442278117, 0.333971083))
  4313. Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-005, -2.39555359, 3.80643082, 1, -5.3551048e-009, 1.5788828e-009, -1.62981451e-009, 0.500003278, 0.866030395, 5.12227416e-009, -0.866027415, 0.500004888))
  4314. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
  4315. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.426588923, 0.333971083))
  4316. Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-006, 2.40819931, 3.84829712, 1, -5.3551048e-009, 1.5788828e-009, 4.07453626e-009, -0.499998868, 0.866032958, 3.95812094e-009, -0.866030097, -0.500000536))
  4317. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.834210217))
  4318. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.442278117, 0.333971083))
  4319. Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.33514404e-005, 0.468460083, -1.15685654, 1, -5.3551048e-009, 1.5788828e-009, 1.62981451e-009, -0.500003278, -0.866030395, -5.12227416e-009, 0.866027415, -0.500004888))
  4320. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
  4321. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 3.13969851, 0.398512334))
  4322. Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(5.7220459e-006, -2.85785294, 0.00391054153, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4323. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
  4324. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.426588923, 0.333971083))
  4325. Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.458122253, -1.16581345, 1, -5.3551048e-009, 1.5788828e-009, -4.07453626e-009, 0.499998868, -0.866032958, -3.95812094e-009, 0.866030097, 0.500000536))
  4326. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
  4327. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4328. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00392150879, -0.000373840332, 6.66751862, 1, -3.30619514e-008, -9.9773024e-007, 1.00096076e-006, 1.07847154e-006, 1.00000679, -2.28174031e-008, -1.00000346, 1.09151006e-006))
  4329. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.884725809, 0.0892784372))
  4330. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4331. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00390815735, 6.52303314, 1.88164616, 1, -5.3551048e-009, 1.5788828e-009, 5.58793545e-009, -0.965928555, 0.258823007, -4.65661287e-010, -0.258822083, -0.965931714))
  4332. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  4333. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4334. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00391769409, 0.0489282608, 6.86997986, 1, -3.30619514e-008, -9.9773024e-007, 1.00096076e-006, 1.07847154e-006, 1.00000679, -2.28174031e-008, -1.00000346, 1.09151006e-006))
  4335. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.616281807, 0.0892784372))
  4336. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4337. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00391578674, 5.61977386, 3.36309242, 1, -3.30619514e-008, -9.9773024e-007, 4.8102811e-007, -0.866027653, 0.50000453, -8.77771527e-007, -0.500002861, -0.866030633))
  4338. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.794125915, 0.0892784372))
  4339. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.452364713, 0.333971083))
  4340. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0039100647, -6.65688705, 0.13747406, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4341. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 1, 0.0892784372))
  4342. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4343. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00391578674, 6.71179581, 0.134818077, 1, -5.3551048e-009, 1.5788828e-009, 5.3551048e-009, -1.00000346, 5.58793545e-009, -1.5788828e-009, 5.58793545e-009, -1.00000691))
  4344. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.34112677, 0.0892784372))
  4345. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4346. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00389480591, 4.77613449, 4.91134644, 1, -5.3551048e-009, 1.5788828e-009, 4.88944352e-009, -0.707108498, 0.707112134, 2.79396772e-009, -0.707109809, -0.707111001))
  4347. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  4348. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4349. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00392341614, 5.84634399, 3.51166153, 1, -5.3551048e-009, 1.5788828e-009, 5.3551048e-009, -0.86602813, 0.500003815, 1.62981451e-009, -0.500002027, -0.866031051))
  4350. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  4351. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4352. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00389862061, 1.71303558, 6.64987946, 1, -3.30619514e-008, -9.9773024e-007, 9.61008482e-007, -0.258820415, 0.96593225, -2.80793756e-007, -0.965929031, -0.258821368))
  4353. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  4354. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.672227144, 1.760818))
  4355. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00542259216, -0.378371716, 8.37445831, -1, -8.87969509e-006, 4.24777681e-006, -4.31565422e-006, 0.00727553666, -0.999980152, 8.85874033e-006, -0.999976993, -0.00727554969))
  4356. mesh("SpecialMesh",BladeNeon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.774613976, 1, 1))
  4357. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 5.69591618, 0.333971083))
  4358. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000516891479, -2.73707199, -0.00561141968, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4359. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.844456613, 1, 0.458388805))
  4360. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 8.72168827, 1.36339724))
  4361. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00561523438, -3.13931656, -0.0179476738, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4362. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.760567904, 1, 1))
  4363. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.681192338, 1.760818))
  4364. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00429534912, -0.295157909, 8.37542725, 1, 8.87969509e-006, -4.24777681e-006, 4.31533408e-006, -0.0072765369, 0.999980271, 8.85874033e-006, -0.999976933, -0.0072765518))
  4365. mesh("SpecialMesh",BladeNeon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.767835736, 1, 1))
  4366. Handle=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle",Vector3.new(0.333970994, 3.65670252, 0.333971083))
  4367. Handleweld=weld(m,BladeEnd,Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00547122955, -5.38523102, -0.00175476074, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1.36788003e-006, -1.00000346, 2.09547579e-006, 1, 1.35786831e-006, 1.63512595e-007))
  4368. mesh("CylinderMesh",Handle,"","",Vector3.new(0, 0, 0),Vector3.new(0.677820504, 1, 0.80868715))
  4369. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4370. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00848770142, 4.68890381, 5.0786438, -1, 5.3551048e-009, -1.5788828e-009, -2.79396772e-009, 0.707109809, 0.707111001, -4.88944352e-009, 0.707108498, -0.707112134))
  4371. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.567087829))
  4372. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.90585577, 1.45080817))
  4373. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0022315979, 2.16143417, -0.0224318504, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4374. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4375. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4376. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000429153442, -0.148144245, 1.37475967, -1, 3.86452302e-006, -5.11141843e-006, -5.13588748e-006, -0.00727250986, 0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
  4377. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4378. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  4379. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00186729431, 0.705814362, 1.8845787, -1, -5.0291419e-008, -2.00066279e-006, -1.46543607e-006, 0.701945484, 0.712237716, 1.35891605e-006, 0.712235332, -0.701947927))
  4380. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.847812057, 1, 1))
  4381. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.730286956, 0.333971083))
  4382. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00281333923, 2.86053848, 0.11316824, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4383. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 0.270477563))
  4384. Handle2=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.51886344, 0.333971083, 0.636532664))
  4385. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00347757339, -0.00207901001, 2.874897, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4386. mesh("CylinderMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.842242956, 1))
  4387. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  4388. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000751495361, 0.735794067, 2.04483795, -1, -5.0291419e-008, -2.00066279e-006, -1.46543607e-006, 0.701945484, 0.712237716, 1.35891605e-006, 0.712235332, -0.701947927))
  4389. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4390. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.750458777, 0.333971083))
  4391. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00281143188, 2.86390305, -0.125523567, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4392. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 0.270477563))
  4393. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 2.43250322))
  4394. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00225639343, 3.24793243, -0.0257816315, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4395. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
  4396. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.477399707, 0.333971083))
  4397. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00573730469, 5.12487411, 5.07043457, 1, -5.3551048e-009, 1.5788828e-009, -4.88944352e-009, 0.707108498, -0.707112134, -2.79396772e-009, 0.707109809, 0.707111001))
  4398. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
  4399. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4400. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00847434998, 5.07132339, 5.49375916, -1, 5.3551048e-009, -1.5788828e-009, -2.79396772e-009, 0.707109809, 0.707111001, -4.88944352e-009, 0.707108498, -0.707112134))
  4401. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.781843007))
  4402. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.71422374, 0.527387738))
  4403. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00225067139, 0.240013123, -0.00784635544, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4404. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.869846582, 1, 1))
  4405. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4406. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00223922729, 3.48665237, -0.0140166283, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4407. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 0.414765924))
  4408. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.23496354, 0.333971083))
  4409. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0057144165, 6.50336838, 0.0964884758, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4410. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.637554169))
  4411. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4412. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00573348999, 4.2307663, -4.09196472, 1, -5.3551048e-009, 1.5788828e-009, -2.79396772e-009, 0.707109809, 0.707111001, 4.88944352e-009, -0.707108498, 0.707112134))
  4413. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 0.452999234, 0.452998996))
  4414. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.963326454))
  4415. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00227165222, 3.39096451, 0.390414715, 1, -5.3551048e-009, 1.5788828e-009, -5.58793545e-009, 0.965928555, -0.258823007, 4.65661287e-010, 0.258822083, 0.965931714))
  4416. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
  4417. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.963326454))
  4418. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00225067139, 3.38317871, -0.408802032, 1, -5.3551048e-009, 1.5788828e-009, -4.42378223e-009, 0.965928733, 0.25882256, 2.96859071e-009, -0.258821636, 0.965931952))
  4419. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
  4420. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.530070603, 0.595068455))
  4421. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00849342346, -3.96007156, 6.41414642, -1.00000012, 2.06101686e-006, 1.94132008e-006, 5.31668775e-007, -0.539589584, 0.841935158, 2.77510844e-006, 0.841932237, 0.539591372))
  4422. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 1, 1))
  4423. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.452745259, 0.333971083))
  4424. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00574302673, 4.75794983, 4.6880188, 1, -5.3551048e-009, 1.5788828e-009, -4.88944352e-009, 0.707108498, -0.707112134, -2.79396772e-009, 0.707109809, 0.707111001))
  4425. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
  4426. Handle2=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.356368661))
  4427. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00491142273, -3.52550125, -0.00119590759, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1.36788003e-006, -1.00000346, 2.09547579e-006, 1, 1.35786831e-006, 1.63512595e-007))
  4428. mesh("CylinderMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.788553476, 0.718087614, 1))
  4429. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.391848803, 0.756001353))
  4430. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00224113464, 0.895763397, 0.829719543, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 0.866027653, -0.50000453, -1.39698386e-009, 0.500002861, 0.866030633))
  4431. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4432. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4433. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000440597534, -0.138348579, 0.894599915, 1, 1.88290142e-006, -4.05231549e-006, 4.06977051e-006, -0.00727253594, 0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4434. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4435. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4436. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000467300415, -0.172971725, -4.87036133, 1, -3.86452302e-006, 5.11141843e-006, 5.13588748e-006, 0.00727250986, -0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
  4437. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4438. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  4439. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00296974182, 0.775684357, 2.01208115, 1, -9.49250534e-007, 2.02898082e-006, 2.10141297e-006, 0.701943696, -0.712239444, -7.53090717e-007, 0.712237179, 0.70194608))
  4440. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4441. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4442. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000457763672, -0.0884757042, 7.14133453, 1, 1.88290142e-006, -4.05231549e-006, 4.06977051e-006, -0.00727253594, 0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4443. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4444. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4445. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00278663635, 2.60951233, -0.0151414871, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4446. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 0.683390796, 0.723476529))
  4447. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  4448. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00187492371, 0.745685577, 1.8518219, 1, -9.49250534e-007, 2.02898082e-006, 2.10141297e-006, 0.701943696, -0.712239444, -7.53090717e-007, 0.712237179, 0.70194608))
  4449. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.847812057, 1, 1))
  4450. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  4451. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00299263, -1.55075121, 3.68893433, -1, 9.7672455e-007, -1.02919876e-006, -1.01856858e-006, 0.007278217, 0.99998033, 9.73697752e-007, 0.999976873, -0.00727825798))
  4452. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4453. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4454. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000438690186, -0.132833481, 0.892940521, -1, -1.88290142e-006, 4.05231549e-006, -4.06977051e-006, 0.00727253594, -0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4455. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4456. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4457. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000461578369, -0.098233223, -4.87198639, -1, 3.86452302e-006, -5.11141843e-006, -5.13588748e-006, -0.00727250986, 0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
  4458. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4459. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4460. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000400543213, -0.123067856, 1.37639999, 1, -3.86452302e-006, 5.11141843e-006, 5.13588748e-006, 0.00727250986, -0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
  4461. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4462. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  4463. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00226783752, -1.49668598, 3.68751907, 1, 2.25845724e-008, 1.00135367e-006, 9.98486939e-007, 0.00727552548, -0.999980271, -4.02797014e-008, 0.999976993, 0.00727553107))
  4464. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4465. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.71422374, 0.527387738))
  4466. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00223731995, -6.00695419, -0.00337791443, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4467. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.861234307, 1, 1))
  4468. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4469. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000419616699, -0.182757378, 7.13973236, -1, -1.88290142e-006, 4.05231549e-006, -4.06977051e-006, 0.00727253594, -0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4470. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4471. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.391848803, 0.756001353))
  4472. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00224304199, 0.873001099, -0.876026154, 1, -5.3551048e-009, 1.5788828e-009, -3.25962901e-009, 0.866028011, 0.500003994, 3.95812094e-009, -0.500002265, 0.866030872))
  4473. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4474. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.397666305, 1.13997447))
  4475. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000431060791, -0.155970097, 8.00754547, 1, 1.88290142e-006, -4.05231549e-006, 4.06977051e-006, -0.00727253594, 0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4476. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.798337698, 1, 1))
  4477. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.435768574, 1.13997447))
  4478. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00150680542, -0.259859562, 8.01216888, -1, -8.87969509e-006, 4.24777681e-006, -4.31565422e-006, 0.00727553666, -0.999980152, 8.85874033e-006, -0.999976993, -0.00727554969))
  4479. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.805115938, 1, 1))
  4480. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.477399707, 0.333971083))
  4481. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00572776794, 3.31259918, 1.56507874, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 0.86602813, -0.500003815, -1.62981451e-009, 0.500002027, 0.866031051))
  4482. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
  4483. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4484. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00847244263, 1.56596184, 3.68146133, -1, 5.3551048e-009, -1.5788828e-009, -1.62981451e-009, 0.500003278, 0.866030395, -5.12227416e-009, 0.866027415, -0.500004888))
  4485. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.781843007))
  4486. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4487. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00846862793, -0.113676071, -3.98678207, -1, 5.3551048e-009, -1.5788828e-009, -6.54836185e-010, -0.114217885, -0.993462563, 5.3551048e-009, -0.993459225, 0.11421828))
  4488. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.563732326))
  4489. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.652221978))
  4490. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00847244263, 2.12783813, 4.00239944, 1, 5.0291419e-008, 2.00066279e-006, 1.7893035e-006, 0.418343931, -0.908295453, -8.91042873e-007, 0.908292413, 0.418345362))
  4491. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.523465693, 1))
  4492. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.534553051))
  4493. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00848197937, -0.114953518, 4.34464645, 1, -5.3551048e-009, 1.5788828e-009, -6.54836185e-010, -0.114217885, -0.993462563, -5.3551048e-009, 0.993459165, -0.114218257))
  4494. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 1))
  4495. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 1.76913583, 0.333971083))
  4496. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00280761719, 2.54881287, -0.00673675537, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4497. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.851167679, 1, 0.444966584))
  4498. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  4499. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00242233276, 0.781448364, 1.95035934, 1, -9.49250534e-007, 2.02898082e-006, 2.10141297e-006, 0.701943696, -0.712239444, -7.53090717e-007, 0.712237179, 0.70194608))
  4500. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 1))
  4501. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4502. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.11886787, -0.00262260437, 3.30176163, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4503. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  4504. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
  4505. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00124740601, -0.197305202, 1.52207947, -1, 3.86452302e-006, -5.11141843e-006, -5.13588748e-006, -0.00727250986, 0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
  4506. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4507. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4508. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.12582397, -0.00260162354, 3.30752563, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4509. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  4510. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  4511. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00125694275, -0.156280041, 1.52334595, 1, -3.86452302e-006, 5.11141843e-006, 5.13573468e-006, 0.00727050938, -0.999980271, 3.81702557e-006, 0.999976993, 0.00727053359))
  4512. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4513. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.403703302))
  4514. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00126838684, 2.85546875, 0.447472572, 1, 2.25845724e-008, 1.00135367e-006, -4.02797014e-008, 0.999976933, 0.00727766939, -9.98494215e-007, -0.00727765262, 0.999980211))
  4515. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 1))
  4516. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.53818208))
  4517. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00126075745, 1.30287552, 1.671875, -1, 3.86452302e-006, -5.11141843e-006, -9.32952389e-007, 0.701947451, 0.712235808, 6.33043237e-006, 0.712233365, -0.701949954))
  4518. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.190766811, 1))
  4519. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.403703302))
  4520. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00127220154, 2.8675766, 0.511937141, -1, 3.86452302e-006, -5.11141843e-006, 3.81679274e-006, 0.999976873, 0.00727466121, 5.1354582e-006, 0.00727464817, -0.999980271))
  4521. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 1))
  4522. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  4523. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00128173828, 0.741531372, 1.98311234, -1, -5.0291419e-008, -2.00066279e-006, -1.46543607e-006, 0.701945484, 0.712237716, 1.35891605e-006, 0.712235332, -0.701947927))
  4524. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 1))
  4525. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4526. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00129127502, 2.06131363, -1.58065796, -1, 3.86452302e-006, -5.11141843e-006, 6.3306652e-006, 0.712233424, -0.701949954, 9.32952389e-007, -0.701947451, -0.712235808))
  4527. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 0.873242319))
  4528. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4529. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.65778923, -0.00261688232, 3.554142, 9.13976692e-007, -0.298402101, 0.954447031, 1, 2.66823918e-007, -8.68145435e-007, -4.42378223e-009, 0.954443753, 0.298403084))
  4530. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  4531. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4532. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.071811676, -0.00623512268, 6.19100571, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4533. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  4534. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4535. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0718102455, -0.00624275208, 6.83526611, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4536. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  4537. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4538. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0718164444, -0.00625419617, 6.99786377, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4539. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  4540. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4541. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0718173981, -0.00625228882, 6.02839279, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4542. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  4543. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.633004189, 1.13885355))
  4544. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00294113159, -1.51745224, 3.69674301, 1, 2.25845724e-008, 1.00135367e-006, 9.98486939e-007, 0.00727552548, -0.999980271, -4.02797014e-008, 0.999976993, 0.00727553107))
  4545. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.790433347, 1, 1))
  4546. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
  4547. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00124549866, -0.169769287, 1.02795029, -1, -1.88290142e-006, 4.05231549e-006, -4.06977051e-006, 0.00727253594, -0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4548. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4549. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
  4550. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00121879578, -0.147402763, -4.72467804, -1, 3.86452302e-006, -5.11141843e-006, -5.13588748e-006, -0.00727250986, 0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
  4551. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4552. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4553. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00126075745, 2.0196228, -1.61859512, 1, 2.25845724e-008, 1.00135367e-006, -7.34464265e-007, 0.70194453, 0.712238789, -6.76838681e-007, -0.712236404, 0.701947033))
  4554. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 0.940353274))
  4555. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.53818208))
  4556. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00123596191, 1.31023407, 1.65644073, 1, 4.13204543e-006, 4.88809019e-006, 5.71715645e-007, 0.701945722, -0.712237537, -6.37990888e-006, 0.712235212, 0.701948166))
  4557. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.190766811, 1))
  4558. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 2.02464533, 0.704451442))
  4559. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00224876404, -5.9966774, -0.00673389435, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4560. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.834389985, 1, 1))
  4561. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  4562. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00121307373, -0.206172466, -4.72341537, 1, -3.86452302e-006, 5.11141843e-006, 5.13573468e-006, 0.00727050938, -0.999980271, 3.81702557e-006, 0.999976993, 0.00727053359))
  4563. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4564. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
  4565. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00122642517, -0.219696999, 7.27475739, -1, -1.88290142e-006, 4.05231549e-006, -4.06977051e-006, 0.00727253594, -0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4566. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4567. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4568. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.709104538, 0.00263023376, 3.57127762, 5.24742063e-007, -0.298404753, -0.954446197, -1, 1.02631748e-006, -8.71201337e-007, 1.22864731e-006, 0.954442978, -0.298405796))
  4569. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  4570. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  4571. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00124359131, -0.133904457, 7.27602386, 1, 1.88290142e-006, -4.05231549e-006, 4.06897016e-006, -0.00727054104, 0.99998033, 1.86357647e-006, -0.999976873, -0.00727054477))
  4572. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4573. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 2.02464533, 0.704451442))
  4574. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0022354126, 0.250286102, -0.011218071, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4575. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.834389985, 1, 1))
  4576. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  4577. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00124740601, -0.18379879, 1.0292511, 1, 1.88290142e-006, -4.05231549e-006, 4.06897016e-006, -0.00727054104, 0.99998033, 1.86357647e-006, -0.999976873, -0.00727054477))
  4578. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4579. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4580. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0027923584, 2.42457581, -2.43035126, 1, -5.3551048e-009, 1.5788828e-009, -2.79396772e-009, 0.707109809, 0.707111001, 4.88944352e-009, -0.707108498, 0.707112134))
  4581. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.851167679, 0.317635983, 0.314100146))
  4582. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.620843053, 0.333971083, 0.636532664))
  4583. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00516605377, -0.00261116028, 2.88111496, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4584. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.832176328, 1))
  4585. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.633004189, 1.13885355))
  4586. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00233078003, -1.57151031, 3.69814682, -1, 9.7672455e-007, -1.02919876e-006, -1.01856858e-006, 0.007278217, 0.99998033, 9.73697752e-007, 0.999976873, -0.00727825798))
  4587. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.790433347, 1, 1))
  4588.  
  4589. Player=game:GetService('Players').LocalPlayer
  4590. Character=Player.Character
  4591. Mouse=Player:GetMouse()
  4592. m=Instance.new('Model',Character)
  4593.  
  4594.  
  4595. local function weldBetween(a, b)
  4596. local weldd = Instance.new("ManualWeld")
  4597. weldd.Part0 = a
  4598. weldd.Part1 = b
  4599. weldd.C0 = CFrame.new()
  4600. weldd.C1 = b.CFrame:inverse() * a.CFrame
  4601. weldd.Parent = a
  4602. return weldd
  4603. end
  4604.  
  4605. it=Instance.new
  4606.  
  4607. function nooutline(part)
  4608. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  4609. end
  4610.  
  4611. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  4612. local fp=it("Part")
  4613. fp.formFactor=formfactor
  4614. fp.Parent=parent
  4615. fp.Reflectance=reflectance
  4616. fp.Transparency=transparency
  4617. fp.CanCollide=false
  4618. fp.Locked=true
  4619. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  4620. fp.Name=name
  4621. fp.Size=size
  4622. fp.Position=Character.Torso.Position
  4623. nooutline(fp)
  4624. fp.Material=material
  4625. fp:BreakJoints()
  4626. return fp
  4627. end
  4628.  
  4629. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  4630. local mesh=it(Mesh)
  4631. mesh.Parent=part
  4632. if Mesh=="SpecialMesh" then
  4633. mesh.MeshType=meshtype
  4634. mesh.MeshId=meshid
  4635. end
  4636. mesh.Offset=offset
  4637. mesh.Scale=scale
  4638. return mesh
  4639. end
  4640.  
  4641. function weld(parent,part0,part1,c0,c1)
  4642. local weld=it("Weld")
  4643. weld.Parent=parent
  4644. weld.Part0=part0
  4645. weld.Part1=part1
  4646. weld.C0=c0
  4647. weld.C1=c1
  4648. return weld
  4649. end
  4650.  
  4651. Face=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Institutional white","Handle",Vector3.new(2.39999938, 2.39999938, 2.39999938))
  4652. Face.Shape = "Ball"
  4653. Faceweld=weld(m,Character["Head"],Face,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0199375153, 0.150016785, -0.590007782, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  4654.  
  4655.  
  4656. Player=game:GetService('Players').LocalPlayer
  4657. Character=Player.Character
  4658. Mouse=Player:GetMouse()
  4659. m=Instance.new('Model',Character)
  4660.  
  4661.  
  4662. local function weldBetween(a, b)
  4663. local weldd = Instance.new("ManualWeld")
  4664. weldd.Part0 = a
  4665. weldd.Part1 = b
  4666. weldd.C0 = CFrame.new()
  4667. weldd.C1 = b.CFrame:inverse() * a.CFrame
  4668. weldd.Parent = a
  4669. return weldd
  4670. end
  4671.  
  4672. it=Instance.new
  4673.  
  4674. function nooutline(part)
  4675. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  4676. end
  4677.  
  4678. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  4679. local fp=it("Part")
  4680. fp.formFactor=formfactor
  4681. fp.Parent=parent
  4682. fp.Reflectance=reflectance
  4683. fp.Transparency=transparency
  4684. fp.CanCollide=false
  4685. fp.Locked=true
  4686. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  4687. fp.Name=name
  4688. fp.Size=size
  4689. fp.Position=Character.Torso.Position
  4690. nooutline(fp)
  4691. fp.Material=material
  4692. fp:BreakJoints()
  4693. return fp
  4694. end
  4695.  
  4696. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  4697. local mesh=it(Mesh)
  4698. mesh.Parent=part
  4699. if Mesh=="SpecialMesh" then
  4700. mesh.MeshType=meshtype
  4701. mesh.MeshId=meshid
  4702. end
  4703. mesh.Offset=offset
  4704. mesh.Scale=scale
  4705. return mesh
  4706. end
  4707.  
  4708. function weld(parent,part0,part1,c0,c1)
  4709. local weld=it("Weld")
  4710. weld.Parent=parent
  4711. weld.Part0=part0
  4712. weld.Part1=part1
  4713. weld.C0=c0
  4714. weld.C1=c1
  4715. return weld
  4716. end
  4717.  
  4718. Back=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(4.37000132, 3.20000124, 1.59000123))
  4719. Backweld=weld(m,Character["Torso"],Back,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0149364471, -0.464990616, 1.0450058, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  4720.  
  4721. local size = 40,40,40
  4722.  
  4723.  
  4724. ----------------------------------------------------
  4725. Player=game:GetService('Players').LocalPlayer
  4726. Character=Player.Character
  4727. Mouse=Player:GetMouse()
  4728. m=Instance.new('Model',Character)
  4729.  
  4730.  
  4731. local function weldBetween(a, b)
  4732. local weldd = Instance.new("ManualWeld")
  4733. weldd.Part0 = a
  4734. weldd.Part1 = b
  4735. weldd.C0 = CFrame.new()
  4736. weldd.C1 = b.CFrame:inverse() * a.CFrame
  4737. weldd.Parent = a
  4738. return weldd
  4739. end
  4740.  
  4741. it=Instance.new
  4742.  
  4743. function nooutline(part)
  4744. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  4745. end
  4746.  
  4747. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  4748. local fp=it("Part")
  4749. fp.formFactor=formfactor
  4750. fp.Parent=parent
  4751. fp.Reflectance=reflectance
  4752. fp.Transparency=transparency
  4753. fp.CanCollide=false
  4754. fp.Locked=true
  4755. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  4756. fp.Name=name
  4757. fp.Size=size
  4758. fp.Position=Character.Torso.Position
  4759. nooutline(fp)
  4760. fp.Material=material
  4761. fp:BreakJoints()
  4762. return fp
  4763. end
  4764.  
  4765. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  4766. local mesh=it(Mesh)
  4767. mesh.Parent=part
  4768. if Mesh=="SpecialMesh" then
  4769. mesh.MeshType=meshtype
  4770. mesh.MeshId=meshid
  4771. end
  4772. mesh.Offset=offset
  4773. mesh.Scale=scale
  4774. return mesh
  4775. end
  4776.  
  4777. function weld(parent,part0,part1,c0,c1)
  4778. local weld=it("Weld")
  4779. weld.Parent=parent
  4780. weld.Part0=part0
  4781. weld.Part1=part1
  4782. weld.C0=c0
  4783. weld.C1=c1
  4784. return weld
  4785. end
  4786.  
  4787. F3=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0.5,"Really black","Handle",Vector3.new(30.6000023, 30.6000023, 30.6000023))
  4788. F3weld=weld(m,Character["Torso"],F3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.35006237, -0.479990005, 1.62999344, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  4789. F3.Name = "F3"
  4790. F3.Shape = "Ball"
  4791. F3.CanCollide = false
  4792. F3.Size = Vector3.new(size)
  4793. F3.Transparency = 0.7
  4794. F3.Material = "Neon"
  4795. F3.Anchored = true
  4796. F3.BrickColor = BrickColor.new(0,0,0)
  4797. F3.Locked = true
  4798. F3.Archivable = false
  4799.  
  4800.  
  4801.  
  4802. local p = F3
  4803. local me = game.Players.LocalPlayer.Character
  4804. game.Workspace.CodedOverLordPlush.Humanoid.JumpPower = 400
  4805.  
  4806.  
  4807. p.Shape = "Ball"
  4808.  
  4809. game:GetService('RunService').Stepped:connect(function()
  4810. p.CFrame = me.Torso.CFrame * CFrame.new(0,0,0) * CFrame.Angles(0,0,0)
  4811. end)
  4812.  
  4813.  
  4814. wait(0.1)
  4815.  
  4816. F3.CanCollide = false
  4817. F3.CanCollide = false
  4818.  
  4819.  
  4820. F3.Transparency = 0.9
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement