Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 146.90 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. --Guest 666 Script [Your Own Name in Roblox]
  154. if game.Players.LocalPlayer.Character.Animate.Disabled==false then
  155. game.Players.LocalPlayer.Character.Animate.Disabled=true
  156. end
  157. wait()
  158. local Player=game.Players.LocalPlayer
  159. repeat wait()
  160. until Player
  161. local Char=Player.Character
  162. repeat wait()
  163. until Char
  164. local CurrentEffects={}
  165. local CurrentDamages={}
  166. local Human=Char.Humanoid
  167. local LArm=Char["Left Arm"]
  168. local RArm=Char["Right Arm"]
  169. local LLeg=Char["Left Leg"]
  170. local RLeg=Char["Right Leg"]
  171. local Torso=Char.Torso
  172. local RS=Torso["Right Shoulder"]
  173. local LS=Torso["Left Shoulder"]
  174. local RH=Torso["Right Hip"]
  175. local LH=Torso["Left Hip"]
  176. local Head=Char.Head
  177. local Neck=Torso.Neck
  178. local RootPart=Char.HumanoidRootPart
  179. local RootJoint=RootPart.RootJoint
  180. local equipped=false
  181. local Debounce=false
  182. local Anim="Idle"
  183. local chat = game:GetService("Chat")
  184. local Mouse=Player:GetMouse()
  185. local Lighting=game.Lighting
  186. local cf=CFrame.new
  187. local v3=Vector3.new
  188. local c3=Color3.new
  189. local it=Instance.new
  190. local angles=CFrame.Angles
  191. local rad=math.rad
  192. local ran=math.random
  193. local huge=math.huge
  194. local attacking=false
  195. local attacktype=1
  196. local Portalling=false
  197. local p = game.Players.LocalPlayer
  198. local char = p.Character
  199. local mouse = p:GetMouse()
  200. local larm = char["Left Arm"]
  201. local rarm = char["Right Arm"]
  202. local lleg = char["Left Leg"]
  203. local rleg = char["Right Leg"]
  204. local hed = char.Head
  205. local torso = char.Torso
  206. local hum = char.Humanoid
  207. local cam = game.Workspace.CurrentCamera
  208. local root = char.HumanoidRootPart
  209. local deb = false
  210. local shot = 0
  211. local debris=game:service"Debris"
  212. local l = game:GetService("Lighting")
  213. local rs = game:GetService("RunService").RenderStepped
  214. necko=cf(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  215. LHC0=cf(-1,-1,0,-0,-0,-1,0,1,0,1,0,0)
  216. LSC0=cf(-1, 0.5, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
  217. RHC0=cf(1,-1,0,0,0,1,0,1,0,-1,-0,-0)
  218. RSC0=cf(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
  219. ROOTC0 = cf(0, 0, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  220. r=game:service'RunService'.RenderStepped
  221. clerp=function(a,b,t)
  222. return a:lerp(b,t)
  223. end
  224.  
  225.  
  226. local Rainbow = { --This is the main color set. Try to use more than just a few, make it fade in order as well
  227. "Lime green",
  228. }
  229.  
  230. Debounces = {
  231. CanAttack = true;
  232. NoIdl = false;
  233. Slashing = false;
  234. Slashed = false;
  235. RPunch = false;
  236. Invisible = false;
  237. RPunched = false;
  238. LPunch = false;
  239. LPunched = false;
  240. }
  241. local Touche = {char.Name, }
  242.  
  243.  
  244. function genWeld(a,b)
  245. local w = Instance.new("Weld",a)
  246. w.Part0 = a
  247. w.Part1 = b
  248. return w
  249. end
  250. function weld(a, b)
  251. local weld = Instance.new("Weld")
  252. weld.Name = "W"
  253. weld.Part0 = a
  254. weld.Part1 = b
  255. weld.C0 = a.CFrame:inverse() * b.CFrame
  256. weld.Parent = a
  257. return weld;
  258. end
  259. ----------------------------------------------------
  260. function Lerp(c1,c2,al)
  261. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  262. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  263. for i,v in pairs(com1) do
  264. com1[i] = v+(com2[i]-v)*al
  265. end
  266. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  267. end
  268. ----------------------------------------------------
  269. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  270. local wld = Instance.new("Weld", wp1)
  271. wld.Part0 = wp0
  272. wld.Part1 = wp1
  273. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  274. end
  275. ----------------------------------------------------
  276. function weld5(part0, part1, c0, c1)
  277. weeld=Instance.new("Weld", part0)
  278. weeld.Part0=part0
  279. weeld.Part1=part1
  280. weeld.C0=c0
  281. weeld.C1=c1
  282. return weeld
  283. end
  284. ----------------------------------------------------
  285. function HasntTouched(plrname)
  286. local ret = true
  287. for _, v in pairs(Touche) do
  288. if v == plrname then
  289. ret = false
  290. end
  291. end
  292. return ret
  293. end
  294. ----------------------------------------------------
  295. newWeld(torso, larm, -1.5, 0.5, 0)
  296. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  297. newWeld(torso, rarm, 1.5, 0.5, 0)
  298. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  299. newWeld(torso, hed, 0, 1.5, 0)
  300. newWeld(torso, lleg, -0.5, -1, 0)
  301. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  302. newWeld(torso, rleg, 0.5, -1, 0)
  303. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  304. newWeld(root, torso, 0, -1, 0)
  305. torso.Weld.C1 = CFrame.new(0, -1, 0)
  306.  
  307.  
  308.  
  309. p = Instance.new("Part")
  310. p.BrickColor = BrickColor.new("Lime Green")
  311. p.Transparency = 1
  312. TorsoColor = p.BrickColor
  313.  
  314. local Transforming = true
  315. Human.WalkSpeed = 0
  316. local fx = Instance.new("Part",Torso)
  317. wit = p.BrickColor.Color
  318. wit2 = Color3.new(0,255,0)
  319. local glowz = Instance.new("ParticleEmitter",fx)
  320. glowz.LightEmission = 1
  321. glowz.Texture = "rbxassetid://284205403"
  322. glowz.Color = ColorSequence.new(wit)
  323. glowz.Size = NumberSequence.new(5)
  324. glowz.Speed = NumberRange.new(25,50)
  325. glowz.LockedToPart = false
  326. glowz.Transparency = NumberSequence.new(0.75)
  327. glowz.RotSpeed = NumberRange.new(-2000,2000)
  328. glowz.Lifetime = NumberRange.new(1)
  329. glowz.Rate = 50000
  330. glowz.VelocitySpread = 9001
  331. local glowz2 = Instance.new("ParticleEmitter",fx)
  332. glowz2.LightEmission = 0.5
  333. glowz.Texture = "rbxassetid://284205403"
  334. glowz2.Color = ColorSequence.new(wit2)
  335. glowz2.Size = NumberSequence.new(5)
  336. glowz2.Speed = NumberRange.new(25,50)
  337. glowz2.LockedToPart = false
  338. glowz2.Transparency = NumberSequence.new(0.75)
  339. glowz2.RotSpeed = NumberRange.new(-2000,2000)
  340. glowz2.Lifetime = NumberRange.new(1)
  341. glowz2.Rate = 50000
  342. glowz2.VelocitySpread = 9001
  343. fx.Anchored = true
  344. fx.Material = "Neon"
  345. fx.CanCollide = false
  346. fx.Locked = true
  347. fx.Transparency = 1
  348. fx.Material = "Neon"
  349. fx.Size = Vector3.new(1,1,1)
  350. fx.TopSurface = "SmoothNoOutlines"
  351. fx.BottomSurface = "SmoothNoOutlines"
  352. fx.BrickColor = BrickColor.new("Really black")
  353. fxm = Instance.new("SpecialMesh",fx)
  354. fxm.MeshType = "Sphere"
  355. local sa2 = Instance.new("Sound",Torso)
  356. sa2.SoundId = "rbxassetid://93724183"
  357. sa2.Pitch = 0.5
  358. sa2.Volume = 5
  359. sa2.Looped = false
  360. sa2:Play()
  361. local value = 1
  362. fxm.Scale = Vector3.new(1,1,1)
  363. for i = 1, 20 do rs:wait()
  364. value = value - 0.05
  365. fx.Transparency = fx.Transparency - (1/20)
  366. fx.CFrame = Torso.CFrame
  367. fxm.Scale = fxm.Scale + Vector3.new(value,value,value)
  368. rs:wait()
  369. end
  370. ----------------------------------------------------
  371. GroundWave1 = function()
  372. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  373. local Colors = {"Pastel blue-green", "Really black"}
  374. local wave = Instance.new("Part", Torso)
  375. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  376. wave.Anchored = true
  377. wave.CanCollide = false
  378. wave.Locked = true
  379. wave.Size = Vector3.new(1, 1, 1)
  380. wave.TopSurface = "Smooth"
  381. wave.BottomSurface = "Smooth"
  382. wave.Transparency = 0.35
  383. wave.CFrame = HandCF
  384. wm = Instance.new("SpecialMesh", wave)
  385. wm.MeshId = "rbxassetid://3270017"
  386. coroutine.wrap(function()
  387. for i = 1, 30, 1 do
  388. wm.Scale = Vector3.new(50, 50, 1 + i*50)
  389. wave.Size = wm.Scale
  390. wave.CFrame = HandCF
  391. wave.Transparency = i/30
  392. wait()
  393. end
  394. wait()
  395. wave:Destroy()
  396. end)()
  397. end
  398. ----------------------------------------------------
  399.  
  400.  
  401. GroundWave3 = function()
  402. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  403. local Colors = {"Really red", "Really red"}
  404. local wave = Instance.new("Part", torso)
  405. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  406. wave.Anchored = true
  407. wave.CanCollide = false
  408. wave.Locked = true
  409. wave.Size = Vector3.new(1, 1, 1)
  410. wave.TopSurface = "Smooth"
  411. wave.BottomSurface = "Smooth"
  412. wave.Transparency = 0.35
  413. wave.CFrame = HandCF
  414. wm = Instance.new("SpecialMesh", wave)
  415. wm.MeshId = "rbxassetid://3270017"
  416. coroutine.wrap(function()
  417. for i = 1, 14, 1 do
  418. wm.Scale = Vector3.new(1 + i*1.1, 1 + i*1.1, 1)
  419. wave.Size = wm.Scale
  420. wave.CFrame = HandCF
  421. wave.Transparency = i/14
  422. wait()
  423. end
  424. wait()
  425. wave:Destroy()
  426. end)()
  427. end
  428.  
  429.  
  430.  
  431.  
  432.  
  433. local acos = math.acos
  434. local sqrt = math.sqrt
  435. local Vec3 = Vector3.new
  436. local fromAxisAngle = CFrame.fromAxisAngle
  437.  
  438. local function toAxisAngle(CFr)
  439. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  440. local Angle = math.acos((R00+R11+R22-1)/2)
  441. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  442. A = A == 0 and 0.00001 or A
  443. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  444. B = B == 0 and 0.00001 or B
  445. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  446. C = C == 0 and 0.00001 or C
  447. local x = (R21-R12)/sqrt(A)
  448. local y = (R02-R20)/sqrt(B)
  449. local z = (R10-R01)/sqrt(C)
  450. return Vec3(x,y,z),Angle
  451. end
  452.  
  453. local acos = math.acos
  454. local sqrt = math.sqrt
  455. local Vec3 = Vector3.new
  456. local fromAxisAngle = CFrame.fromAxisAngle
  457.  
  458. local function toAxisAngle(CFr)
  459. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  460. local Angle = math.acos((R00+R11+R22-1)/2)
  461. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  462. A = A == 0 and 0.00001 or A
  463. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  464. B = B == 0 and 0.00001 or B
  465. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  466. C = C == 0 and 0.00001 or C
  467. local x = (R21-R12)/sqrt(A)
  468. local y = (R02-R20)/sqrt(B)
  469. local z = (R10-R01)/sqrt(C)
  470. return Vec3(x,y,z),Angle
  471. end
  472.  
  473. function ApplyTrig(Num,Func)
  474. local Min,Max = Func(0),Func(1)
  475. local i = Func(Num)
  476. return (i-Min)/(Max-Min)
  477. --[[if Func == "sin" then
  478. return (math.sin((1-Num)*math.pi)+1)/2
  479. elseif Func == "cos" then
  480. return (math.cos((1-Num)*math.pi)+1)/2
  481. end]]
  482. end
  483.  
  484. function LerpCFrame(CFrame1,CFrame2,Num)
  485. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  486. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  487. end
  488.  
  489.  
  490.  
  491. function Crater(Torso,Radius)
  492. Spawn(function()
  493. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  494. local Ignore = {}
  495. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  496. if v.Character ~= nil then
  497. Ignore[#Ignore+1] = v.Character
  498. end
  499. end
  500. local Hit,Pos,SurfaceNorm = workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  501. if Hit == nil then return end
  502. local Parts = {}
  503. for i = 1,360,10 do
  504. local P = Instance.new("Part",Torso.Parent)
  505. P.Anchored = true
  506. P.FormFactor = "Custom"
  507. P.BrickColor = BrickColor.new("Really red")
  508. P.Material = "Granite"
  509. P.TopSurface = "Smooth"
  510. P.BottomSurface = "Smooth"
  511. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  512. 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)))
  513. 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}
  514. if math.random(0,5) == 0 then -- rubble
  515. local P = Instance.new("Part",Torso.Parent)
  516. P.Anchored = true
  517. P.FormFactor = "Custom"
  518. P.BrickColor = BrickColor.new("Really red")
  519. P.Material = Hit.Material
  520. P.TopSurface = "Smooth"
  521. P.BottomSurface = "Smooth"
  522. P.Size = Vector3.new(5,5,5)*(math.random(80,100)/100)
  523. 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)))
  524. 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}
  525. end
  526. end
  527. for i = 0,1,0.05 do
  528. for i2,v in pairs(Parts) do
  529. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  530. end
  531. wait(0.02)
  532. end
  533. for i,v in pairs(Parts) do
  534. if v[1].Size.X > 2.1 then
  535. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  536. end
  537. v[1].Anchored = false
  538. end
  539. for i = 0,1,0.05 do
  540. for i2,v in pairs(Parts) do
  541. v[1].Transparency = i
  542. if i == 1 then
  543. v[1]:Destroy()
  544. elseif i >= 0.25 then
  545. v[1].CanCollide = false
  546. end
  547. end
  548. wait(0.02)
  549. end
  550. Parts = nil
  551. end)
  552. end
  553.  
  554.  
  555.  
  556. GroundWave = function()
  557. if Transforming == true then
  558. local value = 5
  559. local value2 = 10
  560. local value3 = 20
  561. local sa2 = Instance.new("Sound",Torso)
  562. sa2.SoundId = "rbxassetid://393621716"
  563. sa2.Pitch = 1
  564. sa2.Volume = 10
  565. sa2.Looped = false
  566. sa2:Play()
  567. local wave = Instance.new("Part", Torso)
  568. local glowz = Instance.new("ParticleEmitter",wave)
  569. glowz.LightEmission = 1
  570. glowz.Texture = "rbxassetid://284205403"
  571. glowz.Color = ColorSequence.new(wit)
  572. glowz.Size = NumberSequence.new(30)
  573. glowz.Speed = NumberRange.new(25,100)
  574. glowz.LockedToPart = false
  575. glowz.Transparency = NumberSequence.new(0.75)
  576. glowz.RotSpeed = NumberRange.new(-2000,2000)
  577. glowz.Lifetime = NumberRange.new(1)
  578. glowz.Rate = 50000
  579. glowz.VelocitySpread = 9001
  580. local glowz2 = Instance.new("ParticleEmitter",wave)
  581. glowz2.LightEmission = 1
  582. glowz.Texture = "rbxassetid://284205403"
  583. glowz2.Color = ColorSequence.new(wit)
  584. glowz2.Size = NumberSequence.new(30)
  585. glowz2.Speed = NumberRange.new(25,100)
  586. glowz2.LockedToPart = false
  587. glowz2.Transparency = NumberSequence.new(0.75)
  588. glowz2.RotSpeed = NumberRange.new(-2000,2000)
  589. glowz2.Lifetime = NumberRange.new(1)
  590. glowz2.Rate = 50000
  591. glowz2.VelocitySpread = 9001
  592. wave.BrickColor = BrickColor.new("Really black")
  593. wave.Anchored = true
  594. wave.CanCollide = false
  595. wave.Locked = true
  596. wave.Size = Vector3.new(1, 1, 1)
  597. wave.TopSurface = "Smooth"
  598. wave.BottomSurface = "Smooth"
  599. wave.Transparency = 0.35
  600. wave.CFrame = fx.CFrame
  601. wave.Material = "Neon"
  602. wm = Instance.new("SpecialMesh", wave)
  603. wm.MeshType = "Sphere"
  604. wm.Scale = Vector3.new(1,1,1)
  605. local wave2 = Instance.new("Part", Torso)
  606. wave2.BrickColor = TorsoColor
  607. wave2.Anchored = true
  608. wave2.CanCollide = false
  609. wave2.Locked = true
  610. wave2.Size = Vector3.new(1, 1, 1)
  611. wave2.TopSurface = "Smooth"
  612. wave2.BottomSurface = "Smooth"
  613. wave2.Transparency = 0.35
  614. wave2.CFrame = fx.CFrame
  615. wave2.Material = "Neon"
  616. wm2 = Instance.new("SpecialMesh", wave2)
  617. wm2.MeshType = "FileMesh"
  618. wm2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  619. wm2.Scale = Vector3.new(1,1,1)
  620. local wave3 = Instance.new("Part", Torso)
  621. wave3.BrickColor = BrickColor.new("Really black")
  622. wave3.Anchored = true
  623. wave3.CanCollide = false
  624. wave3.Locked = true
  625. wave3.Size = Vector3.new(1, 1, 1)
  626. wave3.TopSurface = "Smooth"
  627. wave3.BottomSurface = "Smooth"
  628. wave3.Transparency = 0.35
  629. wave3.CFrame = fx.CFrame
  630. wave3.Material = "Neon"
  631. wm3 = Instance.new("SpecialMesh", wave3)
  632. wm3.MeshType = "FileMesh"
  633. wm3.MeshId = "http://www.roblox.com/asset/?id=3270017"
  634. wm3.Scale = Vector3.new(1,1,1)
  635. coroutine.wrap(function()
  636. for i = 1, 18, 1 do
  637. value = value - 0.5
  638. value2 = value2 - 0.75*1.5
  639. value3 = value3 - 0.475*1.5
  640. wm.Scale = wm.Scale + Vector3.new(value*3.5,value*3.5,value*3.5)
  641. wm2.Scale = wm.Scale + Vector3.new(value2*3.5,value2*3.5,0.5)
  642. wm3.Scale = wm.Scale + Vector3.new(value3*3.5,value3*3.5,0.25)
  643. --wave.Size = wm.Scale
  644. wave.CFrame = fx.CFrame
  645. wave.Transparency = i/14
  646. --wave2.Size = wm2.Scale
  647. wave2.CFrame = fx.CFrame
  648. wave2.Rotation = Vector3.new(90, 0, 0)
  649. wave2.Transparency = i/14
  650. --wave3.Size = wm3.Scale
  651. wave3.CFrame = fx.CFrame
  652. wave3.Rotation = Vector3.new(90, 0, 0)
  653. wave3.Transparency = i/14
  654. wait()
  655. glowz.Rate = 0
  656. glowz2.Rate = 0
  657. end
  658. wait()
  659. wave:Destroy()
  660. wave2:Destroy()
  661. wave3:Destroy()
  662. end)()
  663. elseif Transforming == false then
  664. wait()
  665. end
  666. end
  667.  
  668. for i = 1, 100 do rs:wait()
  669. fx.CFrame = Torso.CFrame
  670. end
  671.  
  672. spawn(function()
  673. while wait(1) do
  674. GroundWave()
  675. end
  676. end)
  677.  
  678. wait(4)
  679.  
  680. Transforming = false
  681.  
  682.  
  683.  
  684. local value2 = 1
  685. for i = 1, 20 do rs:wait()
  686. value2 = value2 - 0.05
  687. glowz.Rate = 0
  688. glowz2.Rate = 0
  689. fx.Transparency = fx.Transparency + (1/20)
  690. fx.CFrame = torso.CFrame
  691. fxm.Scale = fxm.Scale + Vector3.new(value2,value2,value2)
  692. rs:wait()
  693. end
  694. glowz:Destroy()
  695. glowz2:Destroy()
  696.  
  697. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  698. local valuer = 5
  699. local valuer2 = 10
  700. local valuer3 = 15
  701. local sa2 = Instance.new("Sound",torso)
  702. sa2.SoundId = "rbxassetid://130972023"
  703. sa2.Pitch = 1
  704. sa2.Volume = 5
  705. sa2.Looped = false
  706. sa2:Play()
  707. local sar2 = Instance.new("Sound",torso)
  708. sar2.SoundId = "rbxassetid://153274423"
  709. sar2.Pitch = 1
  710. sar2.Volume = 5
  711. sar2.Looped = false
  712. sar2:Play()
  713. local Mus = Instance.new("Sound",torso)
  714. Mus.SoundId = "rbxassetid://934188073"
  715. Mus.Pitch = 1
  716. Mus.Volume = 6
  717. Mus.Looped = true
  718. Mus:Play()
  719. Crater(torso,67)
  720. local wave = Instance.new("Part", torso)
  721. wave.BrickColor = TorsoColor
  722. wave.Anchored = true
  723. wave.CanCollide = false
  724. wave.Locked = true
  725. wave.Size = Vector3.new(1, 1, 1)
  726. wave.TopSurface = "Smooth"
  727. wave.BottomSurface = "Smooth"
  728. wave.Transparency = 0.35
  729. wave.CFrame = HandCF
  730. wm = Instance.new("SpecialMesh", wave)
  731. wm.MeshId = "rbxassetid://3270017"
  732. local wave2 = Instance.new("Part", torso)
  733. wave2.BrickColor = BrickColor.new("Really black")
  734. wave2.Anchored = true
  735. wave2.CanCollide = false
  736. wave2.Locked = true
  737. wave2.Size = Vector3.new(1, 1, 1)
  738. wave2.TopSurface = "Smooth"
  739. wave2.BottomSurface = "Smooth"
  740. wave2.Transparency = 0.35
  741. wave2.CFrame = HandCF
  742. wm2 = Instance.new("SpecialMesh", wave2)
  743. wm2.MeshId = "rbxassetid://3270017"
  744. local wave3 = Instance.new("Part", torso)
  745. wave3.BrickColor = TorsoColor
  746. wave3.Anchored = true
  747. wave3.CanCollide = false
  748. wave3.Locked = true
  749. wave3.Size = Vector3.new(1, 1, 1)
  750. wave3.TopSurface = "Smooth"
  751. wave3.BottomSurface = "Smooth"
  752. wave3.Transparency = 0.35
  753. wave3.CFrame = HandCF
  754. wm3 = Instance.new("SpecialMesh", wave3)
  755. wm3.MeshId = "rbxassetid://3270017"
  756. coroutine.wrap(function()
  757. for i = 1, 14, 1 do
  758. valuer = valuer - 0.35
  759. valuer2 = valuer - 0.45
  760. valuer3 = valuer3 - 0.475
  761. wm.Scale = wm.Scale + Vector3.new(valuer*2.5,valuer*2.5, 1 + i*200)
  762. wave.Size = wm.Scale
  763. wave.CFrame = HandCF
  764. wave.Transparency = i/14
  765. wm2.Scale = wm2.Scale + Vector3.new(valuer2*2.5,valuer2*2.5, 0 + i*10)
  766. wave2.Size = wm2.Scale
  767. wave2.CFrame = HandCF
  768. wave2.Transparency = i/14
  769. wm3.Scale = wm3.Scale + Vector3.new(valuer3*2.5,valuer3*2.5, 1)
  770. wave3.Size = wm2.Scale
  771. wave3.CFrame = HandCF
  772. wave3.Transparency = i/14
  773. wait()
  774. end
  775. wait()
  776. wave:Destroy()
  777. wave2:Destroy()
  778. end)()
  779. hum.WalkSpeed = 16
  780.  
  781.  
  782.  
  783.  
  784.  
  785.  
  786.  
  787.  
  788.  
  789. CV="Pastel blue"
  790.  
  791. local txt = Instance.new("BillboardGui", Char)
  792. txt.Adornee = Char .Head
  793. txt.Name = "_status"
  794. txt.Size = UDim2.new(2, 0, 1.2, 0)
  795. txt.StudsOffset = Vector3.new(-9, 8, 0)
  796. local text = Instance.new("TextLabel", txt)
  797. text.Size = UDim2.new(10, 0, 7, 0)
  798. text.FontSize = "Size24"
  799. text.TextScaled = true
  800. text.TextTransparency = 0
  801. text.BackgroundTransparency = 1
  802. text.TextTransparency = 0
  803. text.TextStrokeTransparency = 0
  804. text.Font = "Antique"
  805. text.TextStrokeColor3 = Color3.new(0,255,0)
  806.  
  807. v=Instance.new("Part")
  808. v.Name = "ColorBrick"
  809. v.Parent=Player.Character
  810. v.FormFactor="Symmetric"
  811. v.Anchored=true
  812. v.CanCollide=false
  813. v.BottomSurface="Smooth"
  814. v.TopSurface="Smooth"
  815. v.Size=Vector3.new(10,5,3)
  816. v.Transparency=1
  817. v.CFrame=Char.Torso.CFrame
  818. v.BrickColor=BrickColor.new(CV)
  819. v.Transparency=1
  820. text.TextColor3 = Color3.new(0,0,0)
  821. v.Shape="Block"
  822. text.Text = Char.Name
  823.  
  824. Player:ClearCharacterAppearance()
  825. wait(0.1)
  826. Player.Character.Head.BrickColor = BrickColor.new("Really black")
  827. Player.Character.Torso.BrickColor = BrickColor.new("Really black")
  828. Player.Character["Right Arm"].BrickColor = BrickColor.new("Really black")
  829. Player.Character["Right Leg"].BrickColor = BrickColor.new("Really black")
  830. Player.Character["Left Leg"].BrickColor = BrickColor.new("Really black")
  831. Player.Character["Left Arm"].BrickColor = BrickColor.new("Really black")
  832. Player.Character.Head.face:Destroy()
  833.  
  834.  
  835.  
  836.  
  837.  
  838.  
  839.  
  840. local selectionBoxOfTorso = Instance.new("SelectionBox",Torso)
  841. selectionBoxOfTorso.Adornee = Torso
  842. selectionBoxOfTorso.Color = BrickColor.new("Really red")
  843. selectionBoxOfTorso.LineThickness = 0.01
  844. selectionBoxOfTorso.Transparency = 0
  845.  
  846. local selectionBoxOfRightArm = Instance.new("SelectionBox",Char["Right Arm"])
  847. selectionBoxOfRightArm.Adornee = Char["Right Arm"]
  848. selectionBoxOfRightArm.Color = BrickColor.new("Really red")
  849. selectionBoxOfRightArm.LineThickness = 0.01
  850. selectionBoxOfRightArm.Transparency = 0
  851.  
  852. local selectionBoxOfRightLeg = Instance.new("SelectionBox",Char["Right Leg"])
  853. selectionBoxOfRightLeg.Adornee = Char["Right Leg"]
  854. selectionBoxOfRightLeg.Color = BrickColor.new("Really red")
  855. selectionBoxOfRightLeg.LineThickness = 0.01
  856. selectionBoxOfRightLeg.Transparency = 0
  857.  
  858. local selectionBoxOfLeftArm = Instance.new("SelectionBox",Char["Left Arm"])
  859. selectionBoxOfLeftArm.Adornee = Char["Left Arm"]
  860. selectionBoxOfLeftArm.Color = BrickColor.new("Really red")
  861. selectionBoxOfLeftArm.LineThickness = 0.01
  862. selectionBoxOfLeftArm.Transparency = 0
  863.  
  864. local selectionBoxOfLeftLeg = Instance.new("SelectionBox",Char["Left Leg"])
  865. selectionBoxOfLeftLeg.Adornee = Char["Left Leg"]
  866. selectionBoxOfLeftLeg.Color = BrickColor.new("Really red")
  867. selectionBoxOfLeftLeg.LineThickness = 0.01
  868. selectionBoxOfLeftLeg.Transparency = 0
  869.  
  870.  
  871. LightOnBody = Instance.new("PointLight", Head)
  872. LightOnBody.Brightness = 3000
  873. LightOnBody.Range = 20
  874. LightOnBody.Color = Color3.new(0, 225, 0)
  875.  
  876.  
  877.  
  878. ----------------------------------------------------------------------
  879. local m2 = Instance.new("Model")
  880. m2.Name = "Wings"
  881. p1 = Instance.new("Part", m2)
  882. p1.BrickColor = BrickColor.new("Really red")
  883. p1.Material = Enum.Material.Neon
  884. p1.CFrame = CFrame.new(28.7928066, 27.8741341, 25.9347725, -0.579227924, -0.579227805, -0.573576331, 0.707106769, -0.707106769, 0, -0.405579776, -0.405579716, 0.819152117)
  885. p1.FormFactor = Enum.FormFactor.Custom
  886. p1.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  887. p1.BottomSurface = Enum.SurfaceType.Smooth
  888. p1.TopSurface = Enum.SurfaceType.Smooth
  889. b1 = Instance.new("SpecialMesh", p1)
  890. b1.MeshType = Enum.MeshType.Sphere
  891. b1.Name = "Mesh"
  892. p2 = Instance.new("Part", m2)
  893. p2.BrickColor = BrickColor.new("Really red")
  894. p2.Material = Enum.Material.SmoothPlastic
  895. p2.Reflectance = 0.30000001192093
  896. p2.CFrame = CFrame.new(23.8806973, 23.7568359, 26.9065781, -0.573576033, 0.346188396, -0.742403686, 0, -0.906307817, -0.422617972, -0.819152117, -0.24240382, 0.519836783)
  897. p2.CanCollide = false
  898. p2.FormFactor = Enum.FormFactor.Custom
  899. p2.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  900. p2.BottomSurface = Enum.SurfaceType.Smooth
  901. p2.TopSurface = Enum.SurfaceType.Smooth
  902. b2 = Instance.new("SpecialMesh", p2)
  903. b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  904. b2.TextureId = ""
  905. b2.MeshType = Enum.MeshType.FileMesh
  906. b2.Name = "Mesh"
  907. b2.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  908. p3 = Instance.new("Part", m2)
  909. p3.BrickColor = BrickColor.new("Really red")
  910. p3.Material = Enum.Material.SmoothPlastic
  911. p3.Reflectance = 0.30000001192093
  912. p3.CFrame = CFrame.new(23.7651176, 23.6910381, 26.9875221, -0.573576033, 0.346188247, -0.742403686, -2.40360578e-007, -0.906307697, -0.422617912, -0.819152117, -0.242403969, 0.519836664)
  913. p3.CanCollide = false
  914. p3.FormFactor = Enum.FormFactor.Custom
  915. p3.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  916. p3.BottomSurface = Enum.SurfaceType.Smooth
  917. p3.TopSurface = Enum.SurfaceType.Smooth
  918. b3 = Instance.new("SpecialMesh", p3)
  919. b3.MeshId = "http://www.roblox.com/asset/?id=3270017"
  920. b3.TextureId = ""
  921. b3.MeshType = Enum.MeshType.FileMesh
  922. b3.Name = "Mesh"
  923. b3.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  924. p4 = Instance.new("Part", m2)
  925. p4.BrickColor = BrickColor.new("Really red")
  926. p4.Material = Enum.Material.SmoothPlastic
  927. p4.Reflectance = 0.30000001192093
  928. p4.CFrame = CFrame.new(29.5663891, 25.8075085, 26.4371891, -0.573576391, 0.280166149, 0.769750714, 2.08616257e-007, -0.939692259, 0.342020333, 0.819151878, 0.196174487, 0.538985968)
  929. p4.CanCollide = false
  930. p4.FormFactor = Enum.FormFactor.Custom
  931. p4.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  932. p4.BottomSurface = Enum.SurfaceType.Smooth
  933. p4.TopSurface = Enum.SurfaceType.Smooth
  934. b4 = Instance.new("SpecialMesh", p4)
  935. b4.MeshId = "http://www.roblox.com/asset/?id=3270017"
  936. b4.TextureId = ""
  937. b4.MeshType = Enum.MeshType.FileMesh
  938. b4.Name = "Mesh"
  939. b4.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  940. p5 = Instance.new("Part", m2)
  941. p5.BrickColor = BrickColor.new("Really red")
  942. p5.Material = Enum.Material.SmoothPlastic
  943. p5.Reflectance = 0.30000001192093
  944. p5.CFrame = CFrame.new(23.880703, 23.7568455, 26.9065876, -0.573576212, 0.346188098, -0.742403805, -4.76837158e-007, -0.906307578, -0.422617912, -0.819152236, -0.242404133, 0.519836485)
  945. p5.CanCollide = false
  946. p5.FormFactor = Enum.FormFactor.Custom
  947. p5.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  948. p5.BottomSurface = Enum.SurfaceType.Smooth
  949. p5.TopSurface = Enum.SurfaceType.Smooth
  950. b5 = Instance.new("SpecialMesh", p5)
  951. b5.MeshId = "http://www.roblox.com/asset/?id=3270017"
  952. b5.TextureId = ""
  953. b5.MeshType = Enum.MeshType.FileMesh
  954. b5.Name = "Mesh"
  955. b5.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  956. p6 = Instance.new("Part", m2)
  957. p6.BrickColor = BrickColor.new("Really red")
  958. p6.Material = Enum.Material.SmoothPlastic
  959. p6.Reflectance = 0.30000001192093
  960. p6.CFrame = CFrame.new(23.6530266, 23.6272411, 27.0660267, -0.573576212, 0.346187949, -0.742403805, -7.17197622e-007, -0.906307459, -0.422617853, -0.819152236, -0.242404282, 0.519836366)
  961. p6.CanCollide = false
  962. p6.FormFactor = Enum.FormFactor.Custom
  963. p6.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  964. p6.BottomSurface = Enum.SurfaceType.Smooth
  965. p6.TopSurface = Enum.SurfaceType.Smooth
  966. b6 = Instance.new("SpecialMesh", p6)
  967. b6.MeshId = "http://www.roblox.com/asset/?id=3270017"
  968. b6.TextureId = ""
  969. b6.MeshType = Enum.MeshType.FileMesh
  970. b6.Name = "Mesh"
  971. b6.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  972. p7 = Instance.new("Part", m2)
  973. p7.BrickColor = BrickColor.new("Really red")
  974. p7.Material = Enum.Material.SmoothPlastic
  975. p7.Reflectance = 0.30000001192093
  976. p7.CFrame = CFrame.new(23.7651253, 23.6910515, 26.9875393, -0.573576212, 0.3461878, -0.742403805, -9.57558086e-007, -0.90630734, -0.422617793, -0.819152236, -0.242404431, 0.519836247)
  977. p7.CanCollide = false
  978. p7.FormFactor = Enum.FormFactor.Custom
  979. p7.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  980. p7.BottomSurface = Enum.SurfaceType.Smooth
  981. p7.TopSurface = Enum.SurfaceType.Smooth
  982. b7 = Instance.new("SpecialMesh", p7)
  983. b7.MeshId = "http://www.roblox.com/asset/?id=3270017"
  984. b7.TextureId = ""
  985. b7.MeshType = Enum.MeshType.FileMesh
  986. b7.Name = "Mesh"
  987. b7.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  988. p8 = Instance.new("Part", m2)
  989. p8.BrickColor = BrickColor.new("Really red")
  990. p8.Material = Enum.Material.SmoothPlastic
  991. p8.Reflectance = 0.30000001192093
  992. p8.CFrame = CFrame.new(23.6530304, 23.6272488, 27.0660381, -0.573576212, 0.346187651, -0.742403805, -1.19791855e-006, -0.90630722, -0.422617733, -0.819152236, -0.24240458, 0.519836128)
  993. p8.CanCollide = false
  994. p8.FormFactor = Enum.FormFactor.Custom
  995. p8.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  996. p8.BottomSurface = Enum.SurfaceType.Smooth
  997. p8.TopSurface = Enum.SurfaceType.Smooth
  998. b8 = Instance.new("SpecialMesh", p8)
  999. b8.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1000. b8.TextureId = ""
  1001. b8.MeshType = Enum.MeshType.FileMesh
  1002. b8.Name = "Mesh"
  1003. b8.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1004. p9 = Instance.new("Part", m2)
  1005. p9.BrickColor = BrickColor.new("Really red")
  1006. p9.Material = Enum.Material.SmoothPlastic
  1007. p9.Reflectance = 0.30000001192093
  1008. p9.CFrame = CFrame.new(30.2536392, 23.691061, 26.9184284, -0.573576212, -0.346188962, 0.74240309, 4.47034836e-007, -0.906307578, -0.422616601, 0.81915164, -0.242404819, 0.519836843)
  1009. p9.CanCollide = false
  1010. p9.FormFactor = Enum.FormFactor.Custom
  1011. p9.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1012. p9.BottomSurface = Enum.SurfaceType.Smooth
  1013. p9.TopSurface = Enum.SurfaceType.Smooth
  1014. b9 = Instance.new("SpecialMesh", p9)
  1015. b9.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1016. b9.TextureId = ""
  1017. b9.MeshType = Enum.MeshType.FileMesh
  1018. b9.Name = "Mesh"
  1019. b9.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1020. p10 = Instance.new("Part", m2)
  1021. p10.BrickColor = BrickColor.new("Really red")
  1022. p10.Material = Enum.Material.SmoothPlastic
  1023. p10.Reflectance = 0.30000001192093
  1024. p10.CFrame = CFrame.new(27.9471893, 26.8180733, 25.3034286, -0.573576212, 0.469845235, 0.671010077, 2.86794574e-007, -0.819150567, 0.573576927, 0.81915164, 0.328989446, 0.469847172)
  1025. p10.CanCollide = false
  1026. p10.FormFactor = Enum.FormFactor.Custom
  1027. p10.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1028. p10.BottomSurface = Enum.SurfaceType.Smooth
  1029. p10.TopSurface = Enum.SurfaceType.Smooth
  1030. b10 = Instance.new("SpecialMesh", p10)
  1031. b10.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1032. b10.TextureId = ""
  1033. b10.MeshType = Enum.MeshType.FileMesh
  1034. b10.Name = "Mesh"
  1035. b10.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1036. p11 = Instance.new("Part", m2)
  1037. p11.BrickColor = BrickColor.new("Really red")
  1038. p11.Material = Enum.Material.SmoothPlastic
  1039. p11.Reflectance = 0.30000001192093
  1040. p11.CFrame = CFrame.new(27.8153667, 25.7751122, 25.211132, -0.573576212, 0.469845206, 0.671010017, 3.03888498e-007, -0.819150567, 0.573576987, 0.81915164, 0.328989416, 0.469847172)
  1041. p11.CanCollide = false
  1042. p11.FormFactor = Enum.FormFactor.Custom
  1043. p11.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1044. p11.BottomSurface = Enum.SurfaceType.Smooth
  1045. p11.TopSurface = Enum.SurfaceType.Smooth
  1046. b11 = Instance.new("SpecialMesh", p11)
  1047. b11.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1048. b11.TextureId = ""
  1049. b11.MeshType = Enum.MeshType.FileMesh
  1050. b11.Name = "Mesh"
  1051. b11.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1052. p12 = Instance.new("Part", m2)
  1053. p12.BrickColor = BrickColor.new("Really red")
  1054. p12.Material = Enum.Material.SmoothPlastic
  1055. p12.Reflectance = 0.30000001192093
  1056. p12.CFrame = CFrame.new(29.655653, 24.6090927, 26.4997177, -0.573576212, 0.212011248, 0.791239619, 2.79475898e-007, -0.965924561, 0.258820325, 0.81915164, 0.14845185, 0.554032922)
  1057. p12.CanCollide = false
  1058. p12.FormFactor = Enum.FormFactor.Custom
  1059. p12.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1060. p12.BottomSurface = Enum.SurfaceType.Smooth
  1061. p12.TopSurface = Enum.SurfaceType.Smooth
  1062. b12 = Instance.new("SpecialMesh", p12)
  1063. b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1064. b12.TextureId = ""
  1065. b12.MeshType = Enum.MeshType.FileMesh
  1066. b12.Name = "Mesh"
  1067. b12.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1068. p13 = Instance.new("Part", m2)
  1069. p13.BrickColor = BrickColor.new("Really red")
  1070. p13.Material = Enum.Material.SmoothPlastic
  1071. p13.Reflectance = 0.30000001192093
  1072. p13.CFrame = CFrame.new(27.9198303, 25.8644161, 25.2842865, -0.573576212, 0.469845116, 0.671010017, 2.51205847e-007, -0.819150507, 0.573577106, 0.81915164, 0.328989446, 0.469847202)
  1073. p13.CanCollide = false
  1074. p13.FormFactor = Enum.FormFactor.Custom
  1075. p13.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1076. p13.BottomSurface = Enum.SurfaceType.Smooth
  1077. p13.TopSurface = Enum.SurfaceType.Smooth
  1078. b13 = Instance.new("SpecialMesh", p13)
  1079. b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1080. b13.TextureId = ""
  1081. b13.MeshType = Enum.MeshType.FileMesh
  1082. b13.Name = "Mesh"
  1083. b13.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1084. p14 = Instance.new("Part", m2)
  1085. p14.BrickColor = BrickColor.new("Really red")
  1086. p14.Material = Enum.Material.SmoothPlastic
  1087. p14.Reflectance = 0.30000001192093
  1088. p14.CFrame = CFrame.new(29.778841, 24.6493893, 26.5859776, -0.573576212, 0.212011158, 0.791239619, 2.26793262e-007, -0.965924621, 0.258820474, 0.81915164, 0.148451865, 0.554032922)
  1089. p14.CanCollide = false
  1090. p14.FormFactor = Enum.FormFactor.Custom
  1091. p14.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1092. p14.BottomSurface = Enum.SurfaceType.Smooth
  1093. p14.TopSurface = Enum.SurfaceType.Smooth
  1094. b14 = Instance.new("SpecialMesh", p14)
  1095. b14.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1096. b14.TextureId = ""
  1097. b14.MeshType = Enum.MeshType.FileMesh
  1098. b14.Name = "Mesh"
  1099. b14.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1100. p15 = Instance.new("Part", m2)
  1101. p15.BrickColor = BrickColor.new("Really red")
  1102. p15.Material = Enum.Material.SmoothPlastic
  1103. p15.Reflectance = 0.30000001192093
  1104. p15.CFrame = CFrame.new(29.3303242, 25.7026424, 26.271925, -0.573576212, 0.280165315, 0.769750893, 1.98523225e-007, -0.939691305, 0.342021316, 0.81915164, 0.196174055, 0.538986266)
  1105. p15.CanCollide = false
  1106. p15.FormFactor = Enum.FormFactor.Custom
  1107. p15.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1108. p15.BottomSurface = Enum.SurfaceType.Smooth
  1109. p15.TopSurface = Enum.SurfaceType.Smooth
  1110. b15 = Instance.new("SpecialMesh", p15)
  1111. b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1112. b15.TextureId = ""
  1113. b15.MeshType = Enum.MeshType.FileMesh
  1114. b15.Name = "Mesh"
  1115. b15.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1116. p16 = Instance.new("Part", m2)
  1117. p16.BrickColor = BrickColor.new("Really red")
  1118. p16.Material = Enum.Material.SmoothPlastic
  1119. p16.Reflectance = 0.30000001192093
  1120. p16.CFrame = CFrame.new(29.8983212, 24.6884689, 26.6696377, -0.573576272, 0.212011099, 0.791239798, 1.39939146e-007, -0.965924501, 0.258820534, 0.81915158, 0.148451924, 0.554033041)
  1121. p16.CanCollide = false
  1122. p16.FormFactor = Enum.FormFactor.Custom
  1123. p16.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1124. p16.BottomSurface = Enum.SurfaceType.Smooth
  1125. p16.TopSurface = Enum.SurfaceType.Smooth
  1126. b16 = Instance.new("SpecialMesh", p16)
  1127. b16.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1128. b16.TextureId = ""
  1129. b16.MeshType = Enum.MeshType.FileMesh
  1130. b16.Name = "Mesh"
  1131. b16.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1132. p17 = Instance.new("Part", m2)
  1133. p17.BrickColor = BrickColor.new("Really red")
  1134. p17.Material = Enum.Material.SmoothPlastic
  1135. p17.Reflectance = 0.30000001192093
  1136. p17.CFrame = CFrame.new(29.5664043, 25.8075294, 26.4372196, -0.573576272, 0.280165255, 0.769751072, 1.1166911e-007, -0.939691126, 0.342021376, 0.81915158, 0.196174115, 0.538986385)
  1137. p17.CanCollide = false
  1138. p17.FormFactor = Enum.FormFactor.Custom
  1139. p17.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1140. p17.BottomSurface = Enum.SurfaceType.Smooth
  1141. p17.TopSurface = Enum.SurfaceType.Smooth
  1142. b17 = Instance.new("SpecialMesh", p17)
  1143. b17.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1144. b17.TextureId = ""
  1145. b17.MeshType = Enum.MeshType.FileMesh
  1146. b17.Name = "Mesh"
  1147. b17.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1148. p18 = Instance.new("Part", m2)
  1149. p18.BrickColor = BrickColor.new("Really red")
  1150. p18.Material = Enum.Material.SmoothPlastic
  1151. p18.Reflectance = 0.30000001192093
  1152. p18.CFrame = CFrame.new(28.021162, 25.9510212, 25.3552322, -0.573576331, 0.469845086, 0.671010435, 8.10900147e-008, -0.819150269, 0.573577285, 0.819151521, 0.328989595, 0.469847381)
  1153. p18.CanCollide = false
  1154. p18.FormFactor = Enum.FormFactor.Custom
  1155. p18.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1156. p18.BottomSurface = Enum.SurfaceType.Smooth
  1157. p18.TopSurface = Enum.SurfaceType.Smooth
  1158. b18 = Instance.new("SpecialMesh", p18)
  1159. b18.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1160. b18.TextureId = ""
  1161. b18.MeshType = Enum.MeshType.FileMesh
  1162. b18.Name = "Mesh"
  1163. b18.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1164. p19 = Instance.new("Part", m2)
  1165. p19.BrickColor = BrickColor.new("Really red")
  1166. p19.Material = Enum.Material.SmoothPlastic
  1167. p19.Reflectance = 0.30000001192093
  1168. p19.CFrame = CFrame.new(30.3657436, 23.6272507, 26.9969234, -0.573576272, -0.346189439, 0.74240303, -9.24166343e-009, -0.906307697, -0.422616035, 0.819151521, -0.242404714, 0.519837141)
  1169. p19.CanCollide = false
  1170. p19.FormFactor = Enum.FormFactor.Custom
  1171. p19.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1172. p19.BottomSurface = Enum.SurfaceType.Smooth
  1173. p19.TopSurface = Enum.SurfaceType.Smooth
  1174. b19 = Instance.new("SpecialMesh", p19)
  1175. b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1176. b19.TextureId = ""
  1177. b19.MeshType = Enum.MeshType.FileMesh
  1178. b19.Name = "Mesh"
  1179. b19.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1180. p20 = Instance.new("Part", m2)
  1181. p20.BrickColor = BrickColor.new("Really red")
  1182. p20.Material = Enum.Material.SmoothPlastic
  1183. p20.Reflectance = 0.30000001192093
  1184. p20.CFrame = CFrame.new(30.2536469, 23.6910553, 26.9184265, -0.573576272, -0.346189529, 0.742402911, -2.63107069e-007, -0.906307518, -0.422615975, 0.819151521, -0.242404476, 0.519837141)
  1185. p20.CanCollide = false
  1186. p20.FormFactor = Enum.FormFactor.Custom
  1187. p20.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1188. p20.BottomSurface = Enum.SurfaceType.Smooth
  1189. p20.TopSurface = Enum.SurfaceType.Smooth
  1190. b20 = Instance.new("SpecialMesh", p20)
  1191. b20.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1192. b20.TextureId = ""
  1193. b20.MeshType = Enum.MeshType.FileMesh
  1194. b20.Name = "Mesh"
  1195. b20.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1196. p21 = Instance.new("Part", m2)
  1197. p21.BrickColor = BrickColor.new("Really red")
  1198. p21.Material = Enum.Material.SmoothPlastic
  1199. p21.Reflectance = 0.30000001192093
  1200. p21.CFrame = CFrame.new(27.8458843, 26.7314644, 25.2324886, -0.573576272, 0.469844759, 0.671010494, -4.23347274e-007, -0.819149971, 0.573577166, 0.819151521, 0.328989863, 0.469847023)
  1201. p21.CanCollide = false
  1202. p21.FormFactor = Enum.FormFactor.Custom
  1203. p21.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1204. p21.BottomSurface = Enum.SurfaceType.Smooth
  1205. p21.TopSurface = Enum.SurfaceType.Smooth
  1206. b21 = Instance.new("SpecialMesh", p21)
  1207. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1208. b21.TextureId = ""
  1209. b21.MeshType = Enum.MeshType.FileMesh
  1210. b21.Name = "Mesh"
  1211. b21.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1212. p22 = Instance.new("Part", m2)
  1213. p22.BrickColor = BrickColor.new("Really red")
  1214. p22.Material = Enum.Material.SmoothPlastic
  1215. p22.Reflectance = 0.30000001192093
  1216. p22.CFrame = CFrame.new(30.1380615, 23.756855, 26.8374882, -0.573576212, -0.346189648, 0.742402732, -5.1367897e-007, -0.906307459, -0.422615856, 0.819151521, -0.242404282, 0.519837141)
  1217. p22.CanCollide = false
  1218. p22.FormFactor = Enum.FormFactor.Custom
  1219. p22.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1220. p22.BottomSurface = Enum.SurfaceType.Smooth
  1221. p22.TopSurface = Enum.SurfaceType.Smooth
  1222. b22 = Instance.new("SpecialMesh", p22)
  1223. b22.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1224. b22.TextureId = ""
  1225. b22.MeshType = Enum.MeshType.FileMesh
  1226. b22.Name = "Mesh"
  1227. b22.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1228. p23 = Instance.new("Part", m2)
  1229. p23.BrickColor = BrickColor.new("Really red")
  1230. p23.Material = Enum.Material.SmoothPlastic
  1231. p23.Reflectance = 0.30000001192093
  1232. p23.CFrame = CFrame.new(29.4501858, 25.7558784, 26.3558216, -0.573576212, 0.280164778, 0.769751191, -6.73919146e-007, -0.939690709, 0.342021406, 0.819151521, 0.196174636, 0.538986027)
  1233. p23.CanCollide = false
  1234. p23.FormFactor = Enum.FormFactor.Custom
  1235. p23.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1236. p23.BottomSurface = Enum.SurfaceType.Smooth
  1237. p23.TopSurface = Enum.SurfaceType.Smooth
  1238. b23 = Instance.new("SpecialMesh", p23)
  1239. b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1240. b23.TextureId = ""
  1241. b23.MeshType = Enum.MeshType.FileMesh
  1242. b23.Name = "Mesh"
  1243. b23.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1244. p24 = Instance.new("Part", m2)
  1245. p24.BrickColor = BrickColor.new("Really red")
  1246. p24.Material = Enum.Material.SmoothPlastic
  1247. p24.Reflectance = 0.30000001192093
  1248. p24.CFrame = CFrame.new(29.3303471, 25.702631, 26.2719078, -0.573576272, 0.280164808, 0.76975143, -7.04498234e-007, -0.939690709, 0.342021465, 0.819151461, 0.196174651, 0.538986087)
  1249. p24.CanCollide = false
  1250. p24.FormFactor = Enum.FormFactor.Custom
  1251. p24.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1252. p24.BottomSurface = Enum.SurfaceType.Smooth
  1253. p24.TopSurface = Enum.SurfaceType.Smooth
  1254. b24 = Instance.new("SpecialMesh", p24)
  1255. b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1256. b24.TextureId = ""
  1257. b24.MeshType = Enum.MeshType.FileMesh
  1258. b24.Name = "Mesh"
  1259. b24.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1260. p25 = Instance.new("Part", m2)
  1261. p25.BrickColor = BrickColor.new("Really red")
  1262. p25.Material = Enum.Material.SmoothPlastic
  1263. p25.Reflectance = 0.30000001192093
  1264. p25.CFrame = CFrame.new(29.7788715, 24.6493816, 26.5859661, -0.573576331, 0.212010548, 0.791240335, -7.63082312e-007, -0.965923905, 0.258820742, 0.819151402, 0.14845252, 0.554032862)
  1265. p25.CanCollide = false
  1266. p25.FormFactor = Enum.FormFactor.Custom
  1267. p25.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1268. p25.BottomSurface = Enum.SurfaceType.Smooth
  1269. p25.TopSurface = Enum.SurfaceType.Smooth
  1270. b25 = Instance.new("SpecialMesh", p25)
  1271. b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1272. b25.TextureId = ""
  1273. b25.MeshType = Enum.MeshType.FileMesh
  1274. b25.Name = "Mesh"
  1275. b25.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1276. p26 = Instance.new("Part", m2)
  1277. p26.BrickColor = BrickColor.new("Really red")
  1278. p26.Material = Enum.Material.SmoothPlastic
  1279. p26.Reflectance = 0.30000001192093
  1280. p26.CFrame = CFrame.new(29.450201, 25.7558823, 26.3558235, -0.573576331, 0.280164748, 0.769751668, -7.91352306e-007, -0.93969059, 0.342021525, 0.819151402, 0.196174681, 0.538986146)
  1281. p26.CanCollide = false
  1282. p26.FormFactor = Enum.FormFactor.Custom
  1283. p26.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1284. p26.BottomSurface = Enum.SurfaceType.Smooth
  1285. p26.TopSurface = Enum.SurfaceType.Smooth
  1286. b26 = Instance.new("SpecialMesh", p26)
  1287. b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1288. b26.TextureId = ""
  1289. b26.MeshType = Enum.MeshType.FileMesh
  1290. b26.Name = "Mesh"
  1291. b26.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1292. p27 = Instance.new("Part", m2)
  1293. p27.BrickColor = BrickColor.new("Really red")
  1294. p27.Material = Enum.Material.SmoothPlastic
  1295. p27.Reflectance = 0.30000001192093
  1296. p27.CFrame = CFrame.new(30.3657703, 23.6272449, 26.9969063, -0.57357645, -0.346190155, 0.74240309, -9.161393e-007, -0.90630734, -0.422615707, 0.819151342, -0.242404088, 0.51983732)
  1297. p27.CanCollide = false
  1298. p27.FormFactor = Enum.FormFactor.Custom
  1299. p27.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1300. p27.BottomSurface = Enum.SurfaceType.Smooth
  1301. p27.TopSurface = Enum.SurfaceType.Smooth
  1302. b27 = Instance.new("SpecialMesh", p27)
  1303. b27.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1304. b27.TextureId = ""
  1305. b27.MeshType = Enum.MeshType.FileMesh
  1306. b27.Name = "Mesh"
  1307. b27.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1308. p28 = Instance.new("Part", m2)
  1309. p28.BrickColor = BrickColor.new("Really red")
  1310. p28.Material = Enum.Material.SmoothPlastic
  1311. p28.Reflectance = 0.30000001192093
  1312. p28.CFrame = CFrame.new(28.0211868, 25.9510098, 25.3552094, -0.57357645, 0.469844639, 0.67101109, -1.07637948e-006, -0.819149673, 0.573577106, 0.819151342, 0.328990191, 0.469846785)
  1313. p28.CanCollide = false
  1314. p28.FormFactor = Enum.FormFactor.Custom
  1315. p28.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1316. p28.BottomSurface = Enum.SurfaceType.Smooth
  1317. p28.TopSurface = Enum.SurfaceType.Smooth
  1318. b28 = Instance.new("SpecialMesh", p28)
  1319. b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1320. b28.TextureId = ""
  1321. b28.MeshType = Enum.MeshType.FileMesh
  1322. b28.Name = "Mesh"
  1323. b28.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1324. p29 = Instance.new("Part", m2)
  1325. p29.BrickColor = BrickColor.new("Really red")
  1326. p29.Material = Enum.Material.Neon
  1327. p29.CFrame = CFrame.new(31.2683067, 23.2277946, 27.6474876, 0.280168235, -0.769749522, -0.573576212, 0.939691305, 0.342017233, -1.0690095e-006, 0.19617486, -0.538985491, 0.819151521)
  1328. p29.FormFactor = Enum.FormFactor.Custom
  1329. p29.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  1330. p29.BottomSurface = Enum.SurfaceType.Smooth
  1331. p29.TopSurface = Enum.SurfaceType.Smooth
  1332. b29 = Instance.new("SpecialMesh", p29)
  1333. b29.MeshType = Enum.MeshType.Sphere
  1334. b29.Name = "Mesh"
  1335. p30 = Instance.new("Part", m2)
  1336. p30.BrickColor = BrickColor.new("Really red")
  1337. p30.Material = Enum.Material.SmoothPlastic
  1338. p30.Reflectance = 0.30000001192093
  1339. p30.CFrame = CFrame.new(29.655632, 24.6090698, 26.4996777, -0.573576212, 0.2120094, 0.791238904, -1.13902195e-006, -0.965922236, 0.258820891, 0.819151521, 0.148452237, 0.554032147)
  1340. p30.CanCollide = false
  1341. p30.FormFactor = Enum.FormFactor.Custom
  1342. p30.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1343. p30.BottomSurface = Enum.SurfaceType.Smooth
  1344. p30.TopSurface = Enum.SurfaceType.Smooth
  1345. b30 = Instance.new("SpecialMesh", p30)
  1346. b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1347. b30.TextureId = ""
  1348. b30.MeshType = Enum.MeshType.FileMesh
  1349. b30.Name = "Mesh"
  1350. b30.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1351. p31 = Instance.new("Part", m2)
  1352. p31.BrickColor = BrickColor.new("Really red")
  1353. p31.Material = Enum.Material.SmoothPlastic
  1354. p31.Reflectance = 0.30000001192093
  1355. p31.CFrame = CFrame.new(30.138031, 23.7568359, 26.8374538, -0.573576212, -0.346189976, 0.742401063, -1.26856219e-006, -0.906306148, -0.422614396, 0.819151521, -0.242403775, 0.519836485)
  1356. p31.CanCollide = false
  1357. p31.FormFactor = Enum.FormFactor.Custom
  1358. p31.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1359. p31.BottomSurface = Enum.SurfaceType.Smooth
  1360. p31.TopSurface = Enum.SurfaceType.Smooth
  1361. b31 = Instance.new("SpecialMesh", p31)
  1362. b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1363. b31.TextureId = ""
  1364. b31.MeshType = Enum.MeshType.FileMesh
  1365. b31.Name = "Mesh"
  1366. b31.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1367. p32 = Instance.new("Part", m2)
  1368. p32.BrickColor = BrickColor.new("Really red")
  1369. p32.Material = Enum.Material.SmoothPlastic
  1370. p32.Reflectance = 0.30000001192093
  1371. p32.CFrame = CFrame.new(27.741394, 26.6421375, 25.1592979, -0.573576212, 0.469842911, 0.671009958, -1.42880219e-006, -0.819147944, 0.573576748, 0.819151521, 0.328989625, 0.4698461)
  1372. p32.CanCollide = false
  1373. p32.FormFactor = Enum.FormFactor.Custom
  1374. p32.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1375. p32.BottomSurface = Enum.SurfaceType.Smooth
  1376. p32.TopSurface = Enum.SurfaceType.Smooth
  1377. b32 = Instance.new("SpecialMesh", p32)
  1378. b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1379. b32.TextureId = ""
  1380. b32.MeshType = Enum.MeshType.FileMesh
  1381. b32.Name = "Mesh"
  1382. b32.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1383. p33 = Instance.new("Part", m2)
  1384. p33.BrickColor = BrickColor.new("Really red")
  1385. p33.Material = Enum.Material.Neon
  1386. p33.CFrame = CFrame.new(32.7100258, 25.2490444, 28.6569691, -0.14224124, -0.806705832, -0.573576093, 0.984804153, -0.173650295, -1.38238238e-006, -0.0996002704, -0.564861953, 0.819151759)
  1387. p33.FormFactor = Enum.FormFactor.Custom
  1388. p33.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  1389. p33.BottomSurface = Enum.SurfaceType.Smooth
  1390. p33.TopSurface = Enum.SurfaceType.Smooth
  1391. b33 = Instance.new("SpecialMesh", p33)
  1392. b33.MeshType = Enum.MeshType.Sphere
  1393. b33.Name = "Mesh"
  1394. p34 = Instance.new("Part", m2)
  1395. p34.BrickColor = BrickColor.new("Really red")
  1396. p34.Material = Enum.Material.SmoothPlastic
  1397. p34.Reflectance = 0.30000001192093
  1398. p34.CFrame = CFrame.new(27.919817, 25.8643856, 25.2842369, -0.573576391, 0.469842792, 0.671009898, -1.37759764e-006, -0.819147885, 0.573576868, 0.8191517, 0.328989476, 0.46984604)
  1399. p34.CanCollide = false
  1400. p34.FormFactor = Enum.FormFactor.Custom
  1401. p34.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1402. p34.BottomSurface = Enum.SurfaceType.Smooth
  1403. p34.TopSurface = Enum.SurfaceType.Smooth
  1404. b34 = Instance.new("SpecialMesh", p34)
  1405. b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1406. b34.TextureId = ""
  1407. b34.MeshType = Enum.MeshType.FileMesh
  1408. b34.Name = "Mesh"
  1409. b34.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1410. p35 = Instance.new("Part", m2)
  1411. p35.BrickColor = BrickColor.new("Really red")
  1412. p35.Material = Enum.Material.SmoothPlastic
  1413. p35.Reflectance = 0.30000001192093
  1414. p35.CFrame = CFrame.new(29.8982925, 24.6884441, 26.6695824, -0.573576391, 0.212008998, 0.791238666, -1.40201018e-006, -0.965921998, 0.25882113, 0.8191517, 0.148452297, 0.554031909)
  1415. p35.CanCollide = false
  1416. p35.FormFactor = Enum.FormFactor.Custom
  1417. p35.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1418. p35.BottomSurface = Enum.SurfaceType.Smooth
  1419. p35.TopSurface = Enum.SurfaceType.Smooth
  1420. b35 = Instance.new("SpecialMesh", p35)
  1421. b35.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1422. b35.TextureId = ""
  1423. b35.MeshType = Enum.MeshType.FileMesh
  1424. b35.Name = "Mesh"
  1425. b35.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1426. p36 = Instance.new("Part", m2)
  1427. p36.BrickColor = BrickColor.new("Really red")
  1428. p36.Material = Enum.Material.SmoothPlastic
  1429. p36.Reflectance = 0.30000001192093
  1430. p36.CFrame = CFrame.new(27.8153496, 25.7750854, 25.2110863, -0.573576391, 0.469842672, 0.671009898, -1.43028012e-006, -0.819147885, 0.573576927, 0.8191517, 0.328989506, 0.4698461)
  1431. p36.CanCollide = false
  1432. p36.FormFactor = Enum.FormFactor.Custom
  1433. p36.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1434. p36.BottomSurface = Enum.SurfaceType.Smooth
  1435. p36.TopSurface = Enum.SurfaceType.Smooth
  1436. b36 = Instance.new("SpecialMesh", p36)
  1437. b36.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1438. b36.TextureId = ""
  1439. b36.MeshType = Enum.MeshType.FileMesh
  1440. b36.Name = "Mesh"
  1441. b36.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1442. p37 = Instance.new("Part", m2)
  1443. p37.BrickColor = BrickColor.new("Really red")
  1444. p37.Material = Enum.Material.Neon
  1445. p37.CFrame = CFrame.new(30.7430439, 27.8460693, 27.2796841, -0.409572512, -0.709406137, -0.573576272, 0.866021335, -0.500000834, -1.38386031e-006, -0.286787719, -0.49673146, 0.819151938)
  1446. p37.FormFactor = Enum.FormFactor.Custom
  1447. p37.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  1448. p37.BottomSurface = Enum.SurfaceType.Smooth
  1449. p37.TopSurface = Enum.SurfaceType.Smooth
  1450. b37 = Instance.new("SpecialMesh", p37)
  1451. b37.MeshType = Enum.MeshType.Sphere
  1452. b37.Name = "Mesh"
  1453. p38 = Instance.new("Part", m2)
  1454. p38.BrickColor = BrickColor.new("Really red")
  1455. p38.Material = Enum.Material.Neon
  1456. p38.CFrame = CFrame.new(32.7113533, 27.1965656, 28.6579113, -0.28016308, -0.769750178, -0.573576272, 0.939688683, -0.342021704, -1.3540581e-006, -0.196174175, -0.538985133, 0.819152057)
  1457. p38.FormFactor = Enum.FormFactor.Custom
  1458. p38.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918)
  1459. p38.BottomSurface = Enum.SurfaceType.Smooth
  1460. p38.TopSurface = Enum.SurfaceType.Smooth
  1461. b38 = Instance.new("SpecialMesh", p38)
  1462. b38.MeshType = Enum.MeshType.Sphere
  1463. b38.Name = "Mesh"
  1464. p39 = Instance.new("Part", m2)
  1465. p39.BrickColor = BrickColor.new("Really red")
  1466. p39.Material = Enum.Material.SmoothPlastic
  1467. p39.Reflectance = 0.30000001192093
  1468. p39.CFrame = CFrame.new(26.2033787, 25.7750854, 25.2801971, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
  1469. p39.CanCollide = false
  1470. p39.FormFactor = Enum.FormFactor.Custom
  1471. p39.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1472. p39.BottomSurface = Enum.SurfaceType.Smooth
  1473. p39.TopSurface = Enum.SurfaceType.Smooth
  1474. b39 = Instance.new("SpecialMesh", p39)
  1475. b39.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1476. b39.TextureId = ""
  1477. b39.MeshType = Enum.MeshType.FileMesh
  1478. b39.Name = "Mesh"
  1479. b39.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1480. p40 = Instance.new("Part", m2)
  1481. p40.BrickColor = BrickColor.new("Really red")
  1482. p40.Material = Enum.Material.SmoothPlastic
  1483. p40.Reflectance = 0.30000001192093
  1484. p40.CFrame = CFrame.new(25.9975967, 25.9509888, 25.4242878, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
  1485. p40.CanCollide = false
  1486. p40.FormFactor = Enum.FormFactor.Custom
  1487. p40.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1488. p40.BottomSurface = Enum.SurfaceType.Smooth
  1489. p40.TopSurface = Enum.SurfaceType.Smooth
  1490. b40 = Instance.new("SpecialMesh", p40)
  1491. b40.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1492. b40.TextureId = ""
  1493. b40.MeshType = Enum.MeshType.FileMesh
  1494. b40.Name = "Mesh"
  1495. b40.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1496. p41 = Instance.new("Part", m2)
  1497. p41.BrickColor = BrickColor.new("Really red")
  1498. p41.Material = Enum.Material.SmoothPlastic
  1499. p41.Reflectance = 0.30000001192093
  1500. p41.CFrame = CFrame.new(26.098917, 25.8643856, 25.3533516, -0.573574483, -0.469848186, -0.671007693, -2.18929154e-006, -0.819150686, 0.573572934, -0.819151402, 0.328989863, 0.469846785)
  1501. p41.CanCollide = false
  1502. p41.FormFactor = Enum.FormFactor.Custom
  1503. p41.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1504. p41.BottomSurface = Enum.SurfaceType.Smooth
  1505. p41.TopSurface = Enum.SurfaceType.Smooth
  1506. b41 = Instance.new("SpecialMesh", p41)
  1507. b41.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1508. b41.TextureId = ""
  1509. b41.MeshType = Enum.MeshType.FileMesh
  1510. b41.Name = "Mesh"
  1511. b41.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1512. p42 = Instance.new("Part", m2)
  1513. p42.BrickColor = BrickColor.new("Really red")
  1514. p42.Material = Enum.Material.SmoothPlastic
  1515. p42.Reflectance = 0.30000001192093
  1516. p42.CFrame = CFrame.new(24.12043, 24.6884346, 26.7387066, -0.573574483, -0.212014884, -0.791238487, -2.23079792e-006, -0.965923309, 0.258816421, -0.819151402, 0.148452327, 0.554032683)
  1517. p42.CanCollide = false
  1518. p42.FormFactor = Enum.FormFactor.Custom
  1519. p42.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1520. p42.BottomSurface = Enum.SurfaceType.Smooth
  1521. p42.TopSurface = Enum.SurfaceType.Smooth
  1522. b42 = Instance.new("SpecialMesh", p42)
  1523. b42.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1524. b42.TextureId = ""
  1525. b42.MeshType = Enum.MeshType.FileMesh
  1526. b42.Name = "Mesh"
  1527. b42.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1528. p43 = Instance.new("Part", m2)
  1529. p43.BrickColor = BrickColor.new("Really red")
  1530. p43.Material = Enum.Material.SmoothPlastic
  1531. p43.Reflectance = 0.30000001192093
  1532. p43.CFrame = CFrame.new(24.12043, 24.6884365, 26.7387066, -0.573574483, -0.212014899, -0.791238487, -2.30996147e-006, -0.96592325, 0.258816421, -0.819151402, 0.148452222, 0.554032683)
  1533. p43.CanCollide = false
  1534. p43.FormFactor = Enum.FormFactor.Custom
  1535. p43.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1536. p43.BottomSurface = Enum.SurfaceType.Smooth
  1537. p43.TopSurface = Enum.SurfaceType.Smooth
  1538. b43 = Instance.new("SpecialMesh", p43)
  1539. b43.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1540. b43.TextureId = ""
  1541. b43.MeshType = Enum.MeshType.FileMesh
  1542. b43.Name = "Mesh"
  1543. b43.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1544. p44 = Instance.new("Part", m2)
  1545. p44.BrickColor = BrickColor.new("Really red")
  1546. p44.Material = Enum.Material.SmoothPlastic
  1547. p44.Reflectance = 0.30000001192093
  1548. p44.CFrame = CFrame.new(24.3630924, 24.6090679, 26.5687962, -0.573574483, -0.212014914, -0.791238487, -2.38912503e-006, -0.96592319, 0.258816421, -0.819151402, 0.148452118, 0.554032683)
  1549. p44.CanCollide = false
  1550. p44.FormFactor = Enum.FormFactor.Custom
  1551. p44.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1552. p44.BottomSurface = Enum.SurfaceType.Smooth
  1553. p44.TopSurface = Enum.SurfaceType.Smooth
  1554. b44 = Instance.new("SpecialMesh", p44)
  1555. b44.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1556. b44.TextureId = ""
  1557. b44.MeshType = Enum.MeshType.FileMesh
  1558. b44.Name = "Mesh"
  1559. b44.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1560. p45 = Instance.new("Part", m2)
  1561. p45.BrickColor = BrickColor.new("Really red")
  1562. p45.Material = Enum.Material.SmoothPlastic
  1563. p45.Reflectance = 0.30000001192093
  1564. p45.CFrame = CFrame.new(24.2399025, 24.6493645, 26.6550598, -0.573574483, -0.212014928, -0.791238487, -2.46828859e-006, -0.965923131, 0.258816421, -0.819151402, 0.148452014, 0.554032683)
  1565. p45.CanCollide = false
  1566. p45.FormFactor = Enum.FormFactor.Custom
  1567. p45.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1568. p45.BottomSurface = Enum.SurfaceType.Smooth
  1569. p45.TopSurface = Enum.SurfaceType.Smooth
  1570. b45 = Instance.new("SpecialMesh", p45)
  1571. b45.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1572. b45.TextureId = ""
  1573. b45.MeshType = Enum.MeshType.FileMesh
  1574. b45.Name = "Mesh"
  1575. b45.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1576. p46 = Instance.new("Part", m2)
  1577. p46.BrickColor = BrickColor.new("Really red")
  1578. p46.Material = Enum.Material.SmoothPlastic
  1579. p46.Reflectance = 0.30000001192093
  1580. p46.CFrame = CFrame.new(24.3630962, 24.6090736, 26.5688019, -0.573574483, -0.212014943, -0.791238487, -2.54745214e-006, -0.965923071, 0.258816421, -0.819151402, 0.148451909, 0.554032683)
  1581. p46.CanCollide = false
  1582. p46.FormFactor = Enum.FormFactor.Custom
  1583. p46.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1584. p46.BottomSurface = Enum.SurfaceType.Smooth
  1585. p46.TopSurface = Enum.SurfaceType.Smooth
  1586. b46 = Instance.new("SpecialMesh", p46)
  1587. b46.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1588. b46.TextureId = ""
  1589. b46.MeshType = Enum.MeshType.FileMesh
  1590. b46.Name = "Mesh"
  1591. b46.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1592. p47 = Instance.new("Part", m2)
  1593. p47.BrickColor = BrickColor.new("Really red")
  1594. p47.Material = Enum.Material.SmoothPlastic
  1595. p47.Reflectance = 0.30000001192093
  1596. p47.CFrame = CFrame.new(24.2399063, 24.6493702, 26.6550655, -0.573574483, -0.212014958, -0.791238487, -2.6266157e-006, -0.965923011, 0.258816421, -0.819151402, 0.148451805, 0.554032683)
  1597. p47.CanCollide = false
  1598. p47.FormFactor = Enum.FormFactor.Custom
  1599. p47.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1600. p47.BottomSurface = Enum.SurfaceType.Smooth
  1601. p47.TopSurface = Enum.SurfaceType.Smooth
  1602. b47 = Instance.new("SpecialMesh", p47)
  1603. b47.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1604. b47.TextureId = ""
  1605. b47.MeshType = Enum.MeshType.FileMesh
  1606. b47.Name = "Mesh"
  1607. b47.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1608. p48 = Instance.new("Part", m2)
  1609. p48.BrickColor = BrickColor.new("Really red")
  1610. p48.Material = Enum.Material.Neon
  1611. p48.CFrame = CFrame.new(25.2453995, 27.8142643, 25.9324112, 0.579229355, 0.579225123, -0.573574543, 0.707105756, -0.707103014, -2.67389237e-006, -0.405579329, -0.40558058, -0.819151223)
  1612. p48.FormFactor = Enum.FormFactor.Custom
  1613. p48.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  1614. p48.BottomSurface = Enum.SurfaceType.Smooth
  1615. p48.TopSurface = Enum.SurfaceType.Smooth
  1616. b48 = Instance.new("SpecialMesh", p48)
  1617. b48.MeshType = Enum.MeshType.Sphere
  1618. b48.Name = "Mesh"
  1619. p49 = Instance.new("Part", m2)
  1620. p49.BrickColor = BrickColor.new("Really red")
  1621. p49.Material = Enum.Material.SmoothPlastic
  1622. p49.Reflectance = 0.30000001192093
  1623. p49.CFrame = CFrame.new(26.2033863, 25.7751026, 25.2802086, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
  1624. p49.CanCollide = false
  1625. p49.FormFactor = Enum.FormFactor.Custom
  1626. p49.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1627. p49.BottomSurface = Enum.SurfaceType.Smooth
  1628. p49.TopSurface = Enum.SurfaceType.Smooth
  1629. b49 = Instance.new("SpecialMesh", p49)
  1630. b49.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1631. b49.TextureId = ""
  1632. b49.MeshType = Enum.MeshType.FileMesh
  1633. b49.Name = "Mesh"
  1634. b49.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1635. p50 = Instance.new("Part", m2)
  1636. p50.BrickColor = BrickColor.new("Really red")
  1637. p50.Material = Enum.Material.SmoothPlastic
  1638. p50.Reflectance = 0.30000001192093
  1639. p50.CFrame = CFrame.new(25.9976063, 25.9510059, 25.4242992, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
  1640. p50.CanCollide = false
  1641. p50.FormFactor = Enum.FormFactor.Custom
  1642. p50.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1643. p50.BottomSurface = Enum.SurfaceType.Smooth
  1644. p50.TopSurface = Enum.SurfaceType.Smooth
  1645. b50 = Instance.new("SpecialMesh", p50)
  1646. b50.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1647. b50.TextureId = ""
  1648. b50.MeshType = Enum.MeshType.FileMesh
  1649. b50.Name = "Mesh"
  1650. b50.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1651. p51 = Instance.new("Part", m2)
  1652. p51.BrickColor = BrickColor.new("Really red")
  1653. p51.Material = Enum.Material.SmoothPlastic
  1654. p51.Reflectance = 0.30000001192093
  1655. p51.CFrame = CFrame.new(26.0989265, 25.8644028, 25.353363, -0.573574364, -0.469848186, -0.671007454, -2.67389191e-006, -0.819150448, 0.573572874, -0.819151223, 0.328989238, 0.469846845)
  1656. p51.CanCollide = false
  1657. p51.FormFactor = Enum.FormFactor.Custom
  1658. p51.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1659. p51.BottomSurface = Enum.SurfaceType.Smooth
  1660. p51.TopSurface = Enum.SurfaceType.Smooth
  1661. b51 = Instance.new("SpecialMesh", p51)
  1662. b51.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1663. b51.TextureId = ""
  1664. b51.MeshType = Enum.MeshType.FileMesh
  1665. b51.Name = "Mesh"
  1666. b51.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1667. p52 = Instance.new("Part", m2)
  1668. p52.BrickColor = BrickColor.new("Really red")
  1669. p52.Material = Enum.Material.Neon
  1670. p52.CFrame = CFrame.new(21.2912331, 25.2490387, 28.7011547, 0.142246991, 0.806705594, -0.573574483, 0.984804809, -0.173645705, -2.66166035e-006, -0.0995996594, -0.564862788, -0.819151103)
  1671. p52.FormFactor = Enum.FormFactor.Custom
  1672. p52.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  1673. p52.BottomSurface = Enum.SurfaceType.Smooth
  1674. p52.TopSurface = Enum.SurfaceType.Smooth
  1675. b52 = Instance.new("SpecialMesh", p52)
  1676. b52.MeshType = Enum.MeshType.Sphere
  1677. b52.Name = "Mesh"
  1678. p53 = Instance.new("Part", m2)
  1679. p53.BrickColor = BrickColor.new("Really red")
  1680. p53.Material = Enum.Material.Neon
  1681. p53.CFrame = CFrame.new(23.2582321, 27.8460655, 27.3238525, 0.409577936, 0.709403872, -0.573574483, 0.866023481, -0.499996662, -2.64914797e-006, -0.28678745, -0.496732205, -0.819151103)
  1682. p53.FormFactor = Enum.FormFactor.Custom
  1683. p53.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  1684. p53.BottomSurface = Enum.SurfaceType.Smooth
  1685. p53.TopSurface = Enum.SurfaceType.Smooth
  1686. b53 = Instance.new("SpecialMesh", p53)
  1687. b53.MeshType = Enum.MeshType.Sphere
  1688. b53.Name = "Mesh"
  1689. p54 = Instance.new("Part", m2)
  1690. p54.BrickColor = BrickColor.new("Really red")
  1691. p54.Material = Enum.Material.Neon
  1692. p54.CFrame = CFrame.new(21.2899132, 27.1965466, 28.7020855, 0.280168742, 0.769748747, -0.573574483, 0.939690113, -0.342017204, -2.64914797e-006, -0.196173787, -0.538985729, -0.819151103)
  1693. p54.FormFactor = Enum.FormFactor.Custom
  1694. p54.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918)
  1695. p54.BottomSurface = Enum.SurfaceType.Smooth
  1696. p54.TopSurface = Enum.SurfaceType.Smooth
  1697. b54 = Instance.new("SpecialMesh", p54)
  1698. b54.MeshType = Enum.MeshType.Sphere
  1699. b54.Name = "Mesh"
  1700. p55 = Instance.new("Part", m2)
  1701. p55.BrickColor = BrickColor.new("Really red")
  1702. p55.Material = Enum.Material.Neon
  1703. p55.CFrame = CFrame.new(22.732933, 23.2277641, 27.6916542, -0.280163169, 0.769749939, -0.573574483, 0.939688265, 0.342020243, -2.67457881e-006, 0.196175426, -0.538984358, -0.819150984)
  1704. p55.FormFactor = Enum.FormFactor.Custom
  1705. p55.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  1706. p55.BottomSurface = Enum.SurfaceType.Smooth
  1707. p55.TopSurface = Enum.SurfaceType.Smooth
  1708. b55 = Instance.new("SpecialMesh", p55)
  1709. b55.MeshType = Enum.MeshType.Sphere
  1710. b55.Name = "Mesh"
  1711. p56 = Instance.new("Part", m2)
  1712. p56.BrickColor = BrickColor.new("Really red")
  1713. p56.Material = Enum.Material.SmoothPlastic
  1714. p56.Reflectance = 0.30000001192093
  1715. p56.CFrame = CFrame.new(26.1728668, 26.7314224, 25.3015804, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
  1716. p56.CanCollide = false
  1717. p56.FormFactor = Enum.FormFactor.Custom
  1718. p56.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1719. p56.BottomSurface = Enum.SurfaceType.Smooth
  1720. p56.TopSurface = Enum.SurfaceType.Smooth
  1721. b56 = Instance.new("SpecialMesh", p56)
  1722. b56.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1723. b56.TextureId = ""
  1724. b56.MeshType = Enum.MeshType.FileMesh
  1725. b56.Name = "Mesh"
  1726. b56.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1727. p57 = Instance.new("Part", m2)
  1728. p57.BrickColor = BrickColor.new("Really red")
  1729. p57.Material = Enum.Material.SmoothPlastic
  1730. p57.Reflectance = 0.30000001192093
  1731. p57.CFrame = CFrame.new(26.0715504, 26.8180256, 25.3725224, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
  1732. p57.CanCollide = false
  1733. p57.FormFactor = Enum.FormFactor.Custom
  1734. p57.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1735. p57.BottomSurface = Enum.SurfaceType.Smooth
  1736. p57.TopSurface = Enum.SurfaceType.Smooth
  1737. b57 = Instance.new("SpecialMesh", p57)
  1738. b57.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1739. b57.TextureId = ""
  1740. b57.MeshType = Enum.MeshType.FileMesh
  1741. b57.Name = "Mesh"
  1742. b57.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1743. p58 = Instance.new("Part", m2)
  1744. p58.BrickColor = BrickColor.new("Really red")
  1745. p58.Material = Enum.Material.SmoothPlastic
  1746. p58.Reflectance = 0.30000001192093
  1747. p58.CFrame = CFrame.new(26.2773418, 26.6421242, 25.2284393, -0.573574424, -0.469846636, -0.671006322, -2.71658587e-006, -0.819149017, 0.573572636, -0.819150925, 0.328987926, 0.469845742)
  1748. p58.CanCollide = false
  1749. p58.FormFactor = Enum.FormFactor.Custom
  1750. p58.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1751. p58.BottomSurface = Enum.SurfaceType.Smooth
  1752. p58.TopSurface = Enum.SurfaceType.Smooth
  1753. b58 = Instance.new("SpecialMesh", p58)
  1754. b58.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1755. b58.TextureId = ""
  1756. b58.MeshType = Enum.MeshType.FileMesh
  1757. b58.Name = "Mesh"
  1758. b58.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1759. p59 = Instance.new("Part", m2)
  1760. p59.BrickColor = BrickColor.new("Really red")
  1761. p59.Material = Enum.Material.SmoothPlastic
  1762. p59.Reflectance = 0.30000001192093
  1763. p59.CFrame = CFrame.new(24.6884308, 25.7025909, 26.3410091, -0.573574424, -0.280167818, -0.769747615, -2.71658587e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172908, 0.538984478)
  1764. p59.CanCollide = false
  1765. p59.FormFactor = Enum.FormFactor.Custom
  1766. p59.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1767. p59.BottomSurface = Enum.SurfaceType.Smooth
  1768. p59.TopSurface = Enum.SurfaceType.Smooth
  1769. b59 = Instance.new("SpecialMesh", p59)
  1770. b59.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1771. b59.TextureId = ""
  1772. b59.MeshType = Enum.MeshType.FileMesh
  1773. b59.Name = "Mesh"
  1774. b59.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1775. p60 = Instance.new("Part", m2)
  1776. p60.BrickColor = BrickColor.new("Really red")
  1777. p60.Material = Enum.Material.SmoothPlastic
  1778. p60.Reflectance = 0.30000001192093
  1779. p60.CFrame = CFrame.new(24.4523582, 25.807478, 26.5063095, -0.573574424, -0.280167848, -0.769747615, -2.7445908e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172863, 0.538984478)
  1780. p60.CanCollide = false
  1781. p60.FormFactor = Enum.FormFactor.Custom
  1782. p60.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1783. p60.BottomSurface = Enum.SurfaceType.Smooth
  1784. p60.TopSurface = Enum.SurfaceType.Smooth
  1785. b60 = Instance.new("SpecialMesh", p60)
  1786. b60.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1787. b60.TextureId = ""
  1788. b60.MeshType = Enum.MeshType.FileMesh
  1789. b60.Name = "Mesh"
  1790. b60.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1791. p61 = Instance.new("Part", m2)
  1792. p61.BrickColor = BrickColor.new("Really red")
  1793. p61.Material = Enum.Material.SmoothPlastic
  1794. p61.Reflectance = 0.30000001192093
  1795. p61.CFrame = CFrame.new(24.5685883, 25.7558403, 26.4249287, -0.573574424, -0.280167878, -0.769747615, -2.77259574e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172819, 0.538984478)
  1796. p61.CanCollide = false
  1797. p61.FormFactor = Enum.FormFactor.Custom
  1798. p61.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1799. p61.BottomSurface = Enum.SurfaceType.Smooth
  1800. p61.TopSurface = Enum.SurfaceType.Smooth
  1801. b61 = Instance.new("SpecialMesh", p61)
  1802. b61.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1803. b61.TextureId = ""
  1804. b61.MeshType = Enum.MeshType.FileMesh
  1805. b61.Name = "Mesh"
  1806. b61.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1807. p62 = Instance.new("Part", m2)
  1808. p62.BrickColor = BrickColor.new("Really red")
  1809. p62.Material = Enum.Material.SmoothPlastic
  1810. p62.Reflectance = 0.30000001192093
  1811. p62.CFrame = CFrame.new(24.6884365, 25.7025948, 26.3410149, -0.573574424, -0.280167907, -0.769747615, -2.80060067e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172774, 0.538984478)
  1812. p62.CanCollide = false
  1813. p62.FormFactor = Enum.FormFactor.Custom
  1814. p62.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  1815. p62.BottomSurface = Enum.SurfaceType.Smooth
  1816. p62.TopSurface = Enum.SurfaceType.Smooth
  1817. b62 = Instance.new("SpecialMesh", p62)
  1818. b62.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1819. b62.TextureId = ""
  1820. b62.MeshType = Enum.MeshType.FileMesh
  1821. b62.Name = "Mesh"
  1822. b62.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  1823. p63 = Instance.new("Part", m2)
  1824. p63.BrickColor = BrickColor.new("Really red")
  1825. p63.Material = Enum.Material.SmoothPlastic
  1826. p63.Reflectance = 0.30000001192093
  1827. p63.CFrame = CFrame.new(24.452364, 25.8074818, 26.5063152, -0.573574424, -0.280167937, -0.769747615, -2.8286056e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172729, 0.538984478)
  1828. p63.CanCollide = false
  1829. p63.FormFactor = Enum.FormFactor.Custom
  1830. p63.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  1831. p63.BottomSurface = Enum.SurfaceType.Smooth
  1832. p63.TopSurface = Enum.SurfaceType.Smooth
  1833. b63 = Instance.new("SpecialMesh", p63)
  1834. b63.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1835. b63.TextureId = ""
  1836. b63.MeshType = Enum.MeshType.FileMesh
  1837. b63.Name = "Mesh"
  1838. b63.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  1839. p64 = Instance.new("Part", m2)
  1840. p64.BrickColor = BrickColor.new("Really red")
  1841. p64.Material = Enum.Material.SmoothPlastic
  1842. p64.Reflectance = 0.30000001192093
  1843. p64.CFrame = CFrame.new(24.568594, 25.7558441, 26.4249344, -0.573574424, -0.280167967, -0.769747615, -2.85661054e-006, -0.939688742, 0.342017263, -0.819150925, 0.196172684, 0.538984478)
  1844. p64.CanCollide = false
  1845. p64.FormFactor = Enum.FormFactor.Custom
  1846. p64.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  1847. p64.BottomSurface = Enum.SurfaceType.Smooth
  1848. p64.TopSurface = Enum.SurfaceType.Smooth
  1849. b64 = Instance.new("SpecialMesh", p64)
  1850. b64.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1851. b64.TextureId = ""
  1852. b64.MeshType = Enum.MeshType.FileMesh
  1853. b64.Name = "Mesh"
  1854. b64.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  1855. p65 = Instance.new("Part", m2)
  1856. p65.BrickColor = BrickColor.new("Really black")
  1857. p65.Transparency = 1
  1858. p65.Name = "TorsoPart"
  1859. p65.CFrame = CFrame.new(27.0399818, 25.1251049, 25.3600311, 0.999996543, 2.59280205e-006, 8.94069672e-008, 2.77161598e-006, 0.999995351, 1.56462193e-006, 6.2584877e-007, 1.51991844e-006, 0.999998093)
  1860. p65.FormFactor = Enum.FormFactor.Symmetric
  1861. p65.Size = Vector3.new(4, 4, 2)
  1862. w1 = Instance.new("Weld", p1)
  1863. w1.Name = "Part_Weld"
  1864. w1.Part0 = p1
  1865. w1.C0 = CFrame.new(7.48623466, 46.9062119, -4.72964478, -0.579227924, 0.707106769, -0.405579776, -0.579227805, -0.707106769, -0.405579716, -0.573576331, 0, 0.819152117)
  1866. w1.Part1 = p2
  1867. w1.C1 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  1868. w2 = Instance.new("Weld", p2)
  1869. w2.Name = "Part_Weld"
  1870. w2.Part0 = p2
  1871. w2.C0 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  1872. w2.Part1 = p3
  1873. w2.C1 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  1874. w3 = Instance.new("Weld", p3)
  1875. w3.Name = "Part_Weld"
  1876. w3.Part0 = p3
  1877. w3.C0 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  1878. w3.Part1 = p4
  1879. w3.C1 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  1880. w4 = Instance.new("Weld", p4)
  1881. w4.Name = "Part_Weld"
  1882. w4.Part0 = p4
  1883. w4.C0 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  1884. w4.Part1 = p5
  1885. w4.C1 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  1886. w5 = Instance.new("Weld", p5)
  1887. w5.Name = "Part_Weld"
  1888. w5.Part0 = p5
  1889. w5.C0 = CFrame.new(35.7379875, 19.7860374, 13.782176, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  1890. w5.Part1 = p6
  1891. w5.C1 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  1892. w6 = Instance.new("Weld", p6)
  1893. w6.Name = "Part_Weld"
  1894. w6.Part0 = p6
  1895. w6.C0 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  1896. w6.Part1 = p7
  1897. w6.C1 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  1898. w7 = Instance.new("Weld", p7)
  1899. w7.Name = "Part_Weld"
  1900. w7.Part0 = p7
  1901. w7.C0 = CFrame.new(35.7379951, 19.7860336, 13.626483, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  1902. w7.Part1 = p8
  1903. w7.C1 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  1904. w8 = Instance.new("Weld", p8)
  1905. w8.Name = "Part_Weld"
  1906. w8.Part0 = p8
  1907. w8.C0 = CFrame.new(35.7379951, 19.7860374, 13.4754944, -0.573576331, -1.03064551e-007, -0.819152117, 0.346188396, -0.906307817, -0.24240382, -0.742403984, -0.422618032, 0.519836664)
  1908. w8.Part1 = p9
  1909. w8.C1 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  1910. w9 = Instance.new("Weld", p9)
  1911. w9.Name = "Part_Weld"
  1912. w9.Part0 = p9
  1913. w9.C0 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  1914. w9.Part1 = p10
  1915. w9.C1 = CFrame.new(-4.6974659, 0.512617111, -46.0237579, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  1916. w10 = Instance.new("Weld", p10)
  1917. w10.Name = "Part_Weld"
  1918. w10.Part0 = p10
  1919. w10.C0 = CFrame.new(-4.6974659, 0.512617111, -46.0237579, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  1920. w10.Part1 = p11
  1921. w10.C1 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  1922. w11 = Instance.new("Weld", p11)
  1923. w11.Name = "Part_Weld"
  1924. w11.Part0 = p11
  1925. w11.C0 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  1926. w11.Part1 = p12
  1927. w11.C1 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  1928. w12 = Instance.new("Weld", p12)
  1929. w12.Name = "Part_Weld"
  1930. w12.Part0 = p12
  1931. w12.C0 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  1932. w12.Part1 = p13
  1933. w12.C1 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  1934. w13 = Instance.new("Weld", p13)
  1935. w13.Name = "Part_Weld"
  1936. w13.Part0 = p13
  1937. w13.C0 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  1938. w13.Part1 = p14
  1939. w13.C1 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  1940. w14 = Instance.new("Weld", p14)
  1941. w14.Name = "Part_Weld"
  1942. w14.Part0 = p14
  1943. w14.C0 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  1944. w14.Part1 = p15
  1945. w14.C1 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  1946. w15 = Instance.new("Weld", p15)
  1947. w15.Name = "Part_Weld"
  1948. w15.Part0 = p15
  1949. w15.C0 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  1950. w15.Part1 = p16
  1951. w15.C1 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  1952. w16 = Instance.new("Weld", p16)
  1953. w16.Name = "Part_Weld"
  1954. w16.Part0 = p16
  1955. w16.C0 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  1956. w16.Part1 = p17
  1957. w16.C1 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  1958. w17 = Instance.new("Weld", p17)
  1959. w17.Name = "Part_Weld"
  1960. w17.Part0 = p17
  1961. w17.C0 = CFrame.new(-4.6974678, 10.7812996, -45.834713, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  1962. w17.Part1 = p18
  1963. w17.C1 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  1964. w18 = Instance.new("Weld", p18)
  1965. w18.Name = "Part_Weld"
  1966. w18.Part0 = p18
  1967. w18.C0 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  1968. w18.Part1 = p19
  1969. w18.C1 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  1970. w19 = Instance.new("Weld", p19)
  1971. w19.Name = "Part_Weld"
  1972. w19.Part0 = p19
  1973. w19.C0 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  1974. w19.Part1 = p20
  1975. w19.C1 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  1976. w20 = Instance.new("Weld", p20)
  1977. w20.Name = "Part_Weld"
  1978. w20.Part0 = p20
  1979. w20.C0 = CFrame.new(-4.69746971, 38.4699516, -26.4413414, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  1980. w20.Part1 = p21
  1981. w20.C1 = CFrame.new(-4.69746971, 0.512615204, -45.8727722, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  1982. w21 = Instance.new("Weld", p21)
  1983. w21.Name = "Part_Weld"
  1984. w21.Part0 = p21
  1985. w21.C0 = CFrame.new(-4.69746971, 0.512615204, -45.8727722, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  1986. w21.Part1 = p22
  1987. w21.C1 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  1988. w22 = Instance.new("Weld", p22)
  1989. w22.Name = "Part_Weld"
  1990. w22.Part0 = p22
  1991. w22.C0 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  1992. w22.Part1 = p23
  1993. w22.C1 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  1994. w23 = Instance.new("Weld", p23)
  1995. w23.Name = "Part_Weld"
  1996. w23.Part0 = p23
  1997. w23.C0 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  1998. w23.Part1 = p24
  1999. w23.C1 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2000. w24 = Instance.new("Weld", p24)
  2001. w24.Name = "Part_Weld"
  2002. w24.Part0 = p24
  2003. w24.C0 = CFrame.new(-4.69747162, 10.7813034, -45.5280304, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2004. w24.Part1 = p25
  2005. w24.C1 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2006. w25 = Instance.new("Weld", p25)
  2007. w25.Name = "Part_Weld"
  2008. w25.Part0 = p25
  2009. w25.C0 = CFrame.new(-4.6974678, 13.5492172, -44.6714172, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2010. w25.Part1 = p26
  2011. w25.C1 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2012. w26 = Instance.new("Weld", p26)
  2013. w26.Name = "Part_Weld"
  2014. w26.Part0 = p26
  2015. w26.C0 = CFrame.new(-4.69747162, 10.7813015, -45.6837234, -0.573576748, 0, 0.819151878, 0.280166447, -0.939692616, 0.1961748, 0.769751072, 0.342020154, 0.538985789)
  2016. w26.Part1 = p27
  2017. w26.C1 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2018. w27 = Instance.new("Weld", p27)
  2019. w27.Name = "Part_Weld"
  2020. w27.Part0 = p27
  2021. w27.C0 = CFrame.new(-4.6974678, 38.4699554, -26.5923309, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2022. w27.Part1 = p28
  2023. w27.C1 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2024. w28 = Instance.new("Weld", p28)
  2025. w28.Name = "Part_Weld"
  2026. w28.Part0 = p28
  2027. w28.C0 = CFrame.new(-4.6974678, -0.249424934, -45.600399, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2028. w28.Part1 = p29
  2029. w28.C1 = CFrame.new(-36.0110359, 31.0260429, -4.71271896, 0.280166358, 0.93969208, 0.196174681, -0.769750178, 0.342019618, -0.538985252, -0.57357645, -2.95716429e-008, 0.819151998)
  2030. w29 = Instance.new("Weld", p29)
  2031. w29.Name = "Part_Weld"
  2032. w29.Part0 = p29
  2033. w29.C0 = CFrame.new(-36.0110359, 31.0260429, -4.71271896, 0.280166358, 0.93969208, 0.196174681, -0.769750178, 0.342019618, -0.538985252, -0.57357645, -2.95716429e-008, 0.819151998)
  2034. w29.Part1 = p30
  2035. w29.C1 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2036. w30 = Instance.new("Weld", p30)
  2037. w30.Name = "Part_Weld"
  2038. w30.Part0 = p30
  2039. w30.C0 = CFrame.new(-4.69746971, 13.5492201, -44.5157242, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2040. w30.Part1 = p31
  2041. w30.C1 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2042. w31 = Instance.new("Weld", p31)
  2043. w31.Name = "Part_Weld"
  2044. w31.Part0 = p31
  2045. w31.C0 = CFrame.new(-4.69746971, 38.4699554, -26.2856503, -0.573576748, -1.03064551e-007, 0.819151878, -0.346188426, -0.906307817, -0.242403746, 0.742403686, -0.422618032, 0.519837141)
  2046. w31.Part1 = p32
  2047. w31.C1 = CFrame.new(-4.6974678, 0.512617111, -45.717083, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2048. w32 = Instance.new("Weld", p32)
  2049. w32.Name = "Part_Weld"
  2050. w32.Part0 = p32
  2051. w32.C0 = CFrame.new(-4.6974678, 0.512617111, -45.717083, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2052. w32.Part1 = p33
  2053. w32.C1 = CFrame.new(-17.3583775, 46.9591446, -4.71270752, -0.142244235, 0.98480773, -0.0996004939, -0.806707144, -0.173648238, -0.564862549, -0.57357657, 0, 0.819151998)
  2054. w33 = Instance.new("Weld", p33)
  2055. w33.Name = "Part_Weld"
  2056. w33.Part0 = p33
  2057. w33.C0 = CFrame.new(-17.3583775, 46.9591446, -4.71270752, -0.142244235, 0.98480773, -0.0996004939, -0.806707144, -0.173648238, -0.564862549, -0.57357657, 0, 0.819151998)
  2058. w33.Part1 = p34
  2059. w33.C1 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2060. w34 = Instance.new("Weld", p34)
  2061. w34.Name = "Part_Weld"
  2062. w34.Part0 = p34
  2063. w34.C0 = CFrame.new(-4.69747162, -0.249425888, -45.4494095, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2064. w34.Part1 = p35
  2065. w34.C1 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2066. w35 = Instance.new("Weld", p35)
  2067. w35.Name = "Part_Weld"
  2068. w35.Part0 = p35
  2069. w35.C0 = CFrame.new(-4.69746971, 13.5492172, -44.8224106, -0.573576748, -2.87868307e-008, 0.819151878, 0.212012202, -0.965925753, 0.148452699, 0.791239858, 0.258819222, 0.554032564)
  2070. w35.Part1 = p36
  2071. w35.C1 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2072. w36 = Instance.new("Weld", p36)
  2073. w36.Name = "Part_Weld"
  2074. w36.Part0 = p36
  2075. w36.C0 = CFrame.new(-4.69746971, -0.249427795, -45.2937202, -0.573576748, 0, 0.819151878, 0.469846189, -0.819152057, 0.328990072, 0.671009898, 0.57357645, 0.469846576)
  2076. w36.Part1 = p37
  2077. w36.C1 = CFrame.new(-3.70028734, 49.2830544, -4.71271324, -0.409575999, 0.866025388, -0.286788285, -0.709406435, -0.5, -0.496731967, -0.57357657, 0, 0.819151998)
  2078. w37 = Instance.new("Weld", p37)
  2079. w37.Name = "Part_Weld"
  2080. w37.Part0 = p37
  2081. w37.C0 = CFrame.new(-3.70028734, 49.2830544, -4.71271324, -0.409575999, 0.866025388, -0.286788285, -0.709406435, -0.5, -0.496731967, -0.57357657, 0, 0.819151998)
  2082. w37.Part1 = p38
  2083. w37.C1 = CFrame.new(-10.7698097, 49.927597, -4.71271324, -0.280166447, 0.939692616, -0.196174681, -0.769750953, -0.342020154, -0.53898561, -0.57357657, 0, 0.819151998)
  2084. w38 = Instance.new("Weld", p38)
  2085. w38.Name = "Part_Weld"
  2086. w38.Part0 = p38
  2087. w38.C0 = CFrame.new(-10.7698097, 49.927597, -4.71271324, -0.280166447, 0.939692616, -0.196174681, -0.769750953, -0.342020154, -0.53898561, -0.57357657, 0, 0.819151998)
  2088. w38.Part1 = p39
  2089. w38.C1 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2090. w39 = Instance.new("Weld", p39)
  2091. w39.Name = "Part_Weld"
  2092. w39.Part0 = p39
  2093. w39.C0 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2094. w39.Part1 = p40
  2095. w39.C1 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2096. w40 = Instance.new("Weld", p40)
  2097. w40.Name = "Part_Weld"
  2098. w40.Part0 = p40
  2099. w40.C0 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2100. w40.Part1 = p41
  2101. w40.C1 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2102. w41 = Instance.new("Weld", p41)
  2103. w41.Name = "Part_Weld"
  2104. w41.Part0 = p41
  2105. w41.C0 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2106. w41.Part1 = p42
  2107. w41.C1 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2108. w42 = Instance.new("Weld", p42)
  2109. w42.Name = "Part_Weld"
  2110. w42.Part0 = p42
  2111. w42.C0 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2112. w42.Part1 = p43
  2113. w42.C1 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2114. w43 = Instance.new("Weld", p43)
  2115. w43.Name = "Part_Weld"
  2116. w43.Part0 = p43
  2117. w43.C0 = CFrame.new(35.7379913, 24.9916019, -2.11887932, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2118. w43.Part1 = p44
  2119. w43.C1 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2120. w44 = Instance.new("Weld", p44)
  2121. w44.Name = "Part_Weld"
  2122. w44.Part0 = p44
  2123. w44.C0 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2124. w44.Part1 = p45
  2125. w44.C1 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2126. w45 = Instance.new("Weld", p45)
  2127. w45.Name = "Part_Weld"
  2128. w45.Part0 = p45
  2129. w45.C0 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2130. w45.Part1 = p46
  2131. w45.C1 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2132. w46 = Instance.new("Weld", p46)
  2133. w46.Name = "Part_Weld"
  2134. w46.Part0 = p46
  2135. w46.C0 = CFrame.new(35.7379913, 24.9916058, -1.81219578, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2136. w46.Part1 = p47
  2137. w46.C1 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2138. w47 = Instance.new("Weld", p47)
  2139. w47.Name = "Part_Weld"
  2140. w47.Part0 = p47
  2141. w47.C0 = CFrame.new(35.7379913, 24.9916019, -1.96789074, -0.573576331, -2.87868307e-008, -0.819152117, -0.212012321, -0.965925753, 0.14845252, -0.791240156, 0.258819222, 0.554032147)
  2142. w47.Part1 = p48
  2143. w47.C1 = CFrame.new(-23.7728367, 15.5624714, 35.7227516, 0.579227924, 0.707106769, -0.405579776, 0.579227865, -0.707106769, -0.405579716, -0.57357645, 0, -0.819151998)
  2144. w48 = Instance.new("Weld", p48)
  2145. w48.Name = "Part_Weld"
  2146. w48.Part0 = p48
  2147. w48.C0 = CFrame.new(-23.7728367, 15.5624714, 35.7227516, 0.579227924, 0.707106769, -0.405579776, 0.579227865, -0.707106769, -0.405579716, -0.57357645, 0, -0.819151998)
  2148. w48.Part1 = p49
  2149. w48.C1 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2150. w49 = Instance.new("Weld", p49)
  2151. w49.Name = "Part_Weld"
  2152. w49.Part0 = p49
  2153. w49.C0 = CFrame.new(35.7379837, 25.1083565, -9.07904911, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2154. w49.Part1 = p50
  2155. w49.C1 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2156. w50 = Instance.new("Weld", p50)
  2157. w50.Name = "Part_Weld"
  2158. w50.Part0 = p50
  2159. w50.C0 = CFrame.new(35.7379837, 25.1083584, -9.38572502, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2160. w50.Part1 = p51
  2161. w50.C1 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2162. w51 = Instance.new("Weld", p51)
  2163. w51.Name = "Part_Weld"
  2164. w51.Part0 = p51
  2165. w51.C0 = CFrame.new(35.7379875, 25.1083603, -9.23473454, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2166. w51.Part1 = p52
  2167. w51.C1 = CFrame.new(-25.0353527, 3.42085648, 35.7227554, 0.142244235, 0.98480773, -0.0996005014, 0.806707203, -0.173648238, -0.56486249, -0.57357645, 0, -0.819151998)
  2168. w52 = Instance.new("Weld", p52)
  2169. w52.Name = "Part_Weld"
  2170. w52.Part0 = p52
  2171. w52.C0 = CFrame.new(-25.0353527, 3.42085648, 35.7227554, 0.142244235, 0.98480773, -0.0996005014, 0.806707203, -0.173648238, -0.56486249, -0.57357645, 0, -0.819151998)
  2172. w52.Part1 = p53
  2173. w52.C1 = CFrame.new(-25.8052597, 10.9961138, 35.7227554, 0.409575999, 0.866025388, -0.286788225, 0.709406435, -0.5, -0.496731758, -0.57357645, 0, -0.819151998)
  2174. w53 = Instance.new("Weld", p53)
  2175. w53.Name = "Part_Weld"
  2176. w53.Part0 = p53
  2177. w53.C0 = CFrame.new(-25.8052597, 10.9961138, 35.7227554, 0.409575999, 0.866025388, -0.286788225, 0.709406435, -0.5, -0.496731758, -0.57357645, 0, -0.819151998)
  2178. w53.Part1 = p54
  2179. w53.C1 = CFrame.new(-25.8904991, 8.38383961, 35.7227592, 0.280166447, 0.939692616, -0.196174681, 0.769751012, -0.342020154, -0.538985491, -0.57357645, 0, -0.819151998)
  2180. w54 = Instance.new("Weld", p54)
  2181. w54.Name = "Part_Weld"
  2182. w54.Part0 = p54
  2183. w54.C0 = CFrame.new(-25.8904991, 8.38383961, 35.7227592, 0.280166447, 0.939692616, -0.196174681, 0.769751012, -0.342020154, -0.538985491, -0.57357645, 0, -0.819151998)
  2184. w54.Part1 = p55
  2185. w54.C1 = CFrame.new(-20.8903503, -10.5176811, 35.7227554, -0.280166388, 0.93969208, 0.196174622, 0.769750416, 0.342019618, -0.538984895, -0.57357651, -2.95716429e-008, -0.819151938)
  2186. w55 = Instance.new("Weld", p55)
  2187. w55.Name = "Part_Weld"
  2188. w55.Part0 = p55
  2189. w55.C0 = CFrame.new(-20.8903503, -10.5176811, 35.7227554, -0.280166388, 0.93969208, 0.196174622, 0.769750416, 0.342019618, -0.538984895, -0.57357651, -2.95716429e-008, -0.819151938)
  2190. w55.Part1 = p56
  2191. w55.C1 = CFrame.new(35.7379799, 25.8704014, -9.65809727, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2192. w56 = Instance.new("Weld", p56)
  2193. w56.Name = "Part_Weld"
  2194. w56.Part0 = p56
  2195. w56.C0 = CFrame.new(35.7379799, 25.8704014, -9.65809727, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2196. w56.Part1 = p57
  2197. w56.C1 = CFrame.new(35.7379799, 25.8703995, -9.8090868, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2198. w57 = Instance.new("Weld", p57)
  2199. w57.Name = "Part_Weld"
  2200. w57.Part0 = p57
  2201. w57.C0 = CFrame.new(35.7379799, 25.8703995, -9.8090868, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2202. w57.Part1 = p58
  2203. w57.C1 = CFrame.new(35.7379875, 25.8704014, -9.50240993, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2204. w58 = Instance.new("Weld", p58)
  2205. w58.Name = "Part_Weld"
  2206. w58.Part0 = p58
  2207. w58.C0 = CFrame.new(35.7379875, 25.8704014, -9.50240993, -0.573576331, 0, -0.819152117, -0.469846368, -0.819152057, 0.328989863, -0.671010137, 0.57357645, 0.469846219)
  2208. w58.Part1 = p59
  2209. w58.C1 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  2210. w59 = Instance.new("Weld", p59)
  2211. w59.Name = "Part_Weld"
  2212. w59.Part0 = p59
  2213. w59.C0 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  2214. w59.Part1 = p60
  2215. w59.C1 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  2216. w60 = Instance.new("Weld", p60)
  2217. w60.Name = "Part_Weld"
  2218. w60.Part0 = p60
  2219. w60.C0 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  2220. w60.Part1 = p61
  2221. w60.C1 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  2222. w61 = Instance.new("Weld", p61)
  2223. w61.Name = "Part_Weld"
  2224. w61.Part0 = p61
  2225. w61.C0 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  2226. w61.Part1 = p62
  2227. w61.C1 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  2228. w62 = Instance.new("Weld", p62)
  2229. w62.Name = "Part_Weld"
  2230. w62.Part0 = p62
  2231. w62.C0 = CFrame.new(35.7379913, 25.9019985, -3.98426342, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  2232. w62.Part1 = p63
  2233. w62.C1 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  2234. w63 = Instance.new("Weld", p63)
  2235. w63.Name = "Part_Weld"
  2236. w63.Part0 = p63
  2237. w63.C0 = CFrame.new(35.7379875, 25.9019947, -4.29094791, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  2238. w63.Part1 = p64
  2239. w63.C1 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  2240. w64 = Instance.new("Weld", p64)
  2241. w64.Name = "TorsoPart_Weld"
  2242. w64.Part0 = p64
  2243. w64.C0 = CFrame.new(35.7379875, 25.9019966, -4.13995552, -0.573576331, 0, -0.819152117, -0.280166537, -0.939692616, 0.196174636, -0.769751191, 0.342020154, 0.538985431)
  2244. w64.Part1 = p65
  2245. w64.C1 = CFrame.new(-27.0399971, -25.1251144, -25.3600025, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2246. m2.Parent = char
  2247. m2:MakeJoints()
  2248. --------------------------------------------------------------------------------
  2249. local cor2 = Instance.new("Part", char.Wings)
  2250. cor2.Name = "Thingy"
  2251. cor2.Locked = true
  2252. cor2.BottomSurface = 0
  2253. cor2.CanCollide = false
  2254. cor2.Size = Vector3.new(0.2, 0.2, 0.2)
  2255. cor2.Transparency = 1
  2256. cor2.TopSurface = 0
  2257. corw2 = Instance.new("Weld", cor2)
  2258. corw2.Part0 = torso
  2259. corw2.Part1 = cor2
  2260. corw2.C0 = CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0))
  2261. corw2.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2262. weld2 = Instance.new("Weld", char.Wings)
  2263. weld2.Part0 = cor2
  2264. weld2.Part1 = char.Wings.TorsoPart
  2265. weld2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2266.  
  2267.  
  2268.  
  2269.  
  2270.  
  2271.  
  2272.  
  2273. rainbowNumber = 1
  2274.  
  2275. local model = Instance.new("Model", char)
  2276. model.Name = "x10Wand"
  2277. local player = game.Players.LocalPlayer
  2278. local pchar = player.Character
  2279. local mouse = player:GetMouse()
  2280. local cam = workspace.CurrentCamera
  2281.  
  2282. local rad = math.rad
  2283. bodyparts = {}
  2284. local keysDown = {}
  2285. local flySpeed = 0
  2286. local MAX_FLY_SPEED = 150
  2287.  
  2288. local canFly = false
  2289. local flyToggled = false
  2290.  
  2291. local forward, side = 0, 0
  2292. local lastForward, lastSide = 0, 0
  2293.  
  2294. local floatBP = Instance.new("BodyPosition")
  2295. floatBP.maxForce = Vector3.new(0, math.huge, 0)
  2296. local flyBV = Instance.new("BodyVelocity")
  2297. flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  2298. local turnBG = Instance.new("BodyGyro")
  2299. turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  2300.  
  2301. mouse.KeyDown:connect(function(key)
  2302. keysDown[key] = true
  2303.  
  2304. if key == "f" then
  2305. flyToggled = not flyToggled
  2306.  
  2307. if not flyToggled then
  2308. stanceToggle = "Normal"
  2309. floatBP.Parent = nil
  2310. flyBV.Parent = nil
  2311. turnBG.Parent = nil
  2312. root.Velocity = Vector3.new()
  2313. pchar.Humanoid.PlatformStand = false
  2314. end
  2315. end
  2316.  
  2317. end)
  2318. mouse.KeyUp:connect(function(key)
  2319. keysDown[key] = nil
  2320. end)
  2321.  
  2322. local function updateFly()
  2323.  
  2324.  
  2325.  
  2326.  
  2327. if not flyToggled then return end
  2328.  
  2329. lastForward = forward
  2330. lastSide = side
  2331.  
  2332. forward = 0
  2333. side = 0
  2334.  
  2335. if keysDown.w then
  2336. forward = forward + 1
  2337. end
  2338. if keysDown.s then
  2339. forward = forward - 1
  2340. end
  2341. if keysDown.a then
  2342. side = side - 1
  2343. end
  2344. if keysDown.d then
  2345. side = side + 1
  2346. end
  2347.  
  2348. canFly = (forward ~= 0 or side ~= 0)
  2349.  
  2350. if canFly then
  2351. stanceToggle = "Floating"
  2352. turnBG.Parent = root
  2353. floatBP.Parent = nil
  2354. flyBV.Parent = root
  2355.  
  2356. flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
  2357. if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
  2358. else
  2359. floatBP.position = root.Position
  2360. floatBP.Parent = root
  2361.  
  2362. flySpeed = flySpeed - 1
  2363. if flySpeed < 0 then flySpeed = 0 end
  2364. end
  2365.  
  2366. local camCF = cam.CoordinateFrame
  2367. local in_forward = canFly and forward or lastForward
  2368. local in_side = canFly and side or lastSide
  2369.  
  2370. flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side,in_forward * 0.2, 0).p) - camCF.p) * flySpeed
  2371.  
  2372. turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0,0)
  2373. end
  2374.  
  2375. game:service'RunService'.RenderStepped:connect(function()
  2376. if flyToggled then
  2377. pchar.Humanoid.PlatformStand = true
  2378. end
  2379. updateFly()
  2380. end)
  2381.  
  2382.  
  2383.  
  2384.  
  2385.  
  2386. local TBlast, TBMesh = Instance.new("Part"), Instance.new("SpecialMesh")
  2387. TBlast.BrickColor = BrickColor.new("Really red")
  2388. TBlast.Transparency = 1
  2389. TBlast.Anchored = true
  2390. TBlast.CanCollide = false
  2391. TBlast.CFrame = root.CFrame
  2392. TBlast.Size = Vector3.new(2,2,2)
  2393. TBMesh.Parent = TBlast
  2394. TBMesh.MeshType = "Sphere"
  2395. game.Lighting.Brightness = 0
  2396. game.Lighting.OutdoorAmbient = TBlast.BrickColor.Color
  2397. game.Lighting.TimeOfDay = 0.1
  2398. game.Lighting.FogEnd = 1000
  2399. game.Lighting.FogColor = TBlast.BrickColor.Color
  2400. game.Lighting.TimeOfDay = "00:00:00"
  2401. game.Lighting.Ambient = Color3.new(0,0,0)
  2402. game.Lighting.FogColor = Color3.new(0,0,0)
  2403. game.Lighting.FogEnd = 500
  2404. game.Lighting.FogStart = 0
  2405. game.Lighting.GlobalShadows = true
  2406.  
  2407.  
  2408.  
  2409. function ClearEffects()
  2410. for i, v in ipairs(CurrentEffects) do
  2411. v:Remove()
  2412. v:Destroy()
  2413. game:GetService("Debris"):AddItem(v,0)
  2414. table.remove(CurrentEffects,i)
  2415. end
  2416. end
  2417. Human.WalkSpeed=26
  2418. function defpos()
  2419. Neck.C0 = necko
  2420. LH.C0 = LHC0
  2421. LS.C0 = LSC0
  2422. RH.C0 = RHC0
  2423. RS.C0 = RSC0
  2424. RootJoint.C0 = ROOTC0
  2425. end
  2426.  
  2427. function newpos()
  2428. defpos()
  2429. RS.C0=clerp(RS.C0,RS.C0*angles(rad(-50),0,0),.3)
  2430. LS.C0=clerp(LS.C0,LS.C0*angles(rad(-50),0,0),.3)
  2431. RH.C0=clerp(RH.C0,RH.C0*angles(rad(-25),0,0),.3)
  2432. LH.C0=clerp(LH.C0,LH.C0*angles(rad(-25),0,0),.3)
  2433. RootJoint.C0=clerp(RootJoint.C0,RootJoint.C0*cf(0,0,1),1)
  2434. end
  2435. function PEE(part,size,col3,Lemission,trans,accel,ltp,edirection,enabled,lifetime,rate,rotation,rotspeed,speed,velspread,name,text)
  2436. local p=it("ParticleEmitter",part)
  2437. p.Size=size
  2438. p.Texture=text
  2439. p.Color=col3
  2440. p.LightEmission=Lemission
  2441. p.Transparency=trans
  2442. p.Acceleration=accel
  2443. p.LockedToPart=ltp
  2444. p.EmissionDirection=edirection
  2445. p.Enabled=enabled
  2446. p.Lifetime=lifetime
  2447. p.Rate=rate
  2448. p.Rotation=rotation
  2449. p.RotSpeed=rotspeed
  2450. p.Speed=speed
  2451. p.VelocitySpread=velspread
  2452. p.Name=name
  2453. return p
  2454. end
  2455.  
  2456. gui = function(GuiType, parent, text, backtrans, backcol, pos, size)
  2457. local gui = Instance.new(GuiType)
  2458. gui.Parent = parent
  2459. gui.Text = text
  2460. gui.BackgroundTransparency = backtrans
  2461. gui.BackgroundColor3 = backcol
  2462. gui.SizeConstraint = "RelativeXY"
  2463. gui.TextXAlignment = "Center"
  2464. gui.TextYAlignment = "Center"
  2465. gui.Position = pos
  2466. gui.Size = size
  2467. gui.Font = "SourceSans"
  2468. gui.FontSize = "Size60"
  2469. gui.TextWrapped = false
  2470. gui.TextStrokeTransparency = 0
  2471. gui.TextColor = BrickColor.new("Really red")
  2472. return gui
  2473. end
  2474.  
  2475. part=function(parent,anchored,cancollide,size,cframe,col3,material,trans)
  2476. local p=it("Part",parent)
  2477. p.Anchored=anchored
  2478. p.CanCollide=cancollide
  2479. p.Size=size
  2480. p.CFrame=cframe
  2481. p.Color=col3
  2482. p.Material=material
  2483. p.Transparency=trans
  2484. return p
  2485. end
  2486.  
  2487. BillboardGui = function(image, position, size)
  2488. local billpar = Instance.new("Part")
  2489. billpar.Transparency = 1
  2490. billpar.formFactor = "Custom"
  2491. billpar.Size = Vector3.new(1, 1, 1)
  2492. billpar.Anchored = true
  2493. billpar.CanCollide = false
  2494. billpar.CFrame = CFrame.new(position)
  2495. billpar.Name = "BillboardGuiPart"
  2496. local bill = Instance.new("BillboardGui", billpar)
  2497. bill.Adornee = billpar
  2498. bill.Size = UDim2.new(1, 0, 1, 0)
  2499. bill.SizeOffset = Vector2.new(size, size)
  2500. local d = Instance.new("ImageLabel", bill)
  2501. d.BackgroundTransparency = 1
  2502. d.Size = UDim2.new(1, 0, 1, 0)
  2503. d.Image = image
  2504. return billpar
  2505. end
  2506.  
  2507. RealDamage = function(part,min,max,radius)
  2508. coroutine.resume(coroutine.create(function()
  2509. for i,v in pairs(workspace:children()) do
  2510. if v:FindFirstChild'Humanoid' and v:FindFirstChild'Torso' then
  2511. if v.Name == game.Players.LocalPlayer.Name then else
  2512. print((v.Torso.Position - part.Position).magnitude)
  2513. if ((v.Torso.Position - part.Position).magnitude <= radius) then
  2514. local hpdmg=math.random(min,max)
  2515. v.Humanoid.Health = v.Humanoid.Health - hpdmg
  2516. print"0"
  2517. print"1"
  2518. local Dbil=it("BillboardGui", v.Torso)
  2519. Dbil.Adornee=v.Torso
  2520. Dbil.Size=UDim2.new(0, 500, 0, 500)
  2521. Dbil.SizeOffset=Vector2.new(0,0)
  2522. Dbil.AlwaysOnTop=true
  2523. Dbil.ExtentsOffset=Vector3.new(ran(-3,3),ran(-3,3),ran(-3,3))
  2524. table.insert(CurrentDamages,Dbil)
  2525. print"2"
  2526. local goo=gui("TextLabel",Dbil,""..hpdmg.."",1,Color3.new(0,0,0),UDim2.new(0, 0, 0, 0),UDim2.new(1, 0, 1, 0))
  2527. table.insert(CurrentDamages,goo)
  2528. print"3"
  2529. for i=1,10 do
  2530. wait()
  2531. goo.TextTransparency=i/10
  2532. end
  2533. for a,b in pairs(CurrentDamages) do
  2534. b:Remove()
  2535. b:Destroy()
  2536. game:GetService("Debris"):AddItem(b,0)
  2537. table.remove(CurrentEffects,a)
  2538. end
  2539.  
  2540. end
  2541. end
  2542. end
  2543. end
  2544. end))
  2545. end
  2546.  
  2547. smoothNO=function(ppart)
  2548. ppart.TopSurface=10
  2549. ppart.BottomSurface=10
  2550. ppart.BackSurface=10
  2551. ppart.FrontSurface=10
  2552. ppart.LeftSurface=10
  2553. ppart.RightSurface=10
  2554. return ppart
  2555. end
  2556.  
  2557. smoothO=function(ppart)
  2558. ppart.TopSurface=0
  2559. ppart.BottomSurface=0
  2560. ppart.BackSurface=0
  2561. ppart.FrontSurface=0
  2562. ppart.LeftSurface=0
  2563. ppart.RightSurface=0
  2564. end
  2565.  
  2566. sound=function(parent,id,vol,looped)
  2567. local s=it("Sound",parent)
  2568. s.SoundId=id
  2569. s.Volume=vol
  2570. s.Looped=looped
  2571. return s
  2572. end
  2573.  
  2574. mesh=function(parent,ttype,scale)
  2575. local m=it("SpecialMesh",parent)
  2576. m.MeshType=ttype
  2577. m.Scale=scale
  2578. return m
  2579. end
  2580.  
  2581. spmesh=function(parent,id,scale)
  2582. local m=it("SpecialMesh",parent)
  2583. m.MeshId=id
  2584. m.Scale=scale
  2585. return m
  2586. end
  2587.  
  2588.  
  2589.  
  2590.  
  2591. local EyePart=part(Char,false,false,v3(.3,.3,.3),Torso.CFrame,c3(0,1,0),"Neon",0)
  2592. EyePart.Name="EyePart"
  2593. EyePart.Shape="Ball"
  2594. local EyeWeld=it("Weld",Char)
  2595. EyeWeld.Part0=EyePart
  2596. EyeWeld.Part1=Head
  2597. EyeWeld.C0=EyeWeld.C0*cf(.2,-.25,.578)
  2598. local EyeSizes={
  2599. NumberSequenceKeypoint.new(0,.4,0),
  2600. NumberSequenceKeypoint.new(1,0,0)
  2601. }
  2602. local EyeTrans={
  2603. NumberSequenceKeypoint.new(0,0,0),
  2604. NumberSequenceKeypoint.new(1,1,0)
  2605. }
  2606. local PE=it("ParticleEmitter",EyePart)
  2607. PE.LightEmission=.4
  2608. PE.LockedToPart=true
  2609. PE.Size=NumberSequence.new(EyeSizes)
  2610. PE.Transparency=NumberSequence.new(EyeTrans)
  2611. PE.Acceleration=v3(2,0,0)
  2612. PE.Lifetime=NumberRange.new(2,2,2)
  2613. PE.Rate=70
  2614. PE.Speed=NumberRange.new(4,4,4)
  2615. PE.Texture="rbxassetid://300899374"
  2616.  
  2617. local function RisingAndRotatingParts(Parent,Cframe,Col1,Col2,Time,Material,Size)
  2618. local Colours = {BrickColor.new(Col1),BrickColor.new(Col2)}
  2619.  
  2620. local flame1 = Instance.new("Part",Parent)
  2621. flame1.Anchored = true
  2622. flame1.CanCollide =false
  2623. flame1.CFrame = Cframe
  2624. flame1.Material = Material
  2625. flame1.TopSurface = 0
  2626. flame1.BottomSurface = 0
  2627. flame1.Size = Size
  2628. flame1.BrickColor = Colours[math.random(1,#Colours)]
  2629.  
  2630. for i = 1,30 do
  2631. flame1.CFrame = flame1.CFrame*CFrame.Angles(.5,.5,.5)+Vector3.new(0,.2,0)
  2632. flame1.Transparency = i/30
  2633. r:wait()
  2634. end
  2635. flame1:Destroy()
  2636. end
  2637.  
  2638. coroutine.resume(coroutine.create(function()
  2639. while r:wait() do
  2640. RisingAndRotatingParts(Char,Torso.CFrame*cf(ran(-2,2),-3,ran(-2,2)),"Lime green","Really black",1,"Neon",v3(.5,.5,.5))
  2641. end
  2642. end))
  2643. coroutine.resume(coroutine.create(function()
  2644. for i=1,huge do
  2645. local MCir=part(Char,false,false,v3(0,0,0),Torso.CFrame,c3(0,0,0),"Neon",1)
  2646. table.insert(CurrentEffects,MCir)
  2647. local CirM=mesh(MCir,"Cylinder",v3(1.3,3.3,3.3))
  2648. table.insert(CurrentEffects,CirM)
  2649. local CirDec=it("Decal",MCir)
  2650. CirDec.Texture="rbxassetid://687708091"
  2651. CirDec.Face="Right"
  2652. CirDec.Transparency=.5
  2653. table.insert(CurrentEffects,CirDec)
  2654. local MagicWeld=it("Weld",Char)
  2655. MagicWeld.Part0=EyePart
  2656. MagicWeld.Part1=MCir
  2657. MagicWeld.C0=MagicWeld.C0*angles(0,rad(90),0)*cf(.05,0,0)
  2658. table.insert(CurrentEffects,MagicWeld)
  2659. for i=1,40 do
  2660. MagicWeld.C0=MagicWeld.C0*angles(rad(6),0,0)
  2661. CirM.Scale=CirM.Scale+v3(0,.4,.4)
  2662. CirDec.Transparency=i/40
  2663. r:wait()
  2664. end
  2665. --ClearEffects()
  2666. end
  2667. end))
  2668. print"kek"
  2669.  
  2670. attackone=function()
  2671. if attacking ==false then attacking=true
  2672. print"1"
  2673. chat:Chat(Char.Head,"Hmph.","Green")
  2674. local Hbox=part(Char,false,false,v3(1.5,2,1.5),Torso.CFrame,c3(0,0,0),"Plastic",1)
  2675. RealDamage(Hbox,7,16,5,false)
  2676. local w=it("Weld",Char)
  2677. w.Part0=Hbox
  2678. w.Part1=LArm
  2679. w.C0=w.C0*cf(0,1,0)
  2680. for i=1,10 do
  2681. RS.C0=clerp(RS.C0,RS.C0*angles(rad(0),0,0),.06)
  2682. LS.C0=clerp(LS.C0,LS.C0*angles(rad(0),rad(-65),rad(-150)),.06)
  2683. RH.C0=clerp(RH.C0,RH.C0*angles(0,rad(0),rad(0)),.06)
  2684. LH.C0=clerp(LH.C0,LH.C0*angles(0,0,0),.06)
  2685. RootJoint.C0=clerp(RootJoint.C0,RootJoint.C0*angles(0,rad(0),rad(90)),.06)
  2686. Neck.C0=clerp(Neck.C0,Neck.C0*angles(rad(0),0,rad(-90)),.06)
  2687. r:wait()
  2688. end
  2689. for i=1,10 do
  2690. LS.C0=clerp(LS.C0,LS.C0*angles(rad(-9),rad(0),rad(0)),1)
  2691. RootJoint.C0=clerp(RootJoint.C0,RootJoint.C0*angles(0,rad(0),rad(-12)),1)
  2692. Neck.C0=clerp(Neck.C0,Neck.C0*angles(rad(0),0,rad(12)),1)
  2693. r:wait()
  2694. end
  2695. wait(.8)
  2696. newpos()
  2697. Hbox:Destroy()
  2698. end
  2699. attacking=false
  2700. end
  2701.  
  2702. attacktwo=function()
  2703. if attacking==false then attacking=true
  2704. print"2"
  2705. chat:Chat(Char.Head,"D13 -!","Green")
  2706. local ETorso=Torso:Clone()
  2707. ETorso.Transparency=1
  2708. ETorso.Anchored=true
  2709. ETorso.CanCollide=false
  2710. ETorso.CFrame=Torso.CFrame
  2711. for i=1,10 do
  2712. RS.C0=clerp(RS.C0,RS.C0*angles(rad(-7),rad(0),rad(0))*cf(0,-.05,0),1)
  2713. RootJoint.C0=clerp(RootJoint.C0,RootJoint.C0*angles(0,rad(0),rad(9)),1)
  2714. Neck.C0=clerp(Neck.C0,Neck.C0*angles(rad(0),0,rad(-9)),1)
  2715. r:wait()
  2716. end
  2717.  
  2718. for i=1,30 do
  2719. local p=part(Char,true,false,v3(1,1,1),ETorso.CFrame*cf(0,0,-i)*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,1,0),"Plastic",0)
  2720. local m=it("SpecialMesh",p)
  2721. m.MeshId="rbxassetid://3270017"
  2722. m.Scale=v3(4,4,4)
  2723. spawn(function()
  2724. for ii=1,20 do
  2725. r:wait()
  2726. m.Scale=m.Scale+v3(.5,.5,.5)
  2727. p.Transparency=ii/20
  2728. end
  2729. end)
  2730.  
  2731. r:wait()
  2732. end
  2733. local urmum=part(Char,true,false,v3(1,1,1),ETorso.CFrame*cf(0,0,-30),c3(0,1,0),"Plastic",0)
  2734. table.insert(CurrentEffects,urmum)
  2735. smoothNO(urmum)
  2736. local HBox=urmum:Clone()
  2737. HBox.Parent=Char
  2738. HBox.Transparency=1
  2739. HBox.Shape="Ball"
  2740. HBox.Size=v3(2,2,2)
  2741. HBox.CFrame=urmum.CFrame
  2742. RealDamage(HBox,10,25,20,false)
  2743. local urmesh=it("SpecialMesh",urmum)
  2744. urmesh.MeshType="Sphere"
  2745. urmesh.Scale=v3(2,2,2)
  2746. coroutine.resume(coroutine.create(function()
  2747. for i=1,40 do
  2748. urmum.Transparency=i/40
  2749. urmesh.Scale=urmesh.Scale+v3(1.5,1.5,1.5)
  2750. HBox.CFrame=urmum.CFrame
  2751. HBox.Size=HBox.Size+v3(1,1,1)
  2752. r:wait()
  2753. end
  2754. end))
  2755. for a=1,2 do
  2756. for i=1,20 do
  2757. spawn(function()
  2758. local rann=part(Char,true,false,v3(0,0,0),ETorso.CFrame*cf(0,0,-30)*cf(ran(-30,30),ran(30),ran(-30,30)),c3(0,1,0),"Neon",1)
  2759. table.insert(CurrentEffects,rann)
  2760. local p=part(Char,false,false,v3(0,0,0),ETorso.CFrame*CFrame.new(0,0,-30),c3(0,1,0),"Neon",0)
  2761. table.insert(CurrentEffects,p)
  2762. local m=it("BlockMesh",p)
  2763. m.Scale=v3(6,6,6)
  2764. local bp=it("BodyPosition")
  2765. bp.maxForce=v3(math.huge,math.huge,math.huge)
  2766. bp.Position=rann.Position
  2767. bp.Parent=p
  2768. table.insert(CurrentEffects,bp)
  2769. spawn(function()
  2770. for i=1,16 do
  2771. r:wait()
  2772. p.Transparency=i/16
  2773. end
  2774. end)
  2775. wait()
  2776. bp.Parent=bil
  2777. end)
  2778. end
  2779. end
  2780. ETorso:Remove()
  2781. HBox:Destroy()
  2782. end
  2783. --ClearEffects()
  2784. attacking=false
  2785. newpos()
  2786. end
  2787.  
  2788. attackthree=function()
  2789. if attacking==false then attacking=true
  2790. print"3"
  2791. chat:Chat(Char.Head,"Get Ready Warning..","Green")
  2792. for i=1,10 do
  2793. RS.C0=clerp(RS.C0,RS.C0*angles(rad(-33),0,rad(-10))*cf(0,-.25,0),.4)
  2794. LS.C0=clerp(LS.C0,LS.C0*angles(rad(0),rad(20),rad(0)),.06)
  2795. RH.C0=clerp(RH.C0,RH.C0*angles(0,rad(0),rad(0)),.06)
  2796. LH.C0=clerp(LH.C0,LH.C0*angles(0,0,0),.06)
  2797. RootJoint.C0=clerp(RootJoint.C0,RootJoint.C0*angles(0,rad(0),rad(-6)),1)
  2798. Neck.C0=clerp(Neck.C0,Neck.C0*angles(rad(0),0,rad(6)),1)
  2799. r:wait()
  2800. end
  2801.  
  2802. local ball=part(Char,false,false,v3(1,1,1),Head.CFrame,c3(0,0,0),"Plastic",.8)
  2803. local ball2=part(Char,false,false,v3(1,1,1),Head.CFrame,c3(0,1,0),"Neon",.2)
  2804. local w=it("Weld",Char)
  2805. w.Part0=ball
  2806. w.Part1=RArm
  2807. w.C0=w.C0*cf(0,20,0)
  2808. local w2=it("Weld",Char)
  2809. w2.Part0=ball2
  2810. w2.Part1=ball
  2811. local m=it("SpecialMesh",ball)
  2812. m.MeshType="Sphere"
  2813. m.Scale=Vector3.new(.1,.1,.1)
  2814. local m2=it("SpecialMesh",ball2)
  2815. m2.MeshType="Sphere"
  2816. m2.Scale=Vector3.new(.01,.01,.01)
  2817. local EyeSizes={
  2818. NumberSequenceKeypoint.new(0,5,0),
  2819. NumberSequenceKeypoint.new(1,0,0)
  2820. }
  2821. local PE=it("ParticleEmitter",ball)
  2822. PE.LightEmission=.4
  2823. PE.LockedToPart=false
  2824. PE.Size=NumberSequence.new(EyeSizes)
  2825. PE.Transparency=NumberSequence.new(EyeTrans)
  2826. PE.Acceleration=v3(0,0,0)
  2827. PE.Lifetime=NumberRange.new(4,4,4)
  2828. PE.Rate=2e9
  2829. PE.Speed=NumberRange.new(0,0,0)
  2830. PE.Texture="rbxassetid://300899374"
  2831. --table.insert(CurrentEffects,PE)
  2832. coroutine.resume(coroutine.create(function()
  2833. for i=1,30 do
  2834. spawn(function()
  2835. local rng=part(Char,true,false,v3(1,1,1),ball.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,1,0),"Plastic",.5)
  2836. table.insert(CurrentEffects,rng)
  2837. local rm=it("SpecialMesh",rng)
  2838. rm.MeshId="rbxassetid://3270017"
  2839. rm.Scale=v3(60,60,60)
  2840. for ii=1,10 do
  2841. rm.Scale=rm.Scale-v3(6,6,6)
  2842. r:wait()
  2843. end
  2844. end)
  2845. wait()
  2846. end
  2847. end))
  2848. local p1=part(Char,true,false,v3(1,1,1),ball.CFrame,c3(0,1,0),"Neon",.5)
  2849. local pm=mesh(p1,"Brick",v3(5,5,5))
  2850. for i=1,20 do
  2851. m.Scale=m.Scale+v3(.5,.5,.5)
  2852. m2.Scale=m2.Scale+v3(.3,.3,.3)
  2853. p1.Transparency=(-i/20*-i/20)
  2854. r:wait()
  2855. end
  2856. wait(.5)
  2857. w.Parent=nil
  2858. table.insert(CurrentEffects,w)
  2859. --table.insert(CurrentEffects,w2)
  2860. local placeholder=part(Char,true,false,v3(1,1,1),Head.CFrame*CFrame.new(0,-5,-30),c3(0,1,0),"Neon",1)
  2861. local BV=it("BodyVelocity")
  2862. BV.maxForce=v3(huge,huge,huge)
  2863. BV.Velocity=(placeholder.Position-ball.Position).unit*100
  2864. BV.Parent=ball
  2865. ball.Touched:connect(function(hit)
  2866. if hit.Name~=ball2.Name then
  2867. ball.Anchored=true
  2868. ball.ParticleEmitter.Enabled=false
  2869. ball.Transparency=1
  2870. ball2.Transparency=1
  2871. local xpl=part(Char,true,false,v3(1,1,1),ball.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,1,0),"Neon",.75)
  2872. local m=spmesh(xpl,"rbxassetid://9982590",v3(4,4,4))
  2873. local xpl2=part(Char,true,false,v3(4,4,4),ball.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,1,0),"Neon",1)
  2874. spawn(function()
  2875. for i=1,80 do
  2876. xpl.Transparency=.75+i/80
  2877.  
  2878. m.Scale=m.Scale+v3(.6,.6,.6)
  2879.  
  2880. wait()
  2881.  
  2882.  
  2883. end
  2884. end)
  2885. RealDamage(xpl2,15,30,7)
  2886. for i=1,50 do
  2887. xpl2.Size=xpl2.Size+v3(.3,.3,.3)
  2888. xpl2.CFrame=ball.CFrame
  2889. r:wait()
  2890. end
  2891. xpl:Destroy()
  2892. xpl2:Destroy()
  2893. end
  2894. end)
  2895. spawn(function()
  2896. wait(1.5)
  2897. if BV then
  2898. BV:Destroy()
  2899. end
  2900.  
  2901. placeholder:Destroy()
  2902. PE.Enabled=false
  2903. ball2:Destroy()
  2904. wait(7)
  2905. ball:Destroy()
  2906. end)
  2907. for i=1,10 do
  2908. RS.C0=clerp(RS.C0,RS.C0*angles(rad(0),rad(20),rad(30))*cf(0,0,0),.4)
  2909. LS.C0=clerp(LS.C0,LS.C0*angles(rad(0),rad(0),rad(0)),.06)
  2910. RH.C0=clerp(RH.C0,RH.C0*angles(0,rad(0),rad(0)),.06)
  2911. LH.C0=clerp(LH.C0,LH.C0*angles(0,0,0),.06)
  2912. RootJoint.C0=clerp(RootJoint.C0,RootJoint.C0*angles(0,rad(0),rad(12)),1)
  2913. Neck.C0=clerp(Neck.C0,Neck.C0*angles(rad(0),0,rad(-12)),1)
  2914. wait()
  2915. end
  2916. chat:Chat(Char.Head,"F2lling St-3r!","Green")
  2917. end
  2918. wait(2)
  2919. attacking=false
  2920. attacktype=1
  2921. newpos()
  2922. end
  2923.  
  2924. Mouse.Button1Down:connect(function()
  2925. if attacking== false and attacktype == 1 then
  2926. attackone()
  2927. attacktype = 2
  2928. else
  2929. if attacking == false and attacktype == 2 then
  2930. attacktwo()
  2931. attacktype = 3
  2932. else
  2933. if attacking == false and attacktype == 3 then
  2934. attackthree()
  2935. attacktype = 1
  2936. end
  2937. end
  2938. end
  2939. end)
  2940.  
  2941.  
  2942. local Ging=false
  2943. Mouse.KeyDown:connect(function(Key)
  2944. if Key=="g" and Ging==false and attacking==false then attacking,Torso.Anchored=true,true
  2945. local Clear={}
  2946. local REKING=true
  2947. chat:Chat(Char.Head,"By The Power Bestowed Upon Me Within The Demon 666 eye charged...","Green")
  2948. for i=1,20 do
  2949. RS.C0=clerp(RS.C0,RS.C0*angles(rad(4.5),rad(-2),rad(8.5))*cf(0.02,0,0),1)
  2950. LS.C0=clerp(LS.C0,LS.C0*angles(rad(0),rad(0),rad(0)),.06)
  2951. RH.C0=clerp(RH.C0,RH.C0*angles(0,rad(0),rad(0)),.06)
  2952. LH.C0=clerp(LH.C0,LH.C0*angles(0,0,0),.06)
  2953. RootJoint.C0=clerp(RootJoint.C0,RootJoint.C0*angles(0,rad(0),rad(1)),1)
  2954. Neck.C0=clerp(Neck.C0,Neck.C0*angles(rad(-1),0,rad(-2)),1)
  2955. r:wait()
  2956. end
  2957. local ball=part(Char,false,false,v3(0,0,0),Torso.CFrame,c3(0,1,0),"Neon",0)
  2958. local ball2=part(Char,false,false,v3(.3,.3,.3),Torso.CFrame,c3(0,0,0),"Plastic",.8)
  2959. local bm=mesh(ball,"Sphere",v3(0,0,0))
  2960. local bm2=mesh(ball2,"Sphere",v3(.3,.3,.3))
  2961. smoothNO(ball2)
  2962. local w=it("Weld",Char)
  2963. w.Part0=ball
  2964. w.Part1=RArm
  2965. w.C0=w.C0*CFrame.new(0,1.6,0)
  2966. local w2=it("Weld",Char)
  2967. w2.Part0=ball2
  2968. w2.Part1=RArm
  2969. w2.C0=w2.C0*CFrame.new(0,1.6,0)
  2970. for i=1,60 do r:wait()
  2971. bm.Scale=bm.Scale:Lerp(bm.Scale+Vector3.new(.23,.23,.23),.3)
  2972. bm2.Scale=bm2.Scale:Lerp(bm2.Scale+Vector3.new(.3,.3,.3),.3)
  2973. end
  2974. local Ring=part(Char,true,false,v3(0,0,0),ball.CFrame,c3(0,0,0),"Neon",.5)
  2975. local Ring2=Ring:Clone()
  2976. Ring2.Parent=Char
  2977. local RM=spmesh(Ring,"rbxassetid://3270017",Vector3.new(1.7,1.7,.5))
  2978. local RM2=spmesh(Ring2,"rbxassetid://3270017",Vector3.new(1.7,1.7,.5))
  2979. Ring.CFrame=ball.CFrame*CFrame.Angles(ran(-10,10),ran(-10,10),ran(-10,10))
  2980. Ring2.CFrame=ball.CFrame*CFrame.Angles(ran(-10,10),ran(-10,10),ran(-10,10))
  2981. Ging=true
  2982. coroutine.resume(coroutine.create(function()
  2983. while Ging==true do r:wait()
  2984. Ring.CFrame=Ring.CFrame:lerp(Ring.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.3)
  2985. Ring2.CFrame=Ring2.CFrame:lerp(Ring2.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.3)
  2986. end
  2987. end))
  2988. print"OYEFGYEFYGIEF"
  2989. local cols={"Lime green", "Really black"}
  2990. function fromground()
  2991. local poss = Torso.CFrame*CFrame.new(0,-3,0)
  2992. local main=it("Part",Char)
  2993. main.Anchored=true
  2994. main.CanCollide=false
  2995. main.Size=v3(1,.2,1)
  2996. main.CFrame=poss
  2997. main.BrickColor=BrickColor.new(cols[math.random(#cols)])
  2998. main.Material="Neon"
  2999. main.CFrame = main.CFrame*cf((ran(-30,30)),0,(ran(-30,30)))
  3000. local one = it("SpecialMesh", main)
  3001. one.MeshType = "Sphere"
  3002. one.Scale = v3(.3,.3,.3)
  3003. main.CFrame = main.CFrame*angles((rad(90)),0,0)
  3004. for i = 0,10,.1 do
  3005. one.Scale = one.Scale+v3(.1,.1,4)
  3006. main.Transparency = i
  3007. wait()
  3008. end
  3009. one:Destroy()
  3010. main:Destroy()
  3011. end
  3012. coroutine.resume(coroutine.create(function()
  3013. while Ging==true do
  3014. spawn(function()
  3015. fromground()
  3016. end)
  3017. wait(.1)
  3018. end
  3019. end))
  3020. spawn(function()
  3021. coroutine.resume(coroutine.create(function()
  3022. for i=1,17 do r:wait()
  3023. print"hi"
  3024. local Cir=part(Char,true,false,v3(0,0,0),Torso.CFrame*cf(0,-2.8,0)*angles(0,0,math.rad(90)),c3(0,0,0),"Neon",1)
  3025. local Cirm=mesh(Cir,"Cylinder",v3(0,1,1))
  3026. local CirDec=it("Decal",Cir)
  3027. CirDec.Texture="rbxassetid://687708091"
  3028. CirDec.Face="Right"
  3029. CirDec.Transparency=0
  3030. table.insert(Clear,Cir)
  3031. for ii=1,100 do r:wait()
  3032. Cir.CFrame=Cir.CFrame*CFrame.Angles(math.rad(i*1.5),0,0)
  3033. Cirm.Scale=Cirm.Scale:Lerp(Cirm.Scale+Vector3.new(0,6,6),.4)
  3034. CirDec.Transparency=ii/100
  3035. end
  3036. end
  3037. end))
  3038. end)
  3039. Bright={}
  3040. local BR=1
  3041. for i=1,10 do
  3042. table.insert(Bright,BR)
  3043. BR=BR-.1
  3044. end
  3045. table.insert(Bright,0)
  3046. for i, v in pairs(Bright) do
  3047. print(v)
  3048. end
  3049. Lighting.Brightness=1
  3050. spawn(function()
  3051. for i=1,#Bright do
  3052. Lighting.Brightness=Bright[i]
  3053. wait(.1)
  3054. end
  3055. end)
  3056. local C1=part(Char,true,false,v3(1,1,1),Torso.CFrame*CFrame.new(0,155,0),c3(90/255,97/255,99/255),"Plastic",1)
  3057. local C1m=spmesh(C1,"rbxassetid://1095708",v3(1000,50,1000))
  3058. for i=1,#Bright do
  3059. C1.Transparency=Bright[i]
  3060. wait(.1)
  3061. end
  3062. chat:Chat(Char.Head,"Open! Hades Gate...0110!","Green")
  3063. --PORTAL
  3064. Portalling=true
  3065. for i=1,2 do
  3066. local Spoke1=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,1),"Plastic",1)
  3067. local pp1=part(Char,false,false,v3(2,2,2),Torso.CFrame,c3(0,1,1),"Plastic",1)
  3068. local pp2=part(Char,false,false,v3(2,2,2),Torso.CFrame,c3(0,1,1),"Plastic",1)
  3069. local pp3=part(Char,false,false,v3(2,2,2),Torso.CFrame,c3(0,1,1),"Plastic",1)
  3070. local pp4=part(Char,false,false,v3(2,2,2),Torso.CFrame,c3(0,1,1),"Plastic",1)
  3071. local POS=part(Char,false,false,v3(2,2,2),Torso.CFrame*angles(math.rad(90),0,0)*cf(0,0,-140),c3(0,1,1),"Plastic",1)
  3072.  
  3073. local wel0=it("Weld",Char)
  3074. wel0.Part0=Spoke1
  3075. wel0.Part1=POS
  3076. wait()
  3077. local wel1=it("Weld",Char)
  3078. wel1.Part0=POS
  3079. wel1.Part1=pp1
  3080. wait()
  3081. wel1.C0=wel1.C0*cf(0,60,0)
  3082. wait()
  3083. local wel2=it("Weld",Char)
  3084. wel2.Part0=POS
  3085. wel2.Part1=pp2
  3086. wel2.C0=wel2.C0*cf(0,-60,0)
  3087. wait()
  3088.  
  3089. local wel3=it("Weld",Char)
  3090. wel3.Part0=POS
  3091. wel3.Part1=pp3
  3092. wel3.C0=wel3.C0*cf(-60,0,0)
  3093. wait()
  3094. local wel4=it("Weld",Char)
  3095. wel4.Part0=POS
  3096. wel4.Part1=pp4
  3097. wel4.C0=wel4.C0*cf(60,0,0)
  3098. local TransPoints={
  3099. NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(.51,0,0),NumberSequenceKeypoint.new(.517,.0123,0),
  3100. NumberSequenceKeypoint.new(.767,0.0926,0),NumberSequenceKeypoint.new(.88,.395,0),NumberSequenceKeypoint.new(1,1,0)
  3101. }
  3102. local SizePoints={
  3103. NumberSequenceKeypoint.new(0,4.56,0),NumberSequenceKeypoint.new(.046,4.44,0),NumberSequenceKeypoint.new(.144,4.25,0),
  3104. NumberSequenceKeypoint.new(.521,4,0),NumberSequenceKeypoint.new(1,3.75,0)
  3105. }
  3106. local PE1=PEE(pp1,NumberSequence.new(SizePoints),ColorSequence.new(Color3.new(1,1,1),Color3.new(0,1,1)),.6,NumberSequence.new(TransPoints),v3(0,0,0),false,"Bottom",true,NumberRange.new(6,6,6),499999997952.000,NumberRange.new(0,0,0),NumberRange.new(0,0,0),NumberRange.new(6,6,6),0,"SpinningPortalEffect1","rbxassetid://300899374")
  3107. local PE2=PEE(pp2,NumberSequence.new(SizePoints),ColorSequence.new(Color3.new(1,1,1),Color3.new(0,1,1)),.6,NumberSequence.new(TransPoints),v3(0,0,0),false,"Top",true,NumberRange.new(6,6,6),499999997952.000,NumberRange.new(0,0,0),NumberRange.new(0,0,0),NumberRange.new(6,6,6),0,"SpinningPortalEffect2","rbxassetid://300899374")
  3108. local PE3=PEE(pp3,NumberSequence.new(SizePoints),ColorSequence.new(Color3.new(1,1,1),Color3.new(0,1,1)),.6,NumberSequence.new(TransPoints),v3(0,0,0),false,"Right",true,NumberRange.new(6,6,6),499999997952.000,NumberRange.new(0,0,0),NumberRange.new(0,0,0),NumberRange.new(6,6,6),0,"SpinningPortalEffect3","rbxassetid://300899374")
  3109. local PE4=PEE(pp4,NumberSequence.new(SizePoints),ColorSequence.new(Color3.new(1,1,1),Color3.new(0,1,1)),.6,NumberSequence.new(TransPoints),v3(0,0,0),false,"Left",true,NumberRange.new(6,6,6),499999997952.000,NumberRange.new(0,0,0),NumberRange.new(0,0,0),NumberRange.new(6,6,6),0,"SpinningPortalEffect4","rbxassetid://300899374")
  3110. spawn(function()
  3111.  
  3112.  
  3113. while Portalling==true do
  3114. wait()
  3115. POS.CFrame=POS.CFrame*angles(0,0,math.rad(3))
  3116. end
  3117. POS:Destroy()
  3118. pp1:Destroy()
  3119. pp2:Destroy()
  3120. pp3:Destroy()
  3121. pp4:Destroy()
  3122. end)
  3123. wait(.5)
  3124. end
  3125. wait(5)
  3126. newpos()
  3127. chat:Chat(Char.Head,"Now, You Will Know What It's Like To Burn a Boss.","Green")
  3128. Ging=false
  3129. Ring:Destroy()
  3130. Ring2:Destroy()
  3131. ball:Destroy()
  3132. ball2:Destroy()
  3133. for i,v in pairs(Clear) do
  3134. v:Destroy()
  3135. end
  3136. wait(3)
  3137. --anims
  3138. chat:Chat(Char.Head,"D1E!!!!! 666 0110 0110 0110 -----","Green")
  3139. defpos()
  3140.  
  3141. RS.C0 = clerp(RS.C0,RS.C0* angles(rad(-30), rad(0), rad(0)), 1)
  3142. LS.C0 = clerp(LS.C0,LS.C0* angles(rad(-30), rad(0), rad(0)), 1)
  3143. RH.C0 = clerp(RH.C0,RH.C0* angles(rad(-10), rad(0), rad(0)), 1)
  3144. LH.C0 = clerp(LH.C0,LH.C0* angles(rad(-10), rad(0), rad(0)), 1)
  3145. Neck.C0 = clerp(Neck.C0,Neck.C0*angles(rad(-35), rad(0), rad(0)), 1)
  3146. local cylp=part(Char,true,false,v3(1,1,1),Torso.CFrame*angles(0,0,math.rad(90)),c3(0,1,0),"Neon",.5)
  3147. local clym=mesh(cylp,"Cylinder",v3(5000,60,40))
  3148. smoothNO(cylp)
  3149. spawn(function()
  3150. while REKING==true do r:wait()
  3151. cylp.CFrame=Torso.CFrame*angles(0,0,math.rad(90))*CFrame.new(ran(-2,2),0,ran(-2,2))
  3152. end
  3153. end)
  3154. local Explosion=function()
  3155. local b1=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,0),"Neon",.5)--spike mesh in middle
  3156. local b2=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,0,0),"Neon",.6)--black ball mesh thats big and expands
  3157. local b3=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,0),"Neon",.7)--green ball mesh that coats black ball mesh
  3158. local r1=part(Char,true,false,v3(1,1,1),Torso.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,0,0),"Neon",.6)--ring that rotates around section
  3159. local r2=part(Char,true,false,v3(1,1,1),Torso.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,0,0),"Neon",.6)--ring that rotates around section
  3160. local bb=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,0,0),"Neon",.7)--black ball that envelopes all >:D rhymes
  3161. local gr=part(Char,true,false,v3(1,1,1),Torso.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,1,0),"Neon",.7)--green ring that goes around bb
  3162. local gr2=part(Char,true,false,v3(1,1,1),Torso.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,1,0),"Neon",.7)--green ring that goes around bb
  3163. local sw=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,0),"Neon",.7)--shockwave around whole fing
  3164. local sw2=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,0),"Neon",.7)--another shockwave around whole fing
  3165. local bm1=spmesh(b1,"rbxassetid://9982590",v3(8,8,8))
  3166. local bm2=mesh(b2,"Sphere",v3(40,40,40))
  3167. local bm3=mesh(b3,"Sphere",v3(42,42,42))
  3168. local rm1=spmesh(r1,"rbxassetid://3270017",v3(50,50,30))
  3169. local rm2=spmesh(r2,"rbxassetid://3270017",v3(50,50,30))
  3170. local bbm=mesh(bb,"Sphere",v3(60,60,60))
  3171. local grm1=spmesh(gr,"rbxassetid://3270017",v3(80,80,50))
  3172. local grm2=spmesh(gr2,"rbxassetid://3270017",v3(80,80,50))
  3173. local ss1=spmesh(sw,"rbxassetid://20329976",v3(40,15,40))
  3174. local ss2=spmesh(sw2,"rbxassetid://20329976",v3(48,5,48))
  3175. wait()
  3176. smoothNO(b1)
  3177. smoothNO(b2)
  3178. smoothNO(bb)
  3179. RealDamage(Torso,70,200,70,false)
  3180. for i=1,400 do r:wait()
  3181. --CFrames
  3182. b1.CFrame=b1.CFrame:lerp(b1.CFrame*CFrame.Angles(rad(3),0,rad(3)),.4)
  3183. r1.CFrame=r1.CFrame:lerp(r1.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.3)
  3184. r2.CFrame=r2.CFrame:lerp(r2.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.3)
  3185. gr.CFrame=gr.CFrame:lerp(gr.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.1)
  3186. gr2.CFrame=gr2.CFrame:lerp(gr2.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.1)
  3187. sw.CFrame=sw.CFrame:lerp(sw.CFrame*CFrame.Angles(0,math.rad(5),0),.4)
  3188. sw2.CFrame=sw2.CFrame:lerp(sw2.CFrame*CFrame.Angles(0,math.rad(-5),0),.4)
  3189. --Sizing
  3190. bm1.Scale=bm1.Scale:Lerp(bm1.Scale+Vector3.new(1.8,1.8,1.8),.069)--hehe
  3191. bm2.Scale=bm2.Scale:Lerp(bm2.Scale+Vector3.new(6,6,6),.1)
  3192. bm3.Scale=bm3.Scale:Lerp(bm3.Scale+Vector3.new(6,6,6),.1)
  3193. rm1.Scale=rm1.Scale:Lerp(rm1.Scale+Vector3.new(7,7,7),.1)
  3194. rm2.Scale=rm2.Scale:Lerp(rm2.Scale+Vector3.new(7,7,7),.1)
  3195. bbm.Scale=bbm.Scale:Lerp(bbm.Scale+Vector3.new(8,8,8),.1)
  3196. grm1.Scale=grm1.Scale:Lerp(grm1.Scale+Vector3.new(7,7,7),.1)
  3197. grm2.Scale=grm2.Scale:Lerp(grm2.Scale+Vector3.new(7,7,7),.1)
  3198. ss1.Scale=ss1.Scale:Lerp(ss1.Scale+Vector3.new(7,3,7),.1)
  3199. ss2.Scale=ss2.Scale:Lerp(ss2.Scale+Vector3.new(7,2,7),.1)
  3200. --Transparency
  3201. b1.Transparency=.7+i/400
  3202. b2.Transparency=.7+i/400
  3203. b3.Transparency=.7+i/400
  3204. r1.Transparency=.7+i/400
  3205. r2.Transparency=.7+i/400
  3206. bb.Transparency=.7+i/400
  3207. gr.Transparency=.7+i/400
  3208. gr2.Transparency=.7+i/400
  3209. sw.Transparency=.7+i/400
  3210. sw2.Transparency=.7+i/400
  3211.  
  3212. end
  3213. --Destroying
  3214. b1:Destroy()
  3215. b2:Destroy()
  3216. b3:Destroy()
  3217. r1:Destroy()
  3218. r2:Destroy()
  3219. bb:Destroy()
  3220. gr:Destroy()
  3221. gr2:Destroy()
  3222. sw:Destroy()
  3223. sw2:Destroy()
  3224. end
  3225. for i=1,30 do r:wait()
  3226. spawn(function()
  3227. Explosion()
  3228. end)
  3229. wait(.89)
  3230. end
  3231. REKING=false
  3232. NBright={}
  3233. local NBR=0
  3234. for i=1,10 do
  3235. table.insert(NBright,NBR)
  3236. NBR=NBR+.1
  3237. end
  3238. print"boop"
  3239. for i, v in pairs(NBright) do
  3240. print(v)
  3241. end
  3242. for i=1,#NBright do
  3243. Lighting.Brightness=NBright[i]
  3244. wait(.1)
  3245. end
  3246. Lighting.Brightness=1
  3247. Portalling=false
  3248. for i=1,10 do wait()
  3249. C1.Transparency=i/10
  3250. cylp.Transparency=.5+i/10
  3251. end
  3252. Torso.Anchored=false
  3253. newpos()
  3254. attacking=false
  3255. canattack=true
  3256.  
  3257. end
  3258. end)
  3259.  
  3260.  
  3261.  
  3262.  
  3263.  
  3264. Mouse.KeyDown:connect(function(Key)
  3265. if Key=="p" and attacking==false then attacking=true
  3266. chat:Chat(Char.Head,"URAGH!","Green")
  3267. local Explosion=function()
  3268. local b1=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,0),"Neon",.5)--spike mesh in middle
  3269. local b2=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,0,0),"Neon",.6)--black ball mesh thats big and expands
  3270. local b3=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,0),"Neon",.7)--green ball mesh that coats black ball mesh
  3271. local r1=part(Char,true,false,v3(1,1,1),Torso.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,0,0),"Neon",.6)--ring that rotates around section
  3272. local r2=part(Char,true,false,v3(1,1,1),Torso.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,0,0),"Neon",.6)--ring that rotates around section
  3273. local bb=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,0,0),"Neon",.7)--black ball that envelopes all >:D rhymes
  3274. local gr=part(Char,true,false,v3(1,1,1),Torso.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,1,0),"Neon",.7)--green ring that goes around bb
  3275. local gr2=part(Char,true,false,v3(1,1,1),Torso.CFrame*angles(ran(-10,10),ran(-10,10),ran(-10,10)),c3(0,1,0),"Neon",.7)--green ring that goes around bb
  3276. local sw=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,0),"Neon",.7)--shockwave around whole fing
  3277. local sw2=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,0),"Neon",.7)--another shockwave around whole fing
  3278. local bm1=spmesh(b1,"rbxassetid://9982590",v3(8,8,8))
  3279. local bm2=mesh(b2,"Sphere",v3(40,40,40))
  3280. local bm3=mesh(b3,"Sphere",v3(42,42,42))
  3281. local rm1=spmesh(r1,"rbxassetid://3270017",v3(50,50,30))
  3282. local rm2=spmesh(r2,"rbxassetid://3270017",v3(50,50,30))
  3283. local bbm=mesh(bb,"Sphere",v3(60,60,60))
  3284. local grm1=spmesh(gr,"rbxassetid://3270017",v3(80,80,50))
  3285. local grm2=spmesh(gr2,"rbxassetid://3270017",v3(80,80,50))
  3286. local ss1=spmesh(sw,"rbxassetid://20329976",v3(40,15,40))
  3287. local ss2=spmesh(sw2,"rbxassetid://20329976",v3(48,5,48))
  3288. wait()
  3289. smoothNO(b1)
  3290. smoothNO(b2)
  3291. smoothNO(bb)
  3292. for i=1,400 do r:wait()
  3293. --CFrames
  3294. b1.CFrame=b1.CFrame:lerp(b1.CFrame*CFrame.Angles(rad(3),0,rad(3)),.4)
  3295. r1.CFrame=r1.CFrame:lerp(r1.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.3)
  3296. r2.CFrame=r2.CFrame:lerp(r2.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.3)
  3297. gr.CFrame=gr.CFrame:lerp(gr.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.1)
  3298. gr2.CFrame=gr2.CFrame:lerp(gr2.CFrame*CFrame.Angles(math.rad(ran(1,30)),math.rad(ran(1,30)),math.rad(ran(1,30))),.1)
  3299. sw.CFrame=sw.CFrame:lerp(sw.CFrame*CFrame.Angles(0,math.rad(5),0),.4)
  3300. sw2.CFrame=sw2.CFrame:lerp(sw2.CFrame*CFrame.Angles(0,math.rad(-5),0),.4)
  3301. --Sizing
  3302. bm1.Scale=bm1.Scale:Lerp(bm1.Scale+Vector3.new(1.8,1.8,1.8),.069)--hehe
  3303. bm2.Scale=bm2.Scale:Lerp(bm2.Scale+Vector3.new(6,6,6),.1)
  3304. bm3.Scale=bm3.Scale:Lerp(bm3.Scale+Vector3.new(6,6,6),.1)
  3305. rm1.Scale=rm1.Scale:Lerp(rm1.Scale+Vector3.new(7,7,7),.1)
  3306. rm2.Scale=rm2.Scale:Lerp(rm2.Scale+Vector3.new(7,7,7),.1)
  3307. bbm.Scale=bbm.Scale:Lerp(bbm.Scale+Vector3.new(8,8,8),.1)
  3308. grm1.Scale=grm1.Scale:Lerp(grm1.Scale+Vector3.new(7,7,7),.1)
  3309. grm2.Scale=grm2.Scale:Lerp(grm2.Scale+Vector3.new(7,7,7),.1)
  3310. ss1.Scale=ss1.Scale:Lerp(ss1.Scale+Vector3.new(7,3,7),.1)
  3311. ss2.Scale=ss2.Scale:Lerp(ss2.Scale+Vector3.new(7,2,7),.1)
  3312. --Transparency
  3313. b1.Transparency=.7+i/400
  3314. b2.Transparency=.7+i/400
  3315. b3.Transparency=.7+i/400
  3316. r1.Transparency=.7+i/400
  3317. r2.Transparency=.7+i/400
  3318. bb.Transparency=.7+i/400
  3319. gr.Transparency=.7+i/400
  3320. gr2.Transparency=.7+i/400
  3321. sw.Transparency=.7+i/400
  3322. sw2.Transparency=.7+i/400
  3323.  
  3324. end
  3325. b1:Destroy()
  3326. b2:Destroy()
  3327. b3:Destroy()
  3328. r1:Destroy()
  3329. r2:Destroy()
  3330. bb:Destroy()
  3331. gr:Destroy()
  3332. gr2:Destroy()
  3333. sw:Destroy()
  3334. sw2:Destroy()
  3335. end
  3336. Torso.Anchored=true
  3337. RS.C0 = clerp(RS.C0,RS.C0* angles(rad(-30), rad(0), rad(0)), 1)
  3338. LS.C0 = clerp(LS.C0,LS.C0* angles(rad(-30), rad(0), rad(0)), 1)
  3339. RH.C0 = clerp(RH.C0,RH.C0* angles(rad(-10), rad(0), rad(0)), 1)
  3340. LH.C0 = clerp(LH.C0,LH.C0* angles(rad(-10), rad(0), rad(0)), 1)
  3341. Neck.C0 = clerp(Neck.C0,Neck.C0*angles(rad(-35), rad(0), rad(0)), 1)
  3342. spawn(function()
  3343. Explosion()
  3344. end)
  3345. wait(2)
  3346. Torso.Anchored=false
  3347. newpos()
  3348.  
  3349. attacking=false
  3350. end
  3351. end)
  3352.  
  3353. Mouse.KeyDown:connect(function(Key)
  3354. if Key=="l" then
  3355. local poop=part(Char,true,false,v3(1,1,1),Torso.CFrame,c3(0,1,0),"Neon",.7)
  3356. local cyl=mesh(poop,"Cylinder",v3(1,1,1))
  3357. for i=1,60,.2 do r:wait()
  3358. cyl.Scale=Vector3.new(i*2,i*2,4)
  3359. poop.CFrame=Torso.CFrame*CFrame.new(0,0,-i)*CFrame.Angles(0,rad(90),0)
  3360. end
  3361.  
  3362. end
  3363. end)
  3364.  
  3365. Mouse.KeyDown:connect(function(Key)
  3366. if Key=="m" then
  3367. local poop=part(Char,true,false,v3(1,1,1),Torso.CFrame*cf(ran(3,10),ran(0,10),ran(3,10)),c3(0,1,0),"Neon",.7)
  3368. poop.CFrame=poop.CFrame*CFrame.new(poop.Position-Torso.Position,poop.Position)
  3369. end
  3370. end)
  3371.  
  3372.  
  3373.  
  3374.  
  3375.  
  3376.  
  3377.  
  3378.  
  3379.  
  3380. local animpose = "Idle"
  3381. local lastanimpose = "Idle"
  3382. local sine = 0
  3383. local change = 1
  3384. local val = 0
  3385. local ffing = false
  3386. -------------------------------
  3387. game:GetService("RunService").RenderStepped:connect(function()
  3388. --[[if char.Humanoid.Jump == true then
  3389. jump = true
  3390. else
  3391. jump = false
  3392. end]]
  3393. char.Humanoid.FreeFalling:connect(function(f)
  3394. if f then
  3395. ffing = true
  3396. else
  3397. ffing = false
  3398. end
  3399. end)
  3400. sine = sine + change
  3401. if jumpn == true then
  3402. animpose = "Jumping"
  3403. elseif ffing == true then
  3404. animpose = "Freefalling"
  3405. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  3406. animpose = "Idle"
  3407. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3408. animpose = "Walking"
  3409. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3410. animpose = "Running"
  3411. end
  3412. if animpose ~= lastanimpose then
  3413. sine = 0
  3414. if Debounces.NoIdl == false then
  3415. if animpose == "Idle" then
  3416. for i = 1, 2 do
  3417. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8)), 0.4)
  3418. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.4)
  3419. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3420. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  3421. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  3422. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  3423. end
  3424. elseif animpose == "Walking" then
  3425. for i = 1, 2 do
  3426. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  3427. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  3428. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  3429. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  3430. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  3431. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  3432. end
  3433. elseif animpose == "Running" then
  3434. for i = 1, 2 do
  3435. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(-14),math.rad(8+2*math.cos(sine/14))), 0.2)
  3436. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(14),math.rad(-8-2*math.cos(sine/14))), 0.2)
  3437. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-10),0,0), 0.4)
  3438. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-20),0, math.rad(0)), 0.4)
  3439. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(-7)), 0.4)
  3440. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(7)), 0.4)
  3441. wait()
  3442. end
  3443. end
  3444. else
  3445. end
  3446. end
  3447. lastanimpose = animpose
  3448. if Debounces.NoIdl == false then
  3449. if animpose == "Idle" then
  3450. change = 0.5
  3451. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/10),0)*CFrame.Angles(math.rad(-10),math.rad(-10),math.rad(14+2*math.cos(sine/10))), 0.4)
  3452. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/10),0)*CFrame.Angles(math.rad(-20),math.rad(6),math.rad(-10-2*math.cos(sine/10))), 0.4)
  3453. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/10)),math.rad(20),0), 0.2)
  3454. hed.Weld.C1 = Lerp(hed.Weld.C1, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  3455. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 1-0.16*math.cos(sine/10), 0) * CFrame.Angles(0, math.rad(-20), math.rad(0)), 0.05)
  3456. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0-0.1*math.cos(sine/10), -0.55) * CFrame.Angles(math.rad(-10+1*math.cos(sine/10)), math.rad(10), math.rad(-0-2*math.cos(sine/10))), 0.4)
  3457. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1-0.1*math.cos(sine/10), 0) * CFrame.Angles(0, math.rad(-10), math.rad(0+2*math.cos(sine/10))), 0.4)
  3458. elseif animpose == "Walking" then
  3459. change = 1
  3460. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  3461. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  3462. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  3463. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  3464. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  3465. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  3466. elseif animpose == "Running" then
  3467. change = 1
  3468. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.35,.4)*CFrame.Angles(math.rad(-30),math.rad(14),math.rad(-30+2*math.cos(sine/14))), 0.2)
  3469. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.55,-.4)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(40-2*math.cos(sine/14))), 0.2)
  3470. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(20),math.rad(10),0), 0.4)
  3471. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-40),math.rad(-10), math.rad(0)), 0.2)
  3472. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -1.2) * CFrame.Angles(math.rad(-20), math.rad(10), math.rad(0)), 0.4)
  3473. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), math.rad(10), math.rad(0)), 0.4)
  3474. end
  3475. end
  3476. end)
  3477.  
  3478. hum.MaxHealth = math.huge
  3479. wait(3)
  3480. hum.Health = math.huge
  3481. spawn(function()
  3482. while wait(2)
  3483. do
  3484. GroundWave3()
  3485. end
  3486. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement