Advertisement
Guest User

Untitled

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