Advertisement
vikktrey123

WYD edit test

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