Advertisement
DontAskme

hheuh

Aug 26th, 2017
425
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 179.37 KB | None | 0 0
  1. local Player = game.Players.LocalPlayer
  2. local Character = game.Players.LocalPlayer.Character
  3. local Create = LoadLibrary("RbxUtility").Create
  4. CFuncs = {
  5.  
  6.  
  7.  
  8.  
  9. ["Weld"] = {
  10. Create = function(Parent, Part0, Part1, C0, C1)
  11. local Weld = Create("Weld"){
  12. Parent = Parent,
  13. Part0 = Part0,
  14. Part1 = Part1,
  15. C0 = C0,
  16. C1 = C1,
  17. }
  18. return Weld
  19. end;
  20. };
  21.  
  22. ["Sound"] = {
  23. Create = function(id, par, vol, pit)
  24. coroutine.resume(coroutine.create(function()
  25. local S = Create("Sound"){
  26. Volume = vol,
  27. Pitch = pit or 1,
  28. SoundId = id,
  29. Parent = par or workspace,
  30. }
  31. wait()
  32. S:play()
  33. game:GetService("Debris"):AddItem(S, 6)
  34. end))
  35. end;
  36. };
  37.  
  38. ["ParticleEmitter"] = {
  39. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  40. local fp = Create("ParticleEmitter"){
  41. Parent = Parent,
  42. Color = ColorSequence.new(Color1, Color2),
  43. LightEmission = LightEmission,
  44. Size = Size,
  45. Texture = Texture,
  46. Transparency = Transparency,
  47. ZOffset = ZOffset,
  48. Acceleration = Accel,
  49. Drag = Drag,
  50. LockedToPart = LockedToPart,
  51. VelocityInheritance = VelocityInheritance,
  52. EmissionDirection = EmissionDirection,
  53. Enabled = Enabled,
  54. Lifetime = LifeTime,
  55. Rate = Rate,
  56. Rotation = Rotation,
  57. RotSpeed = RotSpeed,
  58. Speed = Speed,
  59. VelocitySpread = VelocitySpread,
  60. }
  61. return fp
  62. end;
  63. };
  64.  
  65. CreateTemplate = {
  66.  
  67. };
  68. }
  69.  
  70.  
  71.  
  72. New = function(Object, Parent, Name, Data)
  73. local Object = Instance.new(Object)
  74. for Index, Value in pairs(Data or {}) do
  75. Object[Index] = Value
  76. end
  77. Object.Parent = Parent
  78. Object.Name = Name
  79. return Object
  80. end
  81.  
  82.  
  83. CV="Really black"
  84. ArtificialHB = Create("BindableEvent", script){
  85. Parent = script,
  86. Name = "Heartbeat",
  87. }
  88.  
  89. function swait(num)
  90. if num == 0 or num == nil then
  91. ArtificialHB.Event:wait()
  92. else
  93. for i = 0, num do
  94. ArtificialHB.Event:wait()
  95. end
  96. end
  97. end
  98.  
  99. function chatfunc(text)
  100. local chat = coroutine.wrap(function()
  101. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  102. Character:FindFirstChild("TalkingBillBoard"):destroy()
  103. end
  104. local naeeym2 = Instance.new("BillboardGui",Character)
  105. naeeym2.Size = UDim2.new(0,100,0,40)
  106. naeeym2.StudsOffset = Vector3.new(0,3,0)
  107. naeeym2.Adornee = Character.Head
  108. naeeym2.Name = "TalkingBillBoard"
  109. local tecks2 = Instance.new("TextLabel",naeeym2)
  110. tecks2.BackgroundTransparency = 1
  111. tecks2.BorderSizePixel = 0
  112. tecks2.Text = ""
  113. tecks2.Font = "Fantasy"
  114. tecks2.TextSize = 30
  115. tecks2.TextStrokeTransparency = 0
  116. tecks2.TextColor3 = Color3.new(0,0,0)
  117. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  118. tecks2.Size = UDim2.new(1,0,0.5,0)
  119. local tecks3 = Instance.new("TextLabel",naeeym2)
  120. tecks3.BackgroundTransparency = 1
  121. tecks3.BorderSizePixel = 0
  122. tecks3.Text = ""
  123. tecks3.Font = "Fantasy"
  124. tecks3.TextSize = 30
  125. tecks3.TextStrokeTransparency = 0
  126. tecks3.TextColor3 = Color3.new(0,0,0)
  127. tecks3.TextStrokeColor3 = Color3.new(255,255,255)
  128. tecks3.Size = UDim2.new(1,0,0.5,0)
  129. for i = 1,string.len(text),1 do
  130. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=565939471", Character, 6, .8)
  131. tecks2.Text = string.sub(text,1,i)
  132. tecks3.Text = string.sub(text,1,i)
  133. wait(0.01)
  134. end
  135. wait(2)
  136. for i = 1, 50 do
  137. swait()
  138. tecks2.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  139. tecks2.Rotation = tecks2.Rotation - .8
  140. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  141. tecks2.TextTransparency = tecks2.TextTransparency + .04
  142. tecks3.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  143. tecks3.Rotation = tecks2.Rotation + .8
  144. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  145. tecks3.TextTransparency = tecks2.TextTransparency + .04
  146. end
  147. naeeym2:Destroy()
  148. end)
  149. chat()
  150.  
  151. end
  152. function onChatted(msg)
  153. chatfunc(msg)
  154.  
  155. end
  156. Player.Chatted:connect(onChatted)
  157.  
  158. abss = Instance.new("BillboardGui",Character)
  159. abss.Size = UDim2.new(10,0,10,0)
  160. abss.Enabled = false
  161. abss.Name = "ROCKYMOUNT"
  162. imgl = Instance.new("ImageLabel",abss)
  163. imgl.Position = UDim2.new(0,0,0,0)
  164. imgl.Size = UDim2.new(1,0,1,0)
  165. imgl.Image = "rbxassetid://711463989"
  166. imgl.BackgroundTransparency = 1
  167. imgl.ImageColor3 = Color3.new(0,255,255)
  168. img2 = Instance.new("ImageLabel",abss)
  169. img2.Position = UDim2.new(0,0,0,0)
  170. img2.Size = UDim2.new(1,0,1,0)
  171. img2.Image = "rbxassetid://711463989"
  172. img2.BackgroundTransparency = 1
  173. img2.ImageColor3 = Color3.new(0,255,255)
  174.  
  175.  
  176.  
  177.  
  178. local lolf = true
  179. local shake = false
  180. local go2 = false
  181. local up = 0
  182. local grab2 = false
  183. local pushed = false
  184. base = Instance.new("Part",workspace)
  185. base.Name = "Base"
  186. base.Transparency = 1
  187. z42d = Instance.new("Sound",game.Players.LocalPlayer.Character)
  188. z42d.Volume = 100
  189. z42d.Looped = true
  190. z42d.SoundId = "rbxassetid://714819523"
  191. z42d:Play()
  192. local jk = false
  193. local kiout = false
  194. local rl = true
  195. ll = 0
  196. local combodamage = 999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999e+999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
  197. local can = 5
  198. local lolwait = 3
  199. local auracan3 = true
  200. local auracan1 = true
  201. local darius1 = true
  202. local ki = true
  203. local darius = true
  204. local kamecolor = "Really black"
  205. z42 = Instance.new("Sound",game.Players.LocalPlayer.Character)
  206. z42.Volume = 20
  207. z42.Looped = false
  208. z42.SoundId = "rbxassetid://863808186"
  209. local clickon = false
  210. local beamknockback = 0
  211. local beamdamage = 0.001
  212. local hited1 = false
  213. local hited = false
  214. local kamesize = 1
  215. local kamehameha = false
  216. local walksound = "rbxassetid://908473722"
  217. local moving = false
  218. local poon = false
  219.  
  220. local v3 = Vector3.new
  221. divine = Instance.new("Part",game.Players.LocalPlayer.Character)
  222. divine.Size = Vector3.new(0.5,0.5,3)
  223. divine.Position = v3(5,50,5)
  224.  
  225. divine.BrickColor = BrickColor.new("Really red")
  226. divine.Transparency = 1
  227. divinemesh = Instance.new("SpecialMesh",divine)
  228. divinemesh.MeshType = "Sphere"
  229. divinemesh.Scale = v3(1,1,1)
  230.  
  231.  
  232.  
  233. ------------------------------------------------------------------
  234. divine2 = Instance.new("Part",game.Players.LocalPlayer.Character)
  235. divine2.Size = Vector3.new(0.5,0.5,3)
  236. divine2.Position = v3(5,5,5)
  237.  
  238. divine2.BrickColor = BrickColor.new("Really red")
  239. divine2.Transparency = 1
  240. divinemesh = Instance.new("SpecialMesh",divine2)
  241. divinemesh.MeshType = "Sphere"
  242. divinemesh.Scale = v3(1,1,1)
  243.  
  244.  
  245.  
  246. ------------------------------------------------------------------
  247. divine3 = Instance.new("Part",game.Players.LocalPlayer.Character)
  248. divine3.Size = Vector3.new(0.5,0.5,3)
  249. divine3.Position = v3(5,8,5)
  250.  
  251. divine3.BrickColor = BrickColor.new("Really red")
  252. divine3.Transparency = 1
  253. divinemesh = Instance.new("SpecialMesh",divine3)
  254. divinemesh.MeshType = "Sphere"
  255. divinemesh.Scale = v3(1,1,1)
  256.  
  257.  
  258.  
  259. ------------------------------------------------------------------
  260. divine4 = Instance.new("Part",game.Players.LocalPlayer.Character)
  261. divine4.Size = Vector3.new(0.5,0.5,3)
  262. divine4.Position = v3(5,3,5)
  263.  
  264. divine4.BrickColor = BrickColor.new("Really red")
  265. divine4.Transparency = 1
  266. divinemesh = Instance.new("SpecialMesh",divine4)
  267. divinemesh.MeshType = "Sphere"
  268. divinemesh.Scale = v3(1,1,1)
  269.  
  270.  
  271.  
  272. ------------------------------------------------------------------
  273. divine5 = Instance.new("Part",game.Players.LocalPlayer.Character)
  274. divine5.Size = Vector3.new(0.5,0.5,3)
  275. divine5.Position = v3(5,55,5)
  276.  
  277. divine5.BrickColor = BrickColor.new("Really red")
  278. divine5.Transparency = 1
  279. divinemesh = Instance.new("SpecialMesh",divine5)
  280. divinemesh.MeshType = "Sphere"
  281. divinemesh.Scale = v3(1,1,1)
  282.  
  283.  
  284.  
  285. ------------------------------------------------------------------
  286. divine6 = Instance.new("Part",game.Players.LocalPlayer.Character)
  287. divine6.Size = Vector3.new(0.5,0.5,3)
  288. divine6.Position = v3(5,5,5)
  289.  
  290. divine6.BrickColor = BrickColor.new("Really red")
  291. divine6.Transparency = 1
  292. divinemesh = Instance.new("SpecialMesh",divine6)
  293. divinemesh.MeshType = "Sphere"
  294. divinemesh.Scale = v3(1,1,1)
  295.  
  296.  
  297. local new=Instance.new
  298. local rad=math.rad
  299. local cf=CFrame.new
  300. local v3=Vector3.new
  301. local ang=function(x,y,z)
  302. return CFrame.Angles(rad(x),rad(y),rad(z))
  303. end
  304. local player=game:service'Players'.LocalPlayer
  305. local char=player.Character
  306. local cam=workspace.Camera
  307. local mouse=player:GetMouse()
  308. local weld=function(a,b,c0,c1)
  309. m=Instance.new('Motor',a)
  310. m.Part0=a
  311. m.Part1=b
  312. m.C0=c0
  313. m.C1=c1
  314. return m
  315. end
  316.  
  317.  
  318. beamm=Instance.new('Model',workspace)
  319. beamm.Name='beam'
  320.  
  321. laser=false
  322.  
  323. rs=Instance.new('Part',char)
  324. rs.Transparency=1
  325. rs.CanCollide=false
  326. rs.TopSurface,rs.BottomSurface=0,0
  327. rs.FormFactor=3
  328. rs.Size=Vector3.new(.5,.5,.5)
  329.  
  330. ls=rs:Clone()
  331. ls.Parent=char
  332.  
  333.  
  334.  
  335. s1=Instance.new('Sound',char)
  336. s1.Volume=1
  337. s1.Pitch=1
  338. s1.Looped=true
  339.  
  340.  
  341. particles={}
  342.  
  343. local wep=new('Part',char)
  344.  
  345. wep.FormFactor=3
  346. wep.Transparency = 1
  347. wep.CanCollide=false
  348. wep.Size=v3(0.1,0.1,0.1)
  349. wep.TopSurface,wep.BottomSurface=0,0
  350. local wepw=weld(wep,char['Torso'],cf(0,2,0),ang(95,0,0))
  351.  
  352.  
  353. local beam1=wep:Clone()
  354. beam1:ClearAllChildren()
  355. beam1.Material='Neon'
  356. beam1.BrickColor=BrickColor.new(kamecolor)
  357. beam1.Color = Color3.fromRGB(35,0,53)
  358. beam1.Size=Vector3.new(1,1,1)
  359. beam1.Transparency=0
  360. beam1.Anchored=true
  361. local ms=Instance.new('BlockMesh',beam1)
  362. local inner1=beam1:Clone()
  363. inner1.Transparency=1
  364. inner1.Material='SmoothPlastic'
  365. inner1.BrickColor=BrickColor.new(kamecolor)
  366. inner1.Color = Color3.fromRGB(35,0,53)
  367. local ms2=inner1.Mesh
  368.  
  369. local expl1=inner1:Clone()
  370. expl1.Mesh:Destroy()
  371. expl1.Material='Neon'
  372. expl1.BrickColor=BrickColor.new(kamecolor)
  373. expl1.Color = Color3.fromRGB(35,0,53)
  374. expl1.Size=Vector3.new(1,1,1)
  375. expl1.Transparency=0
  376. pl=Instance.new('PointLight',expl1)
  377. pl.Color=expl1.BrickColor.Color
  378. pl.Range=pl.Range*2
  379. pl.Name='light'
  380. local br=pl.Range
  381.  
  382. local exa1=expl1:Clone()
  383. exa1.Size=Vector3.new(1,1,1)
  384. pl2=exa1.light
  385.  
  386. local part=exa1:Clone()
  387. part.Size=Vector3.new(1.5,1.5,1.5)
  388. pl3=part.light
  389. pms=Instance.new('BlockMesh',part)
  390.  
  391. char.Humanoid.Died:connect(function()
  392. laser=false
  393. beam1.Parent=nil
  394. inner1.Parent=nil
  395. expl1.Parent=nil
  396. exa1.Parent=nil
  397. s1:stop()
  398. end)
  399.  
  400.  
  401.  
  402. parti=0
  403. game:service'RunService'.Stepped:connect(function()
  404. parti=parti+1
  405. for i,v in pairs(particles) do
  406. v.CFrame=v.CFrame*CFrame.new(0,0,-.3)
  407. v.Transparency=v.Transparency+.08
  408. if v.Transparency >= 1 then
  409. v:Destroy()
  410. table.remove(particles,i)
  411. else
  412. v.Parent=beamm
  413. end
  414. end
  415.  
  416. a=cam.CoordinateFrame.p
  417. b=mouse.Hit.p
  418. mhitr=Ray.new(a,(b-a).unit*999)
  419. mhit,ps=workspace:FindPartOnRayWithIgnoreList(mhitr,{char,beamm})
  420.  
  421.  
  422. if laser then
  423. beamm.Parent=workspace
  424. beam1.Parent=beamm
  425. inner1.Parent=beamm
  426. expl1.Parent=beamm
  427. exa1.Parent=beamm
  428. s1.Volume=s1.Volume-0.0034
  429.  
  430. ray=Ray.new((wep.CFrame*cf(0,-1.5,0)).p,((wep.CFrame*cf(0,-10,0)).p-(wep.CFrame*cf(0,-1.5,0)).p).unit*999)
  431. hit,pos=workspace:FindPartOnRayWithIgnoreList(ray,{char,beamm})
  432.  
  433. if hit and s1.Volume > .3 and parti/8==math.floor(parti/8) then
  434.  
  435. if hit.Parent:IsA("Model") and hit ~= workspace.Base then
  436. hit.Parent:BreakJoints()
  437.  
  438. wait()
  439. end
  440. if hit.Parent:IsA("Part") and hit ~= workspace.Base then
  441. hit.Anchored = false
  442. hit.Position = hit.Position + Vector3.new(0,1,0)
  443. block = Instance.new("BodyForce",hit)
  444. block.Force = beam1.CFrame.lookVector
  445. s1.Volume=s1.Volume+0.0034
  446.  
  447. hit.Position = hit.Position + Vector3.new(0,1,0)
  448. block = Instance.new("BodyForce",hit)
  449. block.Force = beam1.CFrame.lookVector
  450.  
  451. end
  452. end
  453.  
  454. if hit and hit.Parent==workspace.Terrain or hit==workspace.Terrain and parti/8==math.floor(parti/8) then
  455. e=Instance.new('Explosion',workspace)
  456. e.Position=pos
  457. e.BlastRadius=14
  458. e.BlastPressure=1e4
  459. end
  460. if hit and not hit.Anchored and not (hit:GetMass()>1e4) then
  461. hit.Velocity=hit.Velocity+beam1.CFrame.lookVector*(1*s1.Volume*hit:GetMass())
  462. end
  463.  
  464. if parti==math.floor(parti) then
  465. par=part:Clone()
  466. table.insert(particles,par)
  467. par.Parent=beamm
  468. par.Transparency=1-s1.Volume
  469. par.light.Range=br*s1.Volume
  470. par.CFrame=cf(pos)*ang(math.random(-180,180),math.random(-180,180),math.random(-180,180))*cf(10,10,10)
  471. end
  472.  
  473. mag=((wep.CFrame*cf(0,-1.5,0)).p-pos).magnitude
  474. ms.Scale=v3(s1.Volume,s1.Volume,mag)
  475. ms2.Scale=v3(ms.Scale.x/2,ms.Scale.y/2,mag-(.1/mag))
  476. beam1.CFrame=cf((wep.CFrame*cf(0,-1.5,0)).p,pos)*cf(0,0,-mag/2)*ang(0,0,math.random(0,180))
  477. inner1.CFrame=beam1.CFrame
  478. pl.Range=br*s1.Volume
  479. pl2.Range=br*s1.Volume
  480.  
  481. expl1.Transparency=0
  482. expl1.CFrame=cf(pos)*ang(math.random(0,180),math.random(0,180),math.random(0,180))
  483.  
  484. exa1.CFrame=wep.CFrame*cf(0,-1.5,0)*ang(math.random(0,180),math.random(0,180),math.random(0,180))
  485.  
  486. end
  487. end)
  488.  
  489. local base = true
  490. local ssjr = false
  491. local down2 = false
  492. local ok = 0
  493. local lala = false
  494. local walkon = false
  495. local idle = true
  496. local idle1 = true
  497. local canattack = true
  498. local nohit = 0
  499. local p = game.Players.LocalPlayer
  500. local char = p.Character
  501. local mouse = p:GetMouse()
  502. local larm = char["Left Arm"]
  503. local rarm = char["Right Arm"]
  504. local lleg = char["Left Leg"]
  505. local rleg = char["Right Leg"]
  506. local hed = char.Head
  507. local torso = char.Torso
  508. zwc = Instance.new("Sound",torso)
  509. zwc.Volume = 1
  510. zwc.Looped = false
  511. zwc.SoundId = "rbxassetid://137579113"
  512. local hum = char.Humanoid
  513. hum.Name = "loldar"
  514. local cam = game.Workspace.CurrentCamera
  515. local root = char.HumanoidRootPart
  516. local deb = false
  517. local shot = 0
  518. local walk = true
  519. local debris=game:service"Debris"
  520. local l = game:GetService("Lighting")
  521. local rs = game:GetService("RunService").RenderStepped
  522. local canattack = true
  523. hed.face.Texture = "http://www.roblox.com/asset/?id=1002452110"
  524. ptz = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  525. function lerp(a, b, t) -- Linear interpolation
  526. return a + (b - a)*t
  527. end
  528.  
  529. function slerp(a, b, t) --Spherical interpolation
  530. dot = a:Dot(b)
  531. if dot > 0.99999 or dot < -0.99999 then
  532. return t <= 0.5 and a or b
  533. else
  534. r = math.acos(dot)
  535. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  536. end
  537. end
  538. function matrixInterpolate(a, b, t)
  539. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  540. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  541. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  542. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  543. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  544. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  545. local t = v1:Dot(v2)
  546. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  547. return CFrame.new()
  548. end
  549. return CFrame.new(
  550. v0.x, v0.y, v0.z,
  551. v1.x, v1.y, v1.z,
  552. v2.x, v2.y, v2.z,
  553. v3.x, v3.y, v3.z)
  554. end
  555. ----------------------------------------------------
  556. function genWeld(a,b)
  557. local w = Instance.new("Weld",a)
  558. w.Part0 = a
  559. w.Part1 = b
  560. return w
  561. end
  562. function weld(a, b)
  563. local weld = Instance.new("Weld")
  564. weld.Name = "W"
  565. weld.Part0 = a
  566. weld.Part1 = b
  567. weld.C0 = a.CFrame:inverse() * b.CFrame
  568. weld.Parent = a
  569. return weld;
  570. end
  571. ----------------------------------------------------
  572. function Lerp(c1,c2,al)
  573. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  574. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  575. for i,v in pairs(com1) do
  576. com1[i] = v+(com2[i]-v)*al
  577. end
  578. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  579. end
  580. ----------------------------------------------------
  581. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  582. local wld = Instance.new("Weld", wp1)
  583. wld.Part0 = wp0
  584. wld.Part1 = wp1
  585. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  586. end
  587. hum.MaxHealth = math.huge
  588. wait()
  589. hum.Health = math.huge
  590. ----------------------------------------------------
  591. function weld5(part0, part1, c0, c1)
  592. weeld=Instance.new("Weld", part0)
  593. weeld.Part0=part0
  594. weeld.Part1=part1
  595. weeld.C0=c0
  596. weeld.C1=c1
  597. return weeld
  598. end
  599. ----------------------------------------------------
  600. function HasntTouched(plrname)
  601. local ret = true
  602. for _, v in pairs(Touche) do
  603. if v == plrname then
  604. ret = false
  605. end
  606. end
  607. return ret
  608. end
  609. newWeld(torso, larm, -1.5, 0.5, 0)
  610. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  611. newWeld(torso, rarm, 1.5, 0.5, 0)
  612. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  613. newWeld(torso, hed, 0, 1.5, 0)
  614. newWeld(torso, lleg, -0.5, -1, 0)
  615. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  616. newWeld(torso, rleg, 0.5, -1, 0)
  617. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  618. newWeld(root, torso, 0, -1, 0)
  619. torso.Weld.C1 = CFrame.new(0, -1, 0)
  620. GroundWave1 = function()
  621. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  622.  
  623. local wave = Instance.new("Part", torso)
  624. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  625. wave.Anchored = true
  626. wave.CanCollide = false
  627. wave.Locked = true
  628. wave.Size = Vector3.new(1, 1, 1)
  629. wave.TopSurface = "Smooth"
  630. wave.BottomSurface = "Smooth"
  631. wave.Transparency = 0.35
  632. wave.CFrame = HandCF
  633. wm = Instance.new("SpecialMesh", wave)
  634. wm.MeshId = "rbxassetid://20329976"
  635. coroutine.wrap(function()
  636. for i = 1, 30, 1 do
  637. wm.Scale = Vector3.new(1 + i*1.2, 1 + i*1.2, 1 + i*1.2)
  638. wave.Size = wm.Scale
  639. wave.CFrame = HandCF
  640. wave.Orientation = Vector3.new(0, 180, 0)
  641. wave.Transparency = i/30
  642. wait()
  643. end
  644. wait()
  645. wave:Destroy()
  646. end)()
  647. end
  648. GroundBall1 = function()
  649. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  650.  
  651. local wave = Instance.new("Part", torso)
  652. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  653. wave.Anchored = true
  654. wave.CanCollide = false
  655. wave.Locked = true
  656. wave.Size = Vector3.new(1, 1, 1)
  657. wave.TopSurface = "Smooth"
  658. wave.BottomSurface = "Smooth"
  659. wave.Transparency = 0.35
  660. wave.CFrame = HandCF
  661. wm = Instance.new("SpecialMesh", wave)
  662. wm.MeshId = "rbxassetid://430736398"
  663. coroutine.wrap(function()
  664. for i = 1, 30, 1 do
  665. wm.Scale = Vector3.new(1 + i*1.2, 1 + i*1.2, 1 + i*1.2)
  666. wave.Size = wm.Scale
  667. wave.CFrame = HandCF
  668. wave.Orientation = Vector3.new(0, 180, 0)
  669. wave.Transparency = i/30
  670. wait()
  671. end
  672. wait()
  673. wave:Destroy()
  674. end)()
  675. end
  676. function stance1()
  677. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(15),math.rad(0)), 0.1)--head
  678. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-15), math.rad(0)), 1)--torso
  679. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(12),math.rad(15),math.rad(30)), 0.1)--arm
  680. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(12),math.rad(15),math.rad(-30)), 0.1)--arm
  681. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-5), math.rad(15), math.rad(10)), 0.1)--leg
  682. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-15), math.rad(-40), math.rad(-5)), 0.1)--leg
  683. end
  684. -------------------------------------------------------------
  685. function stance2()
  686. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-50),math.rad(0)), 0.1)--head
  687. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), math.rad(0)), 0.1)--torso
  688. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.3,-0.5)*CFrame.Angles(math.rad(160),math.rad(210),math.rad(0)), 0.1)--rarm
  689. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.2,0)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(0)), 0.1)--larm
  690. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, .2) * CFrame.Angles(math.rad(-5), math.rad(0), math.rad(-20)), 0.1)--lleg
  691. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.2) * CFrame.Angles(math.rad(5), math.rad(0), math.rad(20)), 0.1)--rleg
  692.  
  693. end
  694. ----------------------------------------------------------
  695. z41 = Instance.new("Sound",torso)
  696. z41.Volume = 20
  697. z41.Looped = false
  698. z41.SoundId = "rbxassetid://863807725"
  699. z412 = Instance.new("Sound",torso)
  700. z412.Volume = 20
  701. z412.Looped = false
  702. z412.SoundId = "rbxassetid://895090420"
  703. z4122 = Instance.new("Sound",torso)
  704. z4122.Volume = 20
  705. z4122.Looped = false
  706. z4122.SoundId = "rbxassetid://897147945"
  707. function swing1()
  708. for i = 1, 5 do
  709. wait()
  710. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
  711. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
  712. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1,0.5,-1)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(-70)), 0.4)--arm
  713. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-10)), 0.4)--arm
  714. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-10)), 0.4)--leg
  715. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.4)--leg
  716. end
  717.  
  718. z41:Play()
  719. for i = 1, 5 do
  720. wait()
  721. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
  722. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
  723. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(60)), 0.4)--arm
  724. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)--arm
  725. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-10)), 0.4)--leg
  726. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.4)--leg
  727. end
  728. end
  729. function swing11()
  730. for i = 1, 5 do
  731. wait()
  732. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
  733. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
  734. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1,0.5,-1)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(-70)), 0.4)--arm
  735. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-10)), 0.4)--arm
  736. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-10)), 0.4)--leg
  737. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.4)--leg
  738. end
  739.  
  740. z412:Play()
  741. for i = 1, 5 do
  742. wait()
  743. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
  744. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
  745. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(60)), 0.4)--arm
  746. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)--arm
  747. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-10)), 0.4)--leg
  748. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.4)--leg
  749. end
  750. end
  751. ------------------------------------------------------------------------------------------------
  752. function swing2()
  753. for i = 1, 5 do
  754. wait()
  755. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
  756. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(0)), 0.4)--torso
  757. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-200),math.rad(0),math.rad(30)), 0.4)--arm
  758. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)--arm
  759. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-10)), 0.4)--leg
  760. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.4)--leg
  761. end
  762.  
  763. z41:Play()
  764. for i = 1, 5 do
  765. wait()
  766. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(10),math.rad(-10),math.rad(0)), 0.4)--head
  767. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(10), math.rad(0)), 0.4)--torso
  768. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1,0.3,-.4)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(-50)), 0.4)--arm
  769. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-30)), 0.4)--arm
  770. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-15), math.rad(0), math.rad(-10)), 0.4)--leg
  771. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(0), math.rad(0)), 0.4)--leg
  772. end
  773. end
  774. -----------------------------------------------------------------------------------------------
  775. function swing3()
  776.  
  777. z41:Play()
  778. for i = 1, 7 do
  779. wait()
  780. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
  781. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
  782. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(90)), 0.4)--arm
  783. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-10)), 0.4)--arm
  784. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-5)), 0.4)--leg
  785. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(20)), 0.4)--leg
  786. torso.CFrame = torso.CFrame * CFrame.Angles(0,-.928,0)+ Vector3.new(0,5,0)
  787.  
  788. end
  789.  
  790. end
  791. ------------------------------------------------------------------------------------------------
  792. function firstswing()
  793. for i = 1, 10 do
  794. wait()
  795. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
  796. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
  797. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1,0.5,-1)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(-70)), 0.4)--arm
  798. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-10)), 0.4)--arm
  799. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.4)--leg
  800. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.4)--leg
  801. end
  802.  
  803. for i = 1, 10 do
  804. wait()
  805. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
  806. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
  807. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(40)), 0.4)--arm
  808. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)--arm
  809. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.4)--leg
  810. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(10)), 0.4)--leg
  811. end
  812. end
  813. function flytowards()
  814. for i = 1, 5 do
  815. wait()
  816. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(20),math.rad(0),math.rad(0)), 0.4)--head
  817. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), math.rad(0)), 0.4)--torso
  818. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(10)), 0.4)--arm
  819. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-10)), 0.4)--arm
  820. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.4)--leg
  821. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.4)--leg
  822. end
  823. end
  824. function swings()
  825. for i = 1, 5 do
  826. wait()
  827. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-5),math.rad(0),math.rad(0)), 0.4)--head
  828. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(5), math.rad(0), math.rad(0)), 0.4)--torso
  829. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1,0.5,-1)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-70)), 0.4)--arm
  830. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-10)), 0.4)--arm
  831. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.4)--leg
  832. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.4)--leg
  833. end
  834.  
  835.  
  836. for i = 1, 5 do
  837. wait()
  838. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
  839. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
  840. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(30)), 0.4)--arm
  841. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)--arm
  842. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.4)--leg
  843. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(10)), 0.4)--leg
  844. end
  845. z42:Play()
  846. end
  847. -----------------------------------------------
  848. function divineswinging()
  849. shot1 = true
  850. for i = 1, 4 do
  851. wait()
  852. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.8)--head
  853. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)--torso
  854. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.8,0.5,-1)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-120)), 0.8)--arm
  855. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.8)--arm
  856. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.8)--leg
  857. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(10)), 0.8)--leg
  858. end
  859. z42:Play()
  860. for i = 1, 4 do
  861. wait()
  862. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.8)--head
  863. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)--torso
  864. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(120)), 0.8)--arm
  865. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.8)--arm
  866. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.8)--leg
  867. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(10)), 0.8)--leg
  868. end
  869. z42:Play()
  870. for i = 1, 4 do
  871. wait()
  872. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(10),math.rad(-10),math.rad(0)), 0.4)--head
  873. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(10), math.rad(0)), 0.4)--torso
  874. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1,0.3,-.4)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(-50)), 0.4)--arm
  875. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-30)), 0.4)--arm
  876. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-15), math.rad(0), math.rad(-10)), 0.4)--leg
  877. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(12), math.rad(0), math.rad(0)), 0.4)--leg
  878. end
  879. z42:Play()
  880. for i = 1, 4 do
  881. wait()
  882. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.8)--head
  883. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)--torso
  884. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.8,0.5,-1)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-120)), 0.8)--arm
  885. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.8)--arm
  886. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.8)--leg
  887. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(10)), 0.8)--leg
  888. end
  889. z42:Play()
  890. for i = 1, 4 do
  891. wait()
  892. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.8)--head
  893. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)--torso
  894. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(120)), 0.8)--arm
  895. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.8)--arm
  896. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.8)--leg
  897. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(10)), 0.8)--leg
  898. end
  899. z42:Play()
  900. for i = 1, 4 do
  901. wait()
  902. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.8)--head
  903. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)--torso
  904. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.8,0.5,-1)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-120)), 0.8)--arm
  905. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.8)--arm
  906. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.8)--leg
  907. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(10)), 0.8)--leg
  908. end
  909. z42:Play()
  910. z4122:Play()
  911. for i = 1, 4 do
  912. wait()
  913. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
  914. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
  915. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(30)), 0.4)--arm
  916. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)--arm
  917. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.4)--leg
  918. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(10)), 0.4)--leg
  919. end
  920.  
  921. end
  922. -----------------------------------------------------------------------------------------
  923. function divineend()
  924.  
  925. for i = 1, 7 do
  926. wait()
  927. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
  928. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
  929. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(80)), 0.4)--arm
  930. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-10)), 0.4)--arm
  931. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-5)), 0.4)--leg
  932. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(20)), 0.4)--leg
  933. torso.CFrame = torso.CFrame * CFrame.Angles(0,.88,0)
  934. end
  935. wait(0.5)
  936. for i = 1, 7 do
  937. wait()
  938. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
  939. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
  940. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(80)), 0.4)--arm
  941. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-10)), 0.4)--arm
  942. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-5)), 0.4)--leg
  943. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(20)), 0.4)--leg
  944. torso.CFrame = torso.CFrame * CFrame.Angles(0,.88,0)
  945. end
  946. kiweld7.C0 = CFrame.new(-1.7,-3,0) * CFrame.Angles(rad(180),rad(0),rad(40))
  947. for i = 1, 15 do
  948. wait()
  949.  
  950. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(60),math.rad(0)), 0.4)--head
  951. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-70), math.rad(0)), 0.4)--torso
  952. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(0.8,1.5,-0.3)*CFrame.Angles(math.rad(190),math.rad(40),math.rad(-50)), 0.4)--arm
  953. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-70)), 0.4)--arm
  954. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--leg
  955. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--leg
  956. end
  957. end
  958. ---------------------------------------------------------
  959. local block = Instance.new("Part",torso)
  960. block.Size = Vector3.new(0.1,0.1,0.1)
  961. block.Position = block.Position + Vector3.new(2,2,2)
  962. block.Transparency = 1
  963. local weld = Instance.new("Weld",torso)
  964. weld.Part0 = torso
  965. weld.Part1 = block
  966. weld.C0 = CFrame.new(0,3,0)
  967. local block2 = Instance.new("Part",torso)
  968. block2.Size = Vector3.new(3,2,1)
  969. block2.CanCollide = false
  970. block2.Position = block.Position + Vector3.new(2,2,2)
  971. block2.Transparency = 1
  972. local weld2 = Instance.new("Weld",torso)
  973. weld2.Part0 = torso
  974. weld2.Part1 = block2
  975. weld2.C0 = CFrame.new(0,-1.5,0)
  976. local part2 = Instance.new("ParticleEmitter",block)
  977. part2.Lifetime = NumberRange.new(5)
  978. part2.Speed = NumberRange.new(0)
  979. part2.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
  980. part2.Size = NumberSequence.new(12)
  981. part2.Transparency = NumberSequence.new(1)
  982. part2.LockedToPart = true
  983. part2.Rate = 3
  984. part2.Texture = "http://www.roblox.com/asset/?id=894173257"
  985. part2.ZOffset = -3
  986.  
  987. local part7 = Instance.new("ParticleEmitter",block)
  988. part7.Lifetime = NumberRange.new(5)
  989. part7.Speed = NumberRange.new(0)
  990.  
  991. part7.Size = NumberSequence.new(12)
  992. part7.Transparency = NumberSequence.new(1)
  993. part7.LockedToPart = true
  994. part7.Rate = 3
  995. part7.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
  996. part7.Texture = "http://www.roblox.com/asset/?id=894173257"
  997. part7.ZOffset = -1
  998. local model = Instance.new("Model",torso)
  999. local part3 = Instance.new("ParticleEmitter",block2)
  1000. part3.Lifetime = NumberRange.new(1)
  1001. part3.Speed = NumberRange.new(5)
  1002. part3.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
  1003. part3.Transparency = NumberSequence.new(1)
  1004. part3.Size = NumberSequence.new(0.5)
  1005. part3.LockedToPart = true
  1006. part3.Rate = 10
  1007. part3.Texture = "http://www.roblox.com/asset/?id=549349471"
  1008. part3.ZOffset = -0.5
  1009. part3.SpreadAngle = Vector2.new(50,0)
  1010. aura1 = Instance.new("ParticleEmitter",torso)
  1011. aura1.Transparency = NumberSequence.new(1)
  1012. aura1.Size = NumberSequence.new(5)
  1013. aura1.Speed = NumberRange.new(0)
  1014. aura1.Lifetime = NumberRange.new(5)
  1015. aura1.LockedToPart = true
  1016. aura1.Rate = 3.5
  1017. aura1.Color = ColorSequence.new(Color3.new(0,0,0))
  1018.  
  1019. aura1.ZOffset = 2
  1020. aura1.Lifetime = NumberRange.new(3)
  1021.  
  1022.  
  1023.  
  1024. ypcall(function()
  1025. shirt = Instance.new("Shirt", char)
  1026. shirt.Name = "Shirt"
  1027. pants = Instance.new("Pants", char)
  1028. pants.Name = "Pants"
  1029. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=317842437"
  1030. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=317843230"
  1031. end)
  1032. for i,v in pairs(char:children()) do
  1033. if v:IsA("Accessory") then
  1034. v:Destroy()
  1035. end
  1036. end
  1037. char["Body Colors"].HeadColor = BrickColor.new("Pastel brown")
  1038. char["Body Colors"].TorsoColor = BrickColor.new("Pastel brown")
  1039. char["Body Colors"].LeftArmColor = BrickColor.new("Pastel brown")
  1040. char["Body Colors"].RightArmColor = BrickColor.new("Pastel brown")
  1041. Hair99 = Instance.new("Part")
  1042.  
  1043. Hair99.Parent = p.Character
  1044. Hair99.Name = "Hair"
  1045. Hair99.formFactor = "Symmetric"
  1046. Hair99.Size = Vector3.new(1, 1, 1)
  1047. Hair99.CFrame = p.Character.Head.CFrame
  1048. Hair99:BreakJoints()
  1049. Hair99.CanCollide = false
  1050. Hair99.TopSurface = "Smooth"
  1051. Hair99.BottomSurface = "Smooth"
  1052. Hair99.BrickColor = BrickColor.new("New Yeller")
  1053. Hair99.Transparency = 1
  1054.  
  1055. Weld = Instance.new("Weld")
  1056. Weld.Part0 = p.Character.Head
  1057. Weld.Part1 = Hair99
  1058. Weld.Parent = p.Character.Head
  1059. Weld.C0 = CFrame.new(0, 0.26, 0.06)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  1060.  
  1061. Hair7 = Instance.new("Part")
  1062. Hair7.Parent = p.Character
  1063. Hair7.Name = "Hair"
  1064. Hair7.CanCollide = false
  1065. Hair7.Locked = true
  1066. Hair7.TopSurface = "Smooth"
  1067. Hair7.BottomSurface = "Smooth"
  1068. Hair7.formFactor = "Symmetric"
  1069. Hair7.Material = "Neon"
  1070. Hair7.BrickColor = BrickColor.new("White")
  1071. Hair7.CFrame = p.Character.Torso.CFrame
  1072. Hair7.Size = Vector3.new(1, 1, 1)
  1073. Hair7.Transparency = 0
  1074.  
  1075. Mesh = Instance.new("SpecialMesh")
  1076. Mesh.Parent = Hair99
  1077. Mesh.MeshType = "Sphere"
  1078. Mesh.Offset = Vector3.new(0, 0.1, 0.1)
  1079. Mesh.Scale = Vector3.new(1.2, 1.2, 1.2)
  1080.  
  1081.  
  1082. Weld1 = Instance.new("Weld")
  1083. Weld1.Parent = p.Character.Head
  1084. Weld1.Part0 = p.Character.Head
  1085. Weld1.Part1 = Hair7
  1086. Weld1.C0 = CFrame.new(0, 1, 0)
  1087.  
  1088. Mesh = Instance.new("SpecialMesh")
  1089. Mesh.Offset = Vector3.new(-0.03, 0, 0.5)
  1090. Mesh.Parent = Hair7
  1091. Mesh.Scale = Vector3.new(6, 6, 6)
  1092. Mesh.MeshType = "FileMesh"
  1093. Mesh.MeshId = "http://www.roblox.com/asset/?id=430344159"
  1094. Mesh.TextureId = ""
  1095.  
  1096. mouse.Button1Down:connect(function()
  1097. t = mouse.Target.Parent:FindFirstChild("Torso")
  1098. hu = mouse.Target.Parent:FindFirstChild("Humanoid")
  1099. if mouse.Target == nil then
  1100. clickon = false
  1101. end
  1102. if mouse.Target.Parent:FindFirstChild("Humanoid") ~= nil then
  1103. clickon = true
  1104. poon = true
  1105. zwc1s2 = Instance.new("Sound",mouse.Target)
  1106. zwc1s2.Volume = 5
  1107. zwc1s2.Looped = false
  1108. zwc1s2.SoundId = "rbxassetid://915341277"
  1109. zwc1s2:Play()
  1110.  
  1111.  
  1112.  
  1113. else
  1114. clickon = false
  1115.  
  1116. end
  1117.  
  1118. end)
  1119. aurapart3 = Instance.new("Part",char)
  1120. aurapart3.Size = Vector3.new(0.1,0.1,0.1)
  1121. aurapart3.Position = Vector3.new(0,2,0)
  1122. aurapart3.Transparency = 1
  1123. aurapart3.CanCollide = false
  1124. auraweld3 = Instance.new("Weld",char)
  1125. auraweld3.Part0 = aurapart3
  1126. auraweld3.Part1 = torso
  1127. auraweld3.C0 = CFrame.new(0,-3,0)
  1128. aura3 = Instance.new("ParticleEmitter",aurapart3)
  1129. aura3.Transparency = NumberSequence.new(1)
  1130. aura3.Color = ColorSequence.new(Color3.new(0,0,0))
  1131. aura3.Size = NumberSequence.new(8)
  1132. aura3.Speed = NumberRange.new(0)
  1133. aura3.LockedToPart = true
  1134. aura3.Rate = 5
  1135. aura3.Lifetime = NumberRange.new(5)
  1136. aura3.ZOffset = -5
  1137. z2 = Instance.new("Sound",torso)
  1138. z2.Volume = 3
  1139. z2.Looped = false
  1140. z2.SoundId = "rbxassetid://908489666"
  1141. z2d = Instance.new("Sound",torso)
  1142. z2d.Volume = 20
  1143. z2d.Looped = false
  1144. z2d.SoundId = "rbxassetid://663610350"
  1145. z4r = Instance.new("Sound",torso)
  1146. z4r.Volume = 5
  1147. z4r.Looped = false
  1148. z4r.SoundId = "rbxassetid://908474188"
  1149.  
  1150. mouse.KeyDown:connect(function(Key)
  1151. if Key == "r" then
  1152. if canattack == true then
  1153.  
  1154.  
  1155. kamehamehaon = true
  1156.  
  1157. idle = false
  1158.  
  1159. idle1 = false
  1160. canattack = false
  1161. hum.WalkSpeed = 0
  1162.  
  1163.  
  1164.  
  1165. for i = 1,25 do
  1166. wait()
  1167.  
  1168. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(85),math.rad(0)), 0.1)--head
  1169. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-85), math.rad(0)), 0.1)--torso
  1170. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,0)*CFrame.Angles(math.rad(30),math.rad(-40),math.rad(-10)), 0.1)--rarm
  1171. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1,0.2,-0.2)*CFrame.Angles(math.rad(30),math.rad(40),math.rad(40)), 0.1)--larm
  1172. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.1)--lleg
  1173. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.1)--rleg
  1174. end
  1175.  
  1176. if ssjr == true then
  1177. chatfunc("Kaaaaaaa")
  1178. z2d:Play()
  1179. wait(3)
  1180. chatfunc("Meeeeeeee")
  1181. else
  1182. z2:Play()
  1183. chatfunc("")
  1184. end
  1185. partaura.Size = NumberSequence.new(0.1)
  1186.  
  1187. partaura.Transparency = NumberSequence.new(0)
  1188. partaura1.Transparency = NumberSequence.new(0)
  1189. kamehameha = true
  1190. if ssjr == true then
  1191.  
  1192. wait(2.5)
  1193. chatfunc("Haaaaaa")
  1194. wait(3.5)
  1195. chatfunc("Meeeeeee")
  1196. wait(2)
  1197. chatfunc("HA")
  1198. wait(0.5)
  1199. else
  1200.  
  1201. wait(2)
  1202. chatfunc("")
  1203. wait(0)
  1204. end
  1205. if kamehamehaon == true then
  1206. kamehamehaon = false
  1207. hited = true
  1208. wait(0.1)
  1209. point = true
  1210. kamehamehaon = false
  1211. kamehameha = false
  1212.  
  1213.  
  1214.  
  1215. partaura.Transparency = NumberSequence.new(1)
  1216. partaura1.Transparency = NumberSequence.new(1)
  1217. if ssjr == false then
  1218. z2:Stop()
  1219. z4r:Play()
  1220. chatfunc("HAAAAAAAAAA")
  1221. end
  1222.  
  1223.  
  1224. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 1)--head
  1225. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-5), math.rad(0), math.rad(0)), 1)--torso
  1226. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1,0.5,0)*CFrame.Angles(math.rad(95),math.rad(-10),math.rad(-20)), 1)--rarm
  1227. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1,0.5,-0.2)*CFrame.Angles(math.rad(75),math.rad(170),math.rad(-20)), 1)--larm
  1228. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(5), math.rad(0), math.rad(-10)), 1)--lleg
  1229. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(5), math.rad(0), math.rad(10)), 1)--rleg
  1230.  
  1231.  
  1232.  
  1233.  
  1234.  
  1235. laser = true
  1236. s1.Volume=1
  1237. s1:play()
  1238. wait(5.4)
  1239. point = false
  1240. laser = false
  1241. beam1.Size = Vector3.new(1,1,1)
  1242. beam1.Parent=nil
  1243. inner1.Parent=nil
  1244. expl1.Parent=nil
  1245. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  1246. Character:FindFirstChild("TalkingBillBoard"):destroy()
  1247. end
  1248. hited1 = false
  1249. exa1.Parent=nil
  1250. s1:stop()
  1251.  
  1252. idle = true
  1253. canattack = true
  1254. idle1 = true
  1255. hum.WalkSpeed = 16
  1256.  
  1257. end
  1258. end
  1259. end
  1260. end)
  1261. partt = Instance.new("Part",char)
  1262. partt.Position = Vector3.new(999,999,999)
  1263. partt.Transparency = 1
  1264. partt.CanCollide = false
  1265. partt.Size = Vector3.new(0.1,0.1,0.1)
  1266. partweld = Instance.new("Weld",partt)
  1267. partweld.Part0 = torso
  1268. partweld.Part1 = partt
  1269. partweld.C0 = CFrame.new(0.3,-.5,-1.5)
  1270. partaura = Instance.new("ParticleEmitter",partt)
  1271. partaura.Size = NumberSequence.new(2)
  1272. partaura.LockedToPart = true
  1273.  
  1274. partaura.Transparency = NumberSequence.new(1)
  1275. partaura.Texture = "rbxassetid://547574922"
  1276. partaura.Speed = NumberRange.new(0)
  1277. partaura.Color = ColorSequence.new(Color3.fromRGB(35,0,53))
  1278. partaura.Rate = 2
  1279. partaura.ZOffset = 0
  1280. partaura1 = Instance.new("ParticleEmitter",partt)
  1281. partaura1.Size = NumberSequence.new(5)
  1282. partaura1.LockedToPart = true
  1283.  
  1284. partaura1.Transparency = NumberSequence.new(1)
  1285. partaura1.Texture = "http://www.roblox.com/asset/?id=243660364"
  1286. partaura1.Color = ColorSequence.new(Color3.fromRGB(35,0,53))
  1287. partaura1.Speed = NumberRange.new(0)
  1288. partaura1.Rate = 3
  1289. partaura1.ZOffset = -1
  1290.  
  1291. partaura1.RotSpeed = NumberRange.new(-10,10)
  1292. partaura1.SpreadAngle = Vector2.new(360,360)
  1293. partaura1.Rotation = NumberRange.new(0,360)
  1294. aj = 0
  1295.  
  1296. zh = Instance.new("Sound",torso)
  1297. zh.Volume = 1
  1298. zh.Looped = true
  1299. zh.SoundId = "rbxassetid://491515754"
  1300. mouse.KeyDown:connect(function(key)
  1301. if key == "b" then
  1302. if ssjr == false then
  1303. if canattack == true then
  1304. chatfunc("Hmm, You Seem To Rival The Gods Power...")
  1305. wait(4)
  1306. chatfunc("But You're Not Strong Enough To Defeat me")
  1307. wait(4)
  1308. chatfunc("Time For You To Taste A Power OF a True God!")
  1309. for i = 1,10 do
  1310. wait()
  1311. z42d.Volume = z42d.Volume - 5
  1312. end
  1313. idle = false
  1314. kiout = false
  1315. kiblade.Transparency = 1
  1316. trail.Enabled = false
  1317. base = false
  1318. hum.WalkSpeed = 0
  1319. lolwait = 6
  1320. local part9 = Instance.new("ParticleEmitter",block)
  1321. part9.Lifetime = NumberRange.new(100)
  1322. part9.Speed = NumberRange.new(50)
  1323. part9.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
  1324. part9.Size = NumberSequence.new(15)
  1325. part9.Transparency = NumberSequence.new(1)
  1326. part9.LockedToPart = true
  1327. part9.Rate = 300
  1328. part9.Texture = "http://www.roblox.com/asset/?id=894173257"
  1329. part9.ZOffset = -3
  1330.  
  1331. idle1 = false
  1332. Colors = {"Really black", "Really black"}
  1333. canattack = false
  1334. wait(0.1)
  1335.  
  1336. for i = 1, 20 do
  1337. wait()
  1338. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.10)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(0)), 0.4)--head
  1339. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)--torso
  1340. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.2,-.70)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(10)), 0.2)--rarm
  1341. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.2,-.70)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(-10)), 0.2)--larm
  1342. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.6, -.40) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(-20)), 0.4)--lleg
  1343. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.6, -.40) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(10)), 0.4)--rleg
  1344. end
  1345. shake = true
  1346. partt2 = Instance.new("Part",char)
  1347. partt2.Position = torso.Position - Vector3.new(0,2,0)
  1348. partt2.Transparency = 1
  1349. partt2.CanCollide = true
  1350. partt2.Size = Vector3.new(15,0.1,15)
  1351. partaura1 = Instance.new("ParticleEmitter",partt2)
  1352. partaura1.Size = NumberSequence.new(0.8)
  1353. partaura1.LockedToPart = true
  1354. partaura1.Lifetime = NumberRange.new(3)
  1355. partaura1.Transparency = NumberSequence.new(0)
  1356. partaura1.Texture = "http://www.roblox.com/asset/?id=570874272"
  1357.  
  1358. partaura1.Speed = NumberRange.new(5)
  1359. partaura1.Rate = 2
  1360.  
  1361. aura3.Transparency = NumberSequence.new(0)
  1362.  
  1363. z1 = Instance.new("Sound",torso)
  1364. z1.Volume = 100
  1365. z1.Looped = false
  1366. z1.SoundId = "rbxassetid://927472099"
  1367. z1:Play()
  1368. game.Lighting.TimeOfDay = 0
  1369. smoke.Enabled = true
  1370. light.Enabled = true
  1371. GroundWave1()
  1372. wait(0.3)
  1373.  
  1374. wait(0.3)
  1375. GroundWave1()
  1376. wait(0.3)
  1377.  
  1378. wait(0.3)
  1379. GroundWave1()
  1380. wait(0.3)
  1381.  
  1382. wait(0.3)
  1383. GroundWave1()
  1384. wait(0.3)
  1385.  
  1386. wait(0.3)
  1387. GroundWave1()
  1388. wait(0.3)
  1389.  
  1390. wait(0.3)
  1391. GroundWave1()
  1392. wait(0.3)
  1393.  
  1394. wait(0.3)
  1395. GroundWave1()
  1396. wait(0.3)
  1397.  
  1398. wait(0.3)
  1399. GroundWave1()
  1400. wait(0.3)
  1401. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  1402. Character:FindFirstChild("TalkingBillBoard"):destroy()
  1403. end
  1404. wait(0.3)
  1405. GroundWave1()
  1406. wait(0.3)
  1407.  
  1408. wait(0.3)
  1409. GroundWave1()
  1410. wait(0.3)
  1411.  
  1412. wait(0.3)
  1413. GroundWave1()
  1414. wait(0.3)
  1415.  
  1416. wait(0.3)
  1417. GroundWave1()
  1418. wait(0.3)
  1419.  
  1420. wait(0.3)
  1421. GroundWave1()
  1422. wait(0.3)
  1423.  
  1424. wait(0.3)
  1425. GroundWave1()
  1426. wait(0.3)
  1427.  
  1428. wait(0.3)
  1429. GroundWave1()
  1430. wait(0.3)
  1431.  
  1432. wait(0.3)
  1433. GroundWave1()
  1434. wait(0.3)
  1435.  
  1436. wait(0.3)
  1437. GroundWave1()
  1438. wait(0.3)
  1439.  
  1440. wait(0.3)
  1441. GroundWave1()
  1442. wait(0.3)
  1443.  
  1444. wait(0.3)
  1445. GroundWave1()
  1446. wait(0.3)
  1447.  
  1448. wait(0.3)
  1449. GroundWave1()
  1450. wait(0.3)
  1451.  
  1452. wait(0.3)
  1453. GroundWave1()
  1454. wait(0.3)
  1455.  
  1456. wait(0.3)
  1457. GroundWave1()
  1458. wait(0.3)
  1459.  
  1460. wait(0.3)
  1461. GroundWave1()
  1462. wait(0.3)
  1463.  
  1464. wait(0.3)
  1465. GroundWave1()
  1466. wait(0.3)
  1467.  
  1468. wait(0.3)
  1469. GroundWave1()
  1470. wait(0.3)
  1471.  
  1472. wait(0.3)
  1473. GroundWave1()
  1474. wait(0.3)
  1475.  
  1476. wait(0.3)
  1477. GroundWave1()
  1478. wait(0.3)
  1479.  
  1480. wait(0.3)
  1481. GroundWave1()
  1482. wait(0.3)
  1483.  
  1484. wait(0.3)
  1485. GroundWave1()
  1486. wait(0.3)
  1487.  
  1488. wait(0.3)
  1489. GroundWave1()
  1490. shake = false
  1491. hed.face.Texture = "http://www.roblox.com/asset/?id=1002452110"
  1492. hum.CameraOffset = Vector3.new(0,0,0)
  1493. part9.Transparency = NumberSequence.new(0.4)
  1494. aura3.Transparency = NumberSequence.new(1)
  1495.  
  1496. aura1.Transparency = NumberSequence.new(1)
  1497. Mesh.MeshId = "rbxassetid://560193297"
  1498. Mesh.Scale = Vector3.new(6.25, 6.25, 6.25)
  1499. Mesh.Offset = Vector3.new(0.03, -2.4, 1.63)
  1500. Hair7.BrickColor = BrickColor.new("Really black")
  1501.  
  1502. for i = 1, 5 do
  1503. wait()
  1504. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.3,.2)*CFrame.Angles(math.rad(50),math.rad(0),math.rad(0)), 0.8)--head
  1505. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.8)--torso
  1506. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.5,0)*CFrame.Angles(math.rad(-120),math.rad(0),math.rad(60)), 0.8)--arm
  1507. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.5,0)*CFrame.Angles(math.rad(-120),math.rad(0),math.rad(-60)), 0.8)--arm
  1508. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-10)), 0.8)--leg
  1509. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(10)), 0.8)--leg
  1510. end
  1511. wait(3)
  1512. part9:Destroy()
  1513. smoke:Destroy()
  1514. zh:Play()
  1515. Colors = {"Really red", "Really red"}
  1516. GroundWave1()
  1517. wait(0.3)
  1518.  
  1519.  
  1520. GroundWave1()
  1521. wait(0.3)
  1522.  
  1523. GroundWave1()
  1524. wait(0.3)
  1525.  
  1526. GroundWave1()
  1527. wait(0.3)
  1528. GroundWave1()
  1529. part2.Transparency = NumberSequence.new(0)
  1530. part3.Transparency = NumberSequence.new(0)
  1531. part7.Transparency = NumberSequence.new(0)
  1532. hed.Anchored = false
  1533.  
  1534. ssjr = true
  1535. beam1.Color = Color3.fromRGB(203,16,97)
  1536. inner1.Color = Color3.fromRGB(203,16,97)
  1537. expl1.Color = Color3.fromRGB(203,16,97)
  1538. exa1.Color = Color3.fromRGB(203,16,97)
  1539. partaura.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
  1540. partaura1.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
  1541. wait(1)
  1542. for i = 1,20 do
  1543. wait()
  1544. z1.Volume = z1.Volume - 0.5
  1545. end
  1546. for i = 1,50 do
  1547. wait()
  1548. z42d.Volume = z42d.Volume + 1
  1549. end
  1550. idle = true
  1551. idle1 = true
  1552. canattack = true
  1553. chatfunc("Do You Sense My Ki?")
  1554. wait(4)
  1555. chatfunc("Heh, I Know You Can't")
  1556. wait(4)
  1557. chatfunc("My Power Rivals The Omni King.")
  1558. wait(3)
  1559. chatfunc("Yes, And If I Were To Name This Form Like A Human")
  1560. wait(3)
  1561. chatfunc("It's Super Saiyan Rage")
  1562. wait(3)
  1563. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  1564. Character:FindFirstChild("TalkingBillBoard"):destroy()
  1565. end
  1566. hum.WalkSpeed = 16
  1567.  
  1568. end
  1569. end
  1570. end
  1571. end)
  1572. local hit1 = true
  1573. local hit2 = false
  1574. local hit3 = false
  1575. local hit4 = false
  1576. zw = Instance.new("Sound",torso)
  1577. zw.Volume = 1
  1578. zw.Looped = false
  1579. zw.SoundId = "rbxassetid://896243541"
  1580.  
  1581. function leftkick()
  1582. for i = 1, 5 do
  1583. wait()
  1584. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-60),math.rad(0)), 0.8)--head
  1585. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(2), math.rad(60), math.rad(0)), 0.8)--torso
  1586. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.8)--rarm
  1587. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-10)), 0.8)--larm
  1588. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.8)--lleg
  1589. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(100), math.rad(0), math.rad(40)), 0.8)--rleg
  1590. end
  1591. zw:Play()
  1592. end
  1593. function rightkick()
  1594. for i = 1, 5 do
  1595. wait()
  1596. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(60),math.rad(0)), 0.8)--head
  1597. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(5), math.rad(-60), math.rad(0)), 0.8)--torso
  1598. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(10)), 0.8)--rarm
  1599. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-30)), 0.8)--larm
  1600. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(100), math.rad(0), math.rad(-40)), 0.8)--lleg
  1601. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.8)--rleg
  1602. end
  1603. zw:Play()
  1604. end
  1605. function leftpunch()
  1606. for i = 1, can do
  1607. wait()
  1608. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-50),math.rad(0)), 0.8)--head
  1609. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0),math.rad(50),math.rad(0)), 0.8)--torso
  1610. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.8)--rarm
  1611. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-10)), 0.8)--larm
  1612. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-10)), 0.8)--lleg
  1613. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(5)), 0.8)--rleg
  1614. end
  1615. zw:Play()
  1616. end
  1617. function rightpunch()
  1618. for i = 1, can do
  1619. wait()
  1620. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(70),math.rad(0)), 0.8)--head
  1621. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0),math.rad(-80),math.rad(0)), 0.8)--torso
  1622. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(10)), 0.8)--rarm
  1623. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.8)--larm
  1624. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-10)), 0.8)--lleg
  1625. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(5)), 0.8)--rleg
  1626. end
  1627. zw:Play()
  1628. end
  1629. mouse.KeyDown:connect(function(key)
  1630. if key == "e" then
  1631. if hit1 == true and canattack == true and kiout == false then
  1632. canattack = false
  1633. nohit = 0
  1634.  
  1635. hit1 = false
  1636. hit2 = true
  1637. hit3 = false
  1638. hit4 = false
  1639. hand1 = Instance.new("Part",rarm)
  1640. hand1.Size = Vector3.new(1.5,1.5,1.5)
  1641. hand1.CanCollide = false
  1642. hand1.Transparency = 1
  1643. hand1.Position = Vector3.new(999,999,999)
  1644. hand1weld = Instance.new("Weld",hand1)
  1645. hand1weld.Part0 = rarm
  1646. hand1weld.Part1 = hand1
  1647. hand1weld.C0 = CFrame.new(0,-1.2,0)
  1648. ----------------------------------------------------------------
  1649.  
  1650. function touch1(hit)
  1651. if not hit.Parent:findFirstChild("Humanoid") then return end
  1652. if hit.Parent:findFirstChild("Humanoid") ~= nil then
  1653. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - combodamage
  1654.  
  1655. zwc:Play()
  1656. end
  1657. end
  1658. hand1.Touched:connect(touch1)
  1659. rightpunch()
  1660.  
  1661. hand1:Destroy()
  1662. canattack = true
  1663. end
  1664.  
  1665.  
  1666.  
  1667.  
  1668. if hit1 == true and canattack == true and kiout == true then
  1669. nohit = 0
  1670. canattack = false
  1671. hit1 = false
  1672. kiblade5 = Instance.new("Part",char)
  1673. kiblade5.Name = "Blade"
  1674. kiblade5.Size = v3(1,5,1)
  1675. kiblade5.Transparency = 1
  1676. kiblade5.Color = Color3.fromRGB(170,0,127)
  1677. kiblade5.Position = v3(999,999,999)
  1678. kiblade5.CanCollide = false
  1679.  
  1680.  
  1681. kiweld5 = Instance.new("Weld",kiblade5)
  1682. kiweld5.Part0 = rarm
  1683. kiweld5.Part1 = kiblade5
  1684. kiweld5.C0 = CFrame.new(0,-2.1,0) * CFrame.Angles(rad(180),rad(0),rad(0))
  1685. hit2 = true
  1686. hit3 = false
  1687. hit4 = false
  1688. function touch1(hit)
  1689. if not hit.Parent:findFirstChild("Humanoid") then return end
  1690. if hit.Parent:findFirstChild("Humanoid") ~= nil then
  1691. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - combodamage / 2
  1692.  
  1693. z42:Play()
  1694. end
  1695. end
  1696. kiblade5.Touched:connect(touch1)
  1697. hum.WalkSpeed = 0
  1698. swing1()
  1699. hum.WalkSpeed = 16
  1700.  
  1701. canattack = true
  1702. kiblade5:Destroy()
  1703. end
  1704. end
  1705.  
  1706.  
  1707.  
  1708.  
  1709.  
  1710.  
  1711. end)
  1712. mouse.KeyDown:connect(function(key)
  1713. if key == "e" then
  1714. if hit2 == true and canattack == true and kiout == false then
  1715. canattack = false
  1716. nohit = 0
  1717.  
  1718. hit1 = false
  1719. hit2 = false
  1720. hit3 = true
  1721. hit4 = false
  1722. hand2 = Instance.new("Part",rarm)
  1723. hand2.Size = Vector3.new(1.5,1.5,1.5)
  1724. hand1.CanCollide = false
  1725. hand2.Transparency = 1
  1726. hand2.Position = Vector3.new(999,999,999)
  1727. hand2weld = Instance.new("Weld",hand2)
  1728. hand2weld.Part0 = larm
  1729. hand2weld.Part1 = hand2
  1730. hand2weld.C0 = CFrame.new(0,-1.2,0)
  1731. ----------------------------------------------------------------
  1732.  
  1733. function touch1(hit)
  1734. if not hit.Parent:findFirstChild("Humanoid") then return end
  1735. if hit.Parent:findFirstChild("Humanoid") ~= nil then
  1736. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - combodamage
  1737.  
  1738. zwc:Play()
  1739. end
  1740. end
  1741. hand2.Touched:connect(touch1)
  1742. leftpunch()
  1743.  
  1744. canattack = true
  1745. hand2:Destroy()
  1746.  
  1747. end
  1748.  
  1749. if hit2 == true and canattack == true and kiout == true then
  1750. canattack = false
  1751. nohit = 0
  1752. kiblade5 = Instance.new("Part",char)
  1753. kiblade5.Name = "Blade"
  1754. kiblade5.Size = v3(1,5,1)
  1755. kiblade5.Transparency = 1
  1756. kiblade5.Color = Color3.fromRGB(170,0,127)
  1757. kiblade5.Position = v3(999,999,999)
  1758. kiblade5.CanCollide = false
  1759.  
  1760.  
  1761. kiweld5 = Instance.new("Weld",kiblade5)
  1762. kiweld5.Part0 = rarm
  1763. kiweld5.Part1 = kiblade5
  1764. kiweld5.C0 = CFrame.new(0,-2.1,0) * CFrame.Angles(rad(180),rad(0),rad(0))
  1765. hit1 = false
  1766. hit2 = false
  1767. hit3 = true
  1768. hit4 = false
  1769. function touch1(hit)
  1770. if not hit.Parent:findFirstChild("Humanoid") then return end
  1771. if hit.Parent:findFirstChild("Humanoid") ~= nil then
  1772. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - combodamage / 2
  1773.  
  1774. z42:Play()
  1775. end
  1776. end
  1777. kiblade5.Touched:connect(touch1)
  1778. hum.WalkSpeed = 0
  1779. swing2()
  1780. hum.WalkSpeed = 16
  1781.  
  1782. canattack = true
  1783. kiblade5:Destroy()
  1784. end
  1785.  
  1786. end
  1787. end)
  1788. mouse.KeyDown:connect(function(key)
  1789. if key == "e" then
  1790. if hit3 == true and canattack == true and kiout == false then
  1791. canattack = false
  1792. nohit = 0
  1793.  
  1794. hit1 = true
  1795. hit2 = false
  1796. hit3 = false
  1797. hit4 = false
  1798. hand3 = Instance.new("Part",lleg)
  1799. hand3.Size = Vector3.new(1.5,1.5,1.5)
  1800. hand3.CanCollide = false
  1801. hand3.Transparency = 1
  1802. hand3.Position = Vector3.new(999,999,999)
  1803. hand3weld = Instance.new("Weld",hand3)
  1804. hand3weld.Part0 = lleg
  1805. hand3weld.Part1 = hand3
  1806. hand3weld.C0 = CFrame.new(0,-1.2,0)
  1807. ----------------------------------------------------------------
  1808.  
  1809. function touch1(hit)
  1810. if not hit.Parent:findFirstChild("Humanoid") then return end
  1811. if hit.Parent:findFirstChild("Humanoid") ~= nil then
  1812. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - combodamage
  1813.  
  1814. zwc:Play()
  1815. end
  1816. end
  1817. hand3.Touched:connect(touch1)
  1818. rightkick()
  1819.  
  1820. canattack = true
  1821. hand3:Destroy()
  1822.  
  1823. end
  1824.  
  1825. if hit3 == true and canattack == true and kiout == true then
  1826. if clickon == true then
  1827. jk = true
  1828. clickon = false
  1829. end
  1830. canattack = false
  1831. kiblade5 = Instance.new("Part",char)
  1832. kiblade5.Name = "Blade"
  1833. kiblade5.Size = v3(1,5,1)
  1834. kiblade5.Transparency = 1
  1835. kiblade5.Color = Color3.fromRGB(170,0,127)
  1836. kiblade5.Position = v3(999,999,999)
  1837. kiblade5.CanCollide = false
  1838.  
  1839.  
  1840. kiweld5 = Instance.new("Weld",kiblade5)
  1841. kiweld5.Part0 = rarm
  1842. kiweld5.Part1 = kiblade5
  1843. kiweld5.C0 = CFrame.new(0,-2.1,0) * CFrame.Angles(rad(180),rad(0),rad(0))
  1844. nohit = 0
  1845. hit1 = true
  1846. hit2 = false
  1847. hit3 = false
  1848. hit4 = false
  1849. function touch1(hit)
  1850. if not hit.Parent:findFirstChild("Humanoid") then return end
  1851. if hit.Parent:findFirstChild("Humanoid") ~= nil then
  1852. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - combodamage / 2
  1853. hit.Parent:findFirstChild("Torso").CFrame = hit.Parent:findFirstChild("Torso").CFrame + v3(0,5,0)
  1854.  
  1855. z42:Play()
  1856. end
  1857. end
  1858. kiblade5.Touched:connect(touch1)
  1859. hum.WalkSpeed = 0
  1860. swing3()
  1861. hum.WalkSpeed = 16
  1862.  
  1863. canattack = true
  1864.  
  1865. kiblade5:Destroy()
  1866. wait(0.4)
  1867. if jk == true then
  1868. jk = false
  1869. clickon = true
  1870. end
  1871. end
  1872.  
  1873.  
  1874.  
  1875.  
  1876.  
  1877.  
  1878. end
  1879. end)
  1880.  
  1881.  
  1882.  
  1883.  
  1884.  
  1885.  
  1886.  
  1887.  
  1888.  
  1889.  
  1890.  
  1891.  
  1892.  
  1893.  
  1894.  
  1895.  
  1896.  
  1897.  
  1898.  
  1899.  
  1900.  
  1901. kiblade = Instance.new("Part",char)
  1902. kiblade.Name = "Blade"
  1903. kiblade.Size = v3(1,5,1)
  1904. kiblade.Transparency = 1
  1905. kiblade.Color = Color3.fromRGB(170,0,127)
  1906. kiblade.Position = v3(999,999,999)
  1907. kiblade.CanCollide = false
  1908. kiblademesh = Instance.new("SpecialMesh",kiblade)
  1909. kiblademesh.MeshType = "FileMesh"
  1910. kiblademesh.MeshId = "rbxassetid://898849476"
  1911. kiblademesh.Scale = v3(0.01,0.008,0.01)
  1912. kiweld7 = Instance.new("Weld",kiblade)
  1913. kiweld7.Part0 = rarm
  1914. kiweld7.Part1 = kiblade
  1915. kiweld7.C0 = CFrame.new(0,-2.1,0) * CFrame.Angles(rad(180),rad(0),rad(0))
  1916. kiblade1 = Instance.new("Part",char)
  1917. kiblade1.Name = "Blade"
  1918. kiblade1.Transparency = 1
  1919. kiblade1.Size = v3(0.1,0.1,0.1)
  1920. kiblade1.Position = v3(999,999,999)
  1921. kiblade1.CanCollide = false
  1922. kiblademesh = Instance.new("SpecialMesh",kiblade1)
  1923. kiblademesh.MeshType = "Sphere"
  1924. kiblademesh.Scale = v3(1,1,1)
  1925. kiweld = Instance.new("Weld",kiblade1)
  1926. kiweld.Part0 = rarm
  1927. kiweld.Part1 = kiblade1
  1928. kiweld.C0 = CFrame.new(0,-1,0)
  1929. kiblade2 = Instance.new("Part",char)
  1930. kiblade2.Name = "Blade"
  1931. kiblade2.Size = v3(0.1,0.1,0.1)
  1932. kiblade2.Transparency = 1
  1933. kiblade2.Position = v3(999,999,999)
  1934. kiblade2.CanCollide = false
  1935. kiblademesh = Instance.new("SpecialMesh",kiblade2)
  1936. kiblademesh.MeshType = "Sphere"
  1937. kiblademesh.Scale = v3(1,1,1)
  1938. kiweld = Instance.new("Weld",kiblade2)
  1939. kiweld.Part0 = rarm
  1940. kiweld.Part1 = kiblade2
  1941. kiweld.C0 = CFrame.new(0,-4.5,0)
  1942. torso = game.Players.LocalPlayer.Character.Torso
  1943. head = game.Players.LocalPlayer.Character.Head
  1944. torso1 = Instance.new("Attachment",kiblade1)
  1945. head1 = Instance.new("Attachment",kiblade2)
  1946. trail = Instance.new("Trail",torso)
  1947. trail.Color = ColorSequence.new(Color3.fromRGB(170,0,127))
  1948. trail.Attachment0 = torso1
  1949. trail.Attachment1 = head1
  1950. trail.Lifetime = 0.5
  1951. trail.Enabled = false
  1952. light = Instance.new("PointLight",torso)
  1953. light.Enabled = false
  1954. light.Color = Color3.fromRGB(120,6,105)
  1955. light.Brightness = 999
  1956. light.Range = 50
  1957. smoke = Instance.new("Smoke",torso)
  1958. smoke.RiseVelocity = 5
  1959. smoke.Color = Color3.fromRGB(0,0,0)
  1960. smoke.Size = 20
  1961. smoke.Opacity = 0.5
  1962. smoke.Enabled = false
  1963.  
  1964. mouse.KeyDown:connect(function(key)
  1965. if key == "n" then
  1966. if kiout == false then
  1967. if canattack == true then
  1968. canattack = false
  1969. idle=false
  1970. idle1=false
  1971. wait(0.1)
  1972. kiout = true
  1973. swing11()
  1974. kiblade.Transparency = 0
  1975. trail.Enabled = true
  1976. wait(0.6)
  1977. canattack = true
  1978. idle=true
  1979. idle1=true
  1980. end
  1981. end
  1982.  
  1983.  
  1984. end
  1985. end)
  1986. function pushaway()
  1987. for i = 1, 10 do
  1988. wait()
  1989. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(50),math.rad(0)), 0.4)--head
  1990. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), math.rad(-1)), 0.4)--torso
  1991. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(10)), 0.4)--arm
  1992. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)--arm
  1993. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.4)--leg
  1994. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--leg
  1995. end
  1996. for i = 1, 10 do
  1997. wait()
  1998. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(-80),math.rad(0)), 0.4)--head
  1999. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(80), math.rad(1)), 0.4)--torso
  2000. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.4)--arm
  2001. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-10)), 0.4)--arm
  2002. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.4)--leg
  2003. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--leg
  2004. end
  2005. end
  2006. mouse.KeyDown:connect(function(key)
  2007. if key == "m" then
  2008. if kiout == true then
  2009.  
  2010.  
  2011. kiout = false
  2012. kiblade.Transparency = 1
  2013. trail.Enabled = false
  2014.  
  2015. end
  2016. end
  2017. end)
  2018.  
  2019.  
  2020.  
  2021. function grab5()
  2022. for i = 1, 10 do
  2023. wait()
  2024.  
  2025. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.1)--head
  2026. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
  2027. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(10)), 0.1)--arm
  2028. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(-10)), 0.1)--arm
  2029. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.1)--leg
  2030. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.1)--leg
  2031. end
  2032. for i = 1, 10 do
  2033. wait()
  2034.  
  2035. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.2)--head
  2036. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.2)--torso
  2037. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-.5)*CFrame.Angles(math.rad(100),math.rad(0),math.rad(-40)), 0.2)--arm
  2038. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.5,-.5)*CFrame.Angles(math.rad(100),math.rad(0),math.rad(40)), 0.2)--arm
  2039. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-10)), 0.2)--leg
  2040. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-50), math.rad(0), math.rad(10)), 0.2)--leg
  2041. end
  2042. end
  2043.  
  2044. mouse.KeyDown:connect(function(key)
  2045. if key == "u" then
  2046. if canattack == true then
  2047.  
  2048. if kiout == false then
  2049. grab2 = false
  2050. grabhit3 = Instance.new("Part",char)
  2051. grabhit3.Size = Vector3.new(2,2,2)
  2052. grabhit3.Name = "LOL"
  2053. grabhit3.Position = Vector3.new(999,999,999)
  2054. grabhit3.Transparency = 1
  2055. grabhit3.CanCollide = false
  2056. grabweld3 = Instance.new("Weld",grabhit3)
  2057. grabweld3.Part0 = torso
  2058. grabweld3.Part1 = grabhit3
  2059. grabweld3.C0 = CFrame.new(0,0,-2)
  2060.  
  2061. grab8 = false
  2062. idle = false
  2063. idle1 = false
  2064. canattack = false
  2065. hum.HipHeight = 0
  2066.  
  2067. kiblade.Transparency = 0
  2068. trail.Enabled = true
  2069. swing11()
  2070. if clickon == true then
  2071. jk = true
  2072. clickon = false
  2073. end
  2074. wait(1.4)
  2075.  
  2076. go2 = true
  2077. flytowards()
  2078.  
  2079. function touch5(hit)
  2080. if not hit.Parent:findFirstChild("Humanoid") then return end
  2081. if hit.Parent:findFirstChild("Humanoid") ~= nil then
  2082. grabhit3.TouchInterest:Destroy()
  2083. go2 = false
  2084.  
  2085.  
  2086.  
  2087.  
  2088.  
  2089.  
  2090.  
  2091.  
  2092.  
  2093.  
  2094.  
  2095.  
  2096.  
  2097.  
  2098.  
  2099.  
  2100. grabhit = Instance.new("Part",char)
  2101. grabhit.Size = Vector3.new(5,5,5)
  2102. grabhit.Position = Vector3.new(999,999,999)
  2103. grabhit.Transparency = 1
  2104. grabhit.CanCollide = false
  2105. grabweld = Instance.new("Weld",grabhit)
  2106. grabweld.Part0 = torso
  2107. grabweld.Part1 = grabhit
  2108. grabweld.C0 = CFrame.new(0,0,-2)
  2109. ---------------------------------------------------------------
  2110. hand1 = Instance.new("Part",rarm)
  2111. hand1.Size = Vector3.new(0.1,0.1,0.1)
  2112. hand1.CanCollide = false
  2113. hand1.Transparency = 1
  2114. hand1.Position = Vector3.new(999,999,999)
  2115. hand2mesh = Instance.new("SpecialMesh",hand1)
  2116. hand2mesh.MeshType = "FileMesh"
  2117.  
  2118. hand2mesh.Scale = Vector3.new(1,1,1)
  2119. hand2aura = Instance.new("ParticleEmitter",hand1)
  2120. hand2aura.Size = NumberSequence.new(1)
  2121. hand2aura.Texture = "rbxassetid://715401010"
  2122. hand2aura.Speed = NumberRange.new(0)
  2123. hand2aura.LockedToPart = true
  2124. hand2aura.Transparency = NumberSequence.new(1)
  2125. hand2aura.RotSpeed = NumberRange.new(999)
  2126. hand1weld = Instance.new("Weld",hand1)
  2127. hand1weld.Part0 = rarm
  2128. hand1weld.Part1 = hand1
  2129. hand1weld.C0 = CFrame.new(0,-1.8,0)
  2130. ----------------------------------------------------------------
  2131. hand2 = Instance.new("Part",rarm)
  2132. hand2.Size = Vector3.new(1,1,1)
  2133. hand1.CanCollide = false
  2134. hand2.Transparency = 1
  2135. hand2.Position = Vector3.new(999,999,999)
  2136.  
  2137. hand2weld = Instance.new("Weld",hand2)
  2138. hand2weld.Part0 = larm
  2139. hand2weld.Part1 = hand2
  2140. hand2weld.C0 = CFrame.new(0,-1.2,0)
  2141. function touch1(hit)
  2142. if not hit.Parent:findFirstChild("Humanoid") then return end
  2143. if hit.Parent:findFirstChild("Humanoid") ~= nil then
  2144. hu1 = hit.Parent:findFirstChild("Humanoid")
  2145.  
  2146. t.Anchored = false
  2147. if clickon == true then
  2148. jk = true
  2149. clickon = false
  2150. end
  2151. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 0.5
  2152. if hu1.Health > 100 then
  2153. hu1.MaxHealth = 100
  2154. hu1.Health = 100
  2155. end
  2156.  
  2157. end
  2158. end
  2159. hand1.Touched:connect(touch1)
  2160. function touch2(hit)
  2161. if not hit.Parent:findFirstChild("Humanoid") then return end
  2162. if hit.Parent:findFirstChild("Humanoid") ~= nil then
  2163. hu1 = hit.Parent:findFirstChild("Humanoid")
  2164.  
  2165.  
  2166. if clickon == true then
  2167. jk = true
  2168. clickon = false
  2169. end
  2170. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 0.5
  2171. if hu1.Health > 100 then
  2172. hu1.MaxHealth = 100
  2173. hu1.Health = 100
  2174. end
  2175. end
  2176. end
  2177. hand2.Touched:connect(touch2)
  2178. function touch(hit)
  2179. if not hit.Parent:findFirstChild("Humanoid") then return end
  2180. if hit.Parent:findFirstChild("Humanoid") ~= nil then
  2181. grabhit.TouchInterest:Destroy()
  2182. grab2 = true
  2183. t.Anchored = false
  2184. if clickon == true then
  2185. jk = true
  2186. clickon = false
  2187. end
  2188.  
  2189.  
  2190.  
  2191. hu12 = hit.Parent:findFirstChild("Humanoid")
  2192. to12 = hit.Parent:findFirstChild("Torso")
  2193. he12 = hit.Parent:findFirstChild("Head")
  2194. ra12 = hit.Parent:findFirstChild("Right Arm")
  2195. la12 = hit.Parent:findFirstChild("Left Arm")
  2196. rl12 = hit.Parent:findFirstChild("Right Leg")
  2197. ll12 = hit.Parent:findFirstChild("Left Leg")
  2198. hu12.WalkSpeed = 0
  2199. if hu12.Health > 100 then
  2200. hu12.MaxHealth = 100
  2201. hu12.Health = 100
  2202. end
  2203.  
  2204.  
  2205.  
  2206.  
  2207. end
  2208.  
  2209. if grab2 == true then
  2210.  
  2211. hu12.Health = hu12.Health - 10
  2212. firstswing()
  2213. hu12.Health = hu12.Health - 10
  2214. z42:Play()
  2215. pushed = true
  2216. go1 = true
  2217. flytowards()
  2218.  
  2219. he12.Anchored = true
  2220. pushed = false
  2221. -------------------------------------------------------------
  2222. grabhit1 = Instance.new("Part",char)
  2223. grabhit1.Size = Vector3.new(1,1,1)
  2224. grabhit1.Position = Vector3.new(999,999,999)
  2225. grabhit1.Transparency = 1
  2226. grabhit1.CanCollide = false
  2227. grabweld = Instance.new("Weld",grabhit1)
  2228. grabweld.Part0 = torso
  2229. grabweld.Part1 = grabhit1
  2230. grabweld.C0 = CFrame.new(0,0,-2)
  2231. function touch(hit)
  2232. if not hit.Parent:findFirstChild("Humanoid") then return end
  2233. if hit.Parent:findFirstChild("Humanoid") ~= nil then
  2234. grabhit1.TouchInterest:Destroy()
  2235. go1 = false
  2236.  
  2237. -------------------------------------------------------------------
  2238.  
  2239.  
  2240. swings()
  2241. hu12.Health = hu12.Health - 20
  2242. hu12.Health = hu12.Health - 10
  2243. he12.Anchored = false
  2244. pushed1 = true
  2245. divine.Transparency = .5
  2246. divine2.Transparency = .5
  2247. divine3.Transparency = .5
  2248. divine4.Transparency = .5
  2249. divine5.Transparency = .5
  2250. divine6.Transparency = .5
  2251.  
  2252. divineswinging()
  2253.  
  2254. hu12.Health = hu12.Health - 10
  2255. pushed1 = false
  2256. shot1 = false
  2257. divine.CFrame = to12.CFrame + hed.CFrame.lookVector
  2258. divine2.CFrame = ra12.CFrame + hed.CFrame.lookVector + v3(0,0,0)
  2259. divine3.CFrame = la12.CFrame + hed.CFrame.lookVector + v3(0,0,0)
  2260. divine4.CFrame = rl12.CFrame + hed.CFrame.lookVector + v3(2.1,1.3,0)
  2261. divine5.CFrame = ll12.CFrame + hed.CFrame.lookVector + v3(-1.7,1.6,0)
  2262. divine6.CFrame = he12.CFrame + hed.CFrame.lookVector + v3(1.9,-1,0)
  2263.  
  2264. divine.Anchored = true
  2265. divine2.Anchored = true
  2266. divine3.Anchored = true
  2267. divine4.Anchored = true
  2268. divine5.Anchored = true
  2269. divine6.Anchored = true
  2270. he12.Anchored = true
  2271. go1 = false
  2272. part6 = Instance.new("Part",to12)
  2273. part6.Size = Vector3.new(1,1,1)
  2274. part6.Transparency = 0
  2275. part6.Position = hit.Position
  2276. part6.BrickColor = BrickColor.new("Really red")
  2277. partmesh = Instance.new("SpecialMesh",part6)
  2278. partmesh.MeshType = "Sphere"
  2279. partmesh.Scale = Vector3.new(1,1,1)
  2280. partweld1 = Instance.new("Weld",to12)
  2281. partweld1.Part0 = to12
  2282. partweld1.Part1 = part6
  2283. partweld1.C0 = CFrame.new(0,0,0)
  2284.  
  2285. divineend()
  2286.  
  2287.  
  2288. wait(0.4)
  2289. hu12:Destroy()
  2290.  
  2291. for i = 1,50 do
  2292. wait()
  2293. partmesh.Scale = partmesh.Scale + Vector3.new(7,7,7)
  2294. part6.Transparency = part6.Transparency + 0.02
  2295. end
  2296. hu12.WalkSpeed = 16
  2297.  
  2298.  
  2299. ------------------------------------------------------------
  2300. hand1:Destroy()
  2301. hand2:Destroy()
  2302. kiweld7.C0 = CFrame.new(0,-2.1,0) * CFrame.Angles(rad(180),rad(0),rad(0))
  2303. kiblade.Transparency = 1
  2304. trail.Enabled = false
  2305.  
  2306. for i,v in pairs(char:children()) do
  2307. if v:IsA("Accessory") then
  2308. v:Destroy()
  2309. end
  2310. end
  2311. for i,v in pairs(char:children()) do
  2312. if v:IsA("Hat") then
  2313. v:Destroy()
  2314. end
  2315. end
  2316. canattack = true
  2317. idle = true
  2318. grabhit:Destroy()
  2319. idle1 = true
  2320.  
  2321. if jk == true then
  2322. jk = false
  2323. clickon = true
  2324. end
  2325.  
  2326. grab8 = false
  2327. end
  2328. end
  2329. grabhit1.Touched:connect(touch)
  2330. end
  2331.  
  2332.  
  2333. end
  2334.  
  2335.  
  2336.  
  2337.  
  2338.  
  2339.  
  2340.  
  2341.  
  2342. grabhit.Touched:connect(touch)
  2343. end
  2344. end
  2345. grabhit3.Touched:connect(touch5)
  2346.  
  2347.  
  2348.  
  2349. wait(3)
  2350.  
  2351. if grab2 == false then
  2352. grabhit3:Destroy()
  2353. go2 = false
  2354. kiblade.Transparency = 1
  2355. trail.Enabled = false
  2356. canattack = true
  2357. idle = true
  2358. up = 0
  2359.  
  2360. idle1 = true
  2361. if jk == true then
  2362. jk = false
  2363. clickon = true
  2364. end
  2365.  
  2366.  
  2367.  
  2368. end
  2369. end
  2370. end
  2371.  
  2372.  
  2373. end
  2374. end)
  2375.  
  2376.  
  2377.  
  2378. ------------------------------------------------------------------
  2379. throw1 = 3
  2380. game:GetService("RunService").RenderStepped:connect(function()
  2381.  
  2382.  
  2383. if pushed == true then
  2384.  
  2385. to12.CFrame = to12.CFrame + hed.CFrame.lookVector * 3 + v3(0,0.51,0)
  2386. end
  2387. if pushed1 == true then
  2388.  
  2389. to12.CFrame = to12.CFrame + hed.CFrame.lookVector * 1.5 + v3(0,0,0)
  2390. end
  2391. if go1 == true then
  2392.  
  2393. torso.CFrame = CFrame.new(torso.CFrame.p,to12.CFrame.p + v3(0,0,2))
  2394. end
  2395. if go2 == true then
  2396. torso.CFrame = CFrame.new(torso.CFrame.p,t.CFrame.p + v3(0,0,2))
  2397.  
  2398. end
  2399. if shot1 == true then
  2400. throw1 = throw1 + 1.5
  2401. divine.CFrame = hed.CFrame + hed.CFrame.lookVector * throw1 + v3(0,0,0)
  2402. divine2.CFrame = hed.CFrame + hed.CFrame.lookVector * throw1 + v3(1,0,0)
  2403. divine3.CFrame = hed.CFrame + hed.CFrame.lookVector * throw1 + v3(-1,-1,0)
  2404. divine4.CFrame = hed.CFrame + hed.CFrame.lookVector * throw1 + v3(2,1,0)
  2405. divine5.CFrame = hed.CFrame + hed.CFrame.lookVector * throw1 + v3(-1,1,0)
  2406. divine6.CFrame = hed.CFrame + hed.CFrame.lookVector * throw1 + v3(2,-1,0)
  2407.  
  2408.  
  2409. end
  2410.  
  2411.  
  2412.  
  2413.  
  2414.  
  2415.  
  2416.  
  2417.  
  2418.  
  2419.  
  2420.  
  2421.  
  2422.  
  2423.  
  2424.  
  2425. if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
  2426.  
  2427. if walk == true then
  2428.  
  2429. if canattack == true then
  2430. walk = false
  2431. ok = 0
  2432. hum.HipHeight = 0
  2433. lala = false
  2434. down2 = false
  2435. walkon = true
  2436.  
  2437. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)--head
  2438. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), 0.5)--torso
  2439. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(5)), 0.5)--rarm
  2440. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-5)),0.5)--larm
  2441. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.6, -.5) * CFrame.Angles(math.rad(-15), math.rad(0), math.rad(-5)),.5)--lleg
  2442. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-5), math.rad(0), math.rad(5)),.5)--rleg
  2443. wait(0.1)
  2444. if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
  2445. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.5)--head
  2446. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), 0.5)--torso
  2447. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(5)), 0.5)--rarm
  2448. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-5)),0.5)--larm
  2449. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.6, -.5) * CFrame.Angles(math.rad(-15), math.rad(0), math.rad(-5)),.5)--lleg
  2450. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-5), math.rad(0), math.rad(5)),.5)--rleg
  2451. wait(0.1)
  2452. end
  2453. if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
  2454. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
  2455. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
  2456. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(20),math.rad(0),math.rad(5)), .5)--rarm
  2457. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-5)),1)--larm
  2458. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.2) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(-5)),.5)--lleg
  2459. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), math.rad(0), math.rad(5)),.5)--rleg
  2460.  
  2461.  
  2462. wait(.1)
  2463. end
  2464. if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
  2465. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
  2466. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
  2467. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(20),math.rad(0),math.rad(5)), .5)--rarm
  2468. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-5)),1)--larm
  2469. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.2) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(-5)),.5)--lleg
  2470. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), math.rad(0), math.rad(5)),.5)--rleg
  2471.  
  2472.  
  2473. wait(.1)
  2474. end
  2475. if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
  2476.  
  2477. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
  2478. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
  2479. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(5)), .5)--rarm
  2480. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-5)),.5)--larm
  2481. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.2) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-5)),.5)--lleg
  2482. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(5)),.5)--rleg
  2483. wait(0.1)
  2484.  
  2485. end
  2486. if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
  2487.  
  2488. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
  2489. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
  2490. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(5)), .5)--rarm
  2491. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-5)),.5)--larm
  2492. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.2) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-5)),.5)--lleg
  2493. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(5)),.5)--rleg
  2494. wait(0.1)
  2495.  
  2496. end
  2497. if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
  2498.  
  2499. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
  2500. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
  2501. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(5)), .5)--rarm
  2502. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(-5)),.5)--larm
  2503. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(5), math.rad(0), math.rad(-5)),.5)--lleg
  2504. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.6, -.5) * CFrame.Angles(math.rad(-15), math.rad(0), math.rad(5)),.5)--rleg
  2505. wait(0.1)
  2506. end
  2507. if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
  2508.  
  2509. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
  2510. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
  2511. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(5)), .5)--rarm
  2512. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(-5)),.5)--larm
  2513. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(5), math.rad(0), math.rad(-5)),.5)--lleg
  2514. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.6, -.5) * CFrame.Angles(math.rad(-15), math.rad(0), math.rad(5)),.5)--rleg
  2515. wait(0.1)
  2516. end
  2517. if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
  2518. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
  2519. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
  2520. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(5)), .5)--rarm
  2521. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(20),math.rad(0),math.rad(-5)),.5)--larm
  2522. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.2) * CFrame.Angles(math.rad(-8), math.rad(0), math.rad(-5)),.5)--lleg
  2523. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.2) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(5)),.5)--rleg
  2524. wait(0.1)
  2525.  
  2526. end
  2527. if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
  2528. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
  2529. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
  2530. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(5)), .5)--rarm
  2531. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(20),math.rad(0),math.rad(-5)),.5)--larm
  2532. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.2) * CFrame.Angles(math.rad(-8), math.rad(0), math.rad(-5)),.5)--lleg
  2533. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, -.2) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(5)),.5)--rleg
  2534. wait(0.1)
  2535.  
  2536. end
  2537. if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
  2538. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
  2539. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
  2540. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(5)), .5)--rarm
  2541. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-5)),.5)--larm
  2542. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.2) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-5)),.5)--lleg
  2543. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(5)),.5)--rleg
  2544.  
  2545. wait(0.1)
  2546. end
  2547. if hum.MoveDirection.x > 0 and nohit > 10 or hum.MoveDirection.x < 0 and nohit > 10 then
  2548. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), .5)--head
  2549. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-3), math.rad(0), math.rad(0)), .5)--torso
  2550. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(5)), .5)--rarm
  2551. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-5)),.5)--larm
  2552. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -.2) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-5)),.5)--lleg
  2553. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(5)),.5)--rleg
  2554.  
  2555. wait(0.1)
  2556. end
  2557.  
  2558. walk = true
  2559. end
  2560. end
  2561. end
  2562. if hum.MoveDirection.x == 0 and nohit > 10 then
  2563. if idle1 == true then
  2564. if ssjr == true then
  2565. walkon = false
  2566. idle1 = false
  2567. idle = false
  2568. if canattack == true then
  2569. idle = true
  2570. idle1 = true
  2571. end
  2572.  
  2573. hum.HipHeight = ok
  2574. stance1()
  2575.  
  2576. end
  2577. end
  2578. end
  2579. if hum.MoveDirection.x == 0 and nohit > 10 then
  2580. if idle1 == true then
  2581. if base == true then
  2582. hum.HipHeight = 0
  2583. if canattack == true then
  2584. idle = true
  2585. idle1 = true
  2586. end
  2587. walkon = false
  2588. idle1 = false
  2589. idle = false
  2590. if canattack == true then
  2591. idle = true
  2592. idle1 = true
  2593. end
  2594.  
  2595. stance2()
  2596.  
  2597. end
  2598. end
  2599. end
  2600. if rl == true then
  2601. rl = false
  2602. nohit = nohit + 0.2
  2603. rl = true
  2604. end
  2605.  
  2606. if lala == false and walkon == false then
  2607.  
  2608. ok = ok + 0.05
  2609.  
  2610. end
  2611. if ok > 3.9999999 and walkon == false then
  2612. lala = true
  2613. down2 = true
  2614. ok = ok - 0.05
  2615.  
  2616. end
  2617. if ok < 0.1111111 and walkon == false then
  2618. down2 = false
  2619. lala = false
  2620. end
  2621. if down2 == true then
  2622. ok = ok - 0.05
  2623. end
  2624.  
  2625.  
  2626.  
  2627.  
  2628.  
  2629.  
  2630. if auracan3 == true then
  2631. auracan3 = false
  2632. aura3.Texture = "rbxassetid://901509906"
  2633. wait(0.07)
  2634. aura3.Texture = "rbxassetid://901510046"
  2635. wait(0.07)
  2636. aura3.Texture = "rbxassetid://901510125"
  2637. wait(0.07)
  2638. auracan3 = true
  2639. end
  2640.  
  2641.  
  2642.  
  2643.  
  2644.  
  2645. if kamehameha == true then
  2646. aj1 = aj1 + 0.005
  2647. partaura.Size = NumberSequence.new(aj1)
  2648. beam1.Size=beam1.Size + v3(0.5,0.5,0)
  2649. beamdamage = beamdamage + 9
  2650. expl1.Size=expl1.Size + v3(0.01,0.01,0.01)*s1.Volume
  2651. exa1.Size=exa1.Size + v3(0.01,0.01,0.01)*s1.Volume
  2652. else
  2653. aj1 = 0.1
  2654.  
  2655. end
  2656.  
  2657. if clickon == true then
  2658.  
  2659. torso.CFrame = CFrame.new(torso.CFrame.p,t.CFrame.p)
  2660. if hu.Health > 100 then
  2661. hu.MaxHealth = 100
  2662. hu.Health = 100
  2663. end
  2664. if hu.Health < 1 then
  2665. clickon = false
  2666.  
  2667. end
  2668.  
  2669. end
  2670.  
  2671. if darius == true then
  2672. darius = false
  2673. wait(0.1)
  2674. part2.Texture = "http://www.roblox.com/asset/?id=926975911"
  2675. wait(0.1)
  2676. part2.Texture = "http://www.roblox.com/asset/?id=926976058"
  2677. wait(0.1)
  2678. part2.Texture = "http://www.roblox.com/asset/?id=926976185"
  2679.  
  2680.  
  2681. darius = true
  2682. end
  2683. if darius1 == true then
  2684. darius1 = false
  2685. wait(0.1)
  2686. part7.Texture = "http://www.roblox.com/asset/?id=927229024"
  2687. wait(0.1)
  2688. part7.Texture = "http://www.roblox.com/asset/?id=927282857"
  2689. wait(0.1)
  2690. part7.Texture = "http://www.roblox.com/asset/?id=927283016"
  2691.  
  2692.  
  2693. darius1 = true
  2694. end
  2695.  
  2696.  
  2697. if auracan1 == true then
  2698. auracan1 = false
  2699. aura1.Texture = "rbxassetid://281983000"
  2700. wait(0.1)
  2701. aura1.Texture = "rbxassetid://281982895"
  2702. wait(0.1)
  2703. aura1.Texture = "rbxassetid://281983092"
  2704. wait(0.1)
  2705. aura1.Texture = "rbxassetid://281996097"
  2706. wait(0.1)
  2707. aura1.Texture = "rbxassetid://281983189"
  2708. wait(0.1)
  2709. aura1.Texture = "rbxassetid://281983242"
  2710. wait(0.1)
  2711. aura1.Texture = "rbxassetid://281983280"
  2712. wait(0.1)
  2713. aura1.Texture = "rbxassetid://281983337"
  2714. wait(0.1)
  2715.  
  2716. auracan1 = true
  2717. end
  2718.  
  2719.  
  2720.  
  2721.  
  2722.  
  2723.  
  2724.  
  2725.  
  2726.  
  2727.  
  2728.  
  2729. if shake == true then
  2730. if lolf == true then
  2731. lolf = false
  2732.  
  2733. hum.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  2734.  
  2735.  
  2736.  
  2737.  
  2738. wait()
  2739. lolf = true
  2740. end
  2741. end
  2742.  
  2743. end)
  2744. zwc1 = Instance.new("Sound",torso)
  2745. zwc1.Volume = 5
  2746. zwc1.Looped = false
  2747. zwc1.SoundId = "rbxassetid://744770874"
  2748. mouse.KeyDown:connect(function(key)
  2749. if key == "z" then
  2750. if canattack == true then
  2751.  
  2752. canattack = false
  2753. idle = false
  2754. hum.WalkSpeed = 0
  2755. nohit = 0
  2756. idle1 = false
  2757. for i = 1, 10 do
  2758. wait()
  2759. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)--head
  2760. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.4)--torso
  2761. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(10)), 0.4)--arm
  2762. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-0.8,0.7,-0.7)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(140)), 0.4)--arm
  2763. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-10)), 0.4)--leg
  2764. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(10)), 0.4)--leg
  2765. end
  2766.  
  2767. zwc1:Play()
  2768. if clickon == true then
  2769. torso.CFrame = t.CFrame - Vector3.new(0,0,2)
  2770. else
  2771. torso.CFrame = torso.CFrame + torso.CFrame.lookVector * 40
  2772. end
  2773. canattack = true
  2774. idle = true
  2775. hum.WalkSpeed = 10
  2776. idle1 = true
  2777. end
  2778.  
  2779.  
  2780. end
  2781. end)
  2782.  
  2783. ee = Instance.new("Part",char)
  2784. ee.Size = Vector3.new(0.2,0.2,0.2)
  2785. ee.Position = Vector3.new(9999999,9999999,9999999)
  2786. ee.Shape = "Ball"
  2787. ee.BrickColor = BrickColor.new("Really red")
  2788. ee1 = Instance.new("Part",char)
  2789. ee1.Size = Vector3.new(0.18,0.18,0.18)
  2790. ee1.Position = Vector3.new(999999,999999,999999)
  2791. ee1.Shape = "Ball"
  2792. ee1.BrickColor = BrickColor.new("Really black")
  2793. ee2 = Instance.new("Part",char)
  2794. ee2.Size = Vector3.new(0.06,0.06,0.06)
  2795. ee2.Shape = "Ball"
  2796. ee2.BrickColor = BrickColor.new("Really black")
  2797. ee2.Position = Vector3.new(99999,99999,99999)
  2798. ee3 = Instance.new("Part",char)
  2799. ee3.Size = Vector3.new(0.06,0.06,0.06)
  2800. ee3.Shape = "Ball"
  2801. ee3.BrickColor = BrickColor.new("Really black")
  2802. ee3.Position = Vector3.new(9999,9999,9999)
  2803. ee4 = Instance.new("Part",char)
  2804. ee4.Size = Vector3.new(0.1,0.1,0.1)
  2805. ee4.Shape = "Ball"
  2806. ee4.BrickColor = BrickColor.new("Really black")
  2807. ee4.Position = Vector3.new(999,999,999)
  2808. eew = Instance.new("Weld",game.Players.LocalPlayer.Character.Head)
  2809. eew.Part0 = game.Players.LocalPlayer.Character.Head
  2810. eew.Part1 = ee
  2811. eew.C0 = CFrame.new(-0.68,-0.22,0)
  2812. eew1 = Instance.new("Weld",game.Players.LocalPlayer.Character.Head)
  2813. eew1.Part0 = ee
  2814. eew1.Part1 = ee1
  2815. eew1.C0 = CFrame.new(0,0.02,0)
  2816. eew2 = Instance.new("Weld",game.Players.LocalPlayer.Character.Head)
  2817. eew2.Part0 = game.Players.LocalPlayer.Character.Head
  2818. eew2.Part1 = ee2
  2819. eew2.C0 = CFrame.new(-0.67,-0.1,0)
  2820. eew3 = Instance.new("Weld",game.Players.LocalPlayer.Character.Head)
  2821. eew3.Part0 = game.Players.LocalPlayer.Character.Head
  2822. eew3.Part1 = ee3
  2823. eew3.C0 = CFrame.new(-0.66,-0.05,0)
  2824. eew4 = Instance.new("Weld",game.Players.LocalPlayer.Character.Head)
  2825. eew4.Part0 = game.Players.LocalPlayer.Character.Head
  2826. eew4.Part1 = ee4
  2827. eew4.C0 = CFrame.new(-0.64,-0.01,0)
  2828. chatfunc("I'm A Warrior From The Evil Realm")
  2829. wait(4)
  2830. chatfunc("I've been send from a god to eliminate you.")
  2831. wait(4)
  2832. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  2833. Character:FindFirstChild("TalkingBillBoard"):destroy()
  2834. end
  2835. ----------------------------------------------------------------------
  2836. hum.WalkSpeed = 0
  2837. Colors = {"White", "White"}
  2838. GroundWave1()
  2839. wait(0.1)
  2840. GroundBall1()
  2841. wait(0.1)
  2842. GroundWave1()
  2843. wait(0.1)
  2844. GroundWave1()
  2845. wait(0.1)
  2846. GroundWave1()
  2847. wait(0.1)
  2848. GroundBall1()
  2849. wait(0.1)
  2850. GroundWave1()
  2851. wait(0.1)
  2852. GroundWave1()
  2853. wait(0.1)
  2854. GroundBall1()
  2855. wait(0.1)
  2856. GroundBall1()
  2857. wait(0.1)
  2858. GroundBall1()
  2859. wait(0.05)
  2860. GroundBall1()
  2861. wait(0.001)
  2862. local m2 = Instance.new("Model")
  2863. m2.Name = "Wings"
  2864. p1 = Instance.new("Part", m2)
  2865. p1.BrickColor = BrickColor.new("White")
  2866. p1.Material = Enum.Material.Neon
  2867. 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)
  2868. p1.FormFactor = Enum.FormFactor.Custom
  2869. p1.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  2870. p1.BottomSurface = Enum.SurfaceType.Smooth
  2871. p1.TopSurface = Enum.SurfaceType.Smooth
  2872. b1 = Instance.new("SpecialMesh", p1)
  2873. b1.MeshType = Enum.MeshType.Sphere
  2874. b1.Name = "Mesh"
  2875. p2 = Instance.new("Part", m2)
  2876. p2.BrickColor = BrickColor.new("White")
  2877. p2.Material = Enum.Material.SmoothPlastic
  2878. p2.Reflectance = 0.30000001192093
  2879. 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)
  2880. p2.CanCollide = false
  2881. p2.FormFactor = Enum.FormFactor.Custom
  2882. p2.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2883. p2.BottomSurface = Enum.SurfaceType.Smooth
  2884. p2.TopSurface = Enum.SurfaceType.Smooth
  2885. b2 = Instance.new("SpecialMesh", p2)
  2886. b2.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2887. b2.TextureId = ""
  2888. b2.MeshType = Enum.MeshType.FileMesh
  2889. b2.Name = "Mesh"
  2890. b2.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2891. p3 = Instance.new("Part", m2)
  2892. p3.BrickColor = BrickColor.new("White")
  2893. p3.Material = Enum.Material.SmoothPlastic
  2894. p3.Reflectance = 0.30000001192093
  2895. 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)
  2896. p3.CanCollide = false
  2897. p3.FormFactor = Enum.FormFactor.Custom
  2898. p3.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2899. p3.BottomSurface = Enum.SurfaceType.Smooth
  2900. p3.TopSurface = Enum.SurfaceType.Smooth
  2901. b3 = Instance.new("SpecialMesh", p3)
  2902. b3.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2903. b3.TextureId = ""
  2904. b3.MeshType = Enum.MeshType.FileMesh
  2905. b3.Name = "Mesh"
  2906. b3.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2907. p4 = Instance.new("Part", m2)
  2908. p4.BrickColor = BrickColor.new("White")
  2909. p4.Material = Enum.Material.SmoothPlastic
  2910. p4.Reflectance = 0.30000001192093
  2911. 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)
  2912. p4.CanCollide = false
  2913. p4.FormFactor = Enum.FormFactor.Custom
  2914. p4.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2915. p4.BottomSurface = Enum.SurfaceType.Smooth
  2916. p4.TopSurface = Enum.SurfaceType.Smooth
  2917. b4 = Instance.new("SpecialMesh", p4)
  2918. b4.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2919. b4.TextureId = ""
  2920. b4.MeshType = Enum.MeshType.FileMesh
  2921. b4.Name = "Mesh"
  2922. b4.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2923. p5 = Instance.new("Part", m2)
  2924. p5.BrickColor = BrickColor.new("White")
  2925. p5.Material = Enum.Material.SmoothPlastic
  2926. p5.Reflectance = 0.30000001192093
  2927. 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)
  2928. p5.CanCollide = false
  2929. p5.FormFactor = Enum.FormFactor.Custom
  2930. p5.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  2931. p5.BottomSurface = Enum.SurfaceType.Smooth
  2932. p5.TopSurface = Enum.SurfaceType.Smooth
  2933. b5 = Instance.new("SpecialMesh", p5)
  2934. b5.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2935. b5.TextureId = ""
  2936. b5.MeshType = Enum.MeshType.FileMesh
  2937. b5.Name = "Mesh"
  2938. b5.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  2939. p6 = Instance.new("Part", m2)
  2940. p6.BrickColor = BrickColor.new("White")
  2941. p6.Material = Enum.Material.SmoothPlastic
  2942. p6.Reflectance = 0.30000001192093
  2943. 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)
  2944. p6.CanCollide = false
  2945. p6.FormFactor = Enum.FormFactor.Custom
  2946. p6.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2947. p6.BottomSurface = Enum.SurfaceType.Smooth
  2948. p6.TopSurface = Enum.SurfaceType.Smooth
  2949. b6 = Instance.new("SpecialMesh", p6)
  2950. b6.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2951. b6.TextureId = ""
  2952. b6.MeshType = Enum.MeshType.FileMesh
  2953. b6.Name = "Mesh"
  2954. b6.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2955. p7 = Instance.new("Part", m2)
  2956. p7.BrickColor = BrickColor.new("White")
  2957. p7.Material = Enum.Material.SmoothPlastic
  2958. p7.Reflectance = 0.30000001192093
  2959. 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)
  2960. p7.CanCollide = false
  2961. p7.FormFactor = Enum.FormFactor.Custom
  2962. p7.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2963. p7.BottomSurface = Enum.SurfaceType.Smooth
  2964. p7.TopSurface = Enum.SurfaceType.Smooth
  2965. b7 = Instance.new("SpecialMesh", p7)
  2966. b7.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2967. b7.TextureId = ""
  2968. b7.MeshType = Enum.MeshType.FileMesh
  2969. b7.Name = "Mesh"
  2970. b7.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  2971. p8 = Instance.new("Part", m2)
  2972. p8.BrickColor = BrickColor.new("White")
  2973. p8.Material = Enum.Material.SmoothPlastic
  2974. p8.Reflectance = 0.30000001192093
  2975. 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)
  2976. p8.CanCollide = false
  2977. p8.FormFactor = Enum.FormFactor.Custom
  2978. p8.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  2979. p8.BottomSurface = Enum.SurfaceType.Smooth
  2980. p8.TopSurface = Enum.SurfaceType.Smooth
  2981. b8 = Instance.new("SpecialMesh", p8)
  2982. b8.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2983. b8.TextureId = ""
  2984. b8.MeshType = Enum.MeshType.FileMesh
  2985. b8.Name = "Mesh"
  2986. b8.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  2987. p9 = Instance.new("Part", m2)
  2988. p9.BrickColor = BrickColor.new("White")
  2989. p9.Material = Enum.Material.SmoothPlastic
  2990. p9.Reflectance = 0.30000001192093
  2991. 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)
  2992. p9.CanCollide = false
  2993. p9.FormFactor = Enum.FormFactor.Custom
  2994. p9.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  2995. p9.BottomSurface = Enum.SurfaceType.Smooth
  2996. p9.TopSurface = Enum.SurfaceType.Smooth
  2997. b9 = Instance.new("SpecialMesh", p9)
  2998. b9.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2999. b9.TextureId = ""
  3000. b9.MeshType = Enum.MeshType.FileMesh
  3001. b9.Name = "Mesh"
  3002. b9.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  3003. p10 = Instance.new("Part", m2)
  3004. p10.BrickColor = BrickColor.new("White")
  3005. p10.Material = Enum.Material.SmoothPlastic
  3006. p10.Reflectance = 0.30000001192093
  3007. 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)
  3008. p10.CanCollide = false
  3009. p10.FormFactor = Enum.FormFactor.Custom
  3010. p10.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  3011. p10.BottomSurface = Enum.SurfaceType.Smooth
  3012. p10.TopSurface = Enum.SurfaceType.Smooth
  3013. b10 = Instance.new("SpecialMesh", p10)
  3014. b10.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3015. b10.TextureId = ""
  3016. b10.MeshType = Enum.MeshType.FileMesh
  3017. b10.Name = "Mesh"
  3018. b10.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  3019. p11 = Instance.new("Part", m2)
  3020. p11.BrickColor = BrickColor.new("White")
  3021. p11.Material = Enum.Material.SmoothPlastic
  3022. p11.Reflectance = 0.30000001192093
  3023. 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)
  3024. p11.CanCollide = false
  3025. p11.FormFactor = Enum.FormFactor.Custom
  3026. p11.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  3027. p11.BottomSurface = Enum.SurfaceType.Smooth
  3028. p11.TopSurface = Enum.SurfaceType.Smooth
  3029. b11 = Instance.new("SpecialMesh", p11)
  3030. b11.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3031. b11.TextureId = ""
  3032. b11.MeshType = Enum.MeshType.FileMesh
  3033. b11.Name = "Mesh"
  3034. b11.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  3035. p12 = Instance.new("Part", m2)
  3036. p12.BrickColor = BrickColor.new("White")
  3037. p12.Material = Enum.Material.SmoothPlastic
  3038. p12.Reflectance = 0.30000001192093
  3039. 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)
  3040. p12.CanCollide = false
  3041. p12.FormFactor = Enum.FormFactor.Custom
  3042. p12.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  3043. p12.BottomSurface = Enum.SurfaceType.Smooth
  3044. p12.TopSurface = Enum.SurfaceType.Smooth
  3045. b12 = Instance.new("SpecialMesh", p12)
  3046. b12.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3047. b12.TextureId = ""
  3048. b12.MeshType = Enum.MeshType.FileMesh
  3049. b12.Name = "Mesh"
  3050. b12.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  3051. p13 = Instance.new("Part", m2)
  3052. p13.BrickColor = BrickColor.new("White")
  3053. p13.Material = Enum.Material.SmoothPlastic
  3054. p13.Reflectance = 0.30000001192093
  3055. 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)
  3056. p13.CanCollide = false
  3057. p13.FormFactor = Enum.FormFactor.Custom
  3058. p13.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  3059. p13.BottomSurface = Enum.SurfaceType.Smooth
  3060. p13.TopSurface = Enum.SurfaceType.Smooth
  3061. b13 = Instance.new("SpecialMesh", p13)
  3062. b13.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3063. b13.TextureId = ""
  3064. b13.MeshType = Enum.MeshType.FileMesh
  3065. b13.Name = "Mesh"
  3066. b13.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  3067. p14 = Instance.new("Part", m2)
  3068. p14.BrickColor = BrickColor.new("White")
  3069. p14.Material = Enum.Material.SmoothPlastic
  3070. p14.Reflectance = 0.30000001192093
  3071. 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)
  3072. p14.CanCollide = false
  3073. p14.FormFactor = Enum.FormFactor.Custom
  3074. p14.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  3075. p14.BottomSurface = Enum.SurfaceType.Smooth
  3076. p14.TopSurface = Enum.SurfaceType.Smooth
  3077. b14 = Instance.new("SpecialMesh", p14)
  3078. b14.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3079. b14.TextureId = ""
  3080. b14.MeshType = Enum.MeshType.FileMesh
  3081. b14.Name = "Mesh"
  3082. b14.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  3083. p15 = Instance.new("Part", m2)
  3084. p15.BrickColor = BrickColor.new("White")
  3085. p15.Material = Enum.Material.SmoothPlastic
  3086. p15.Reflectance = 0.30000001192093
  3087. 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)
  3088. p15.CanCollide = false
  3089. p15.FormFactor = Enum.FormFactor.Custom
  3090. p15.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  3091. p15.BottomSurface = Enum.SurfaceType.Smooth
  3092. p15.TopSurface = Enum.SurfaceType.Smooth
  3093. b15 = Instance.new("SpecialMesh", p15)
  3094. b15.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3095. b15.TextureId = ""
  3096. b15.MeshType = Enum.MeshType.FileMesh
  3097. b15.Name = "Mesh"
  3098. b15.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  3099. p16 = Instance.new("Part", m2)
  3100. p16.BrickColor = BrickColor.new("White")
  3101. p16.Material = Enum.Material.SmoothPlastic
  3102. p16.Reflectance = 0.30000001192093
  3103. 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)
  3104. p16.CanCollide = false
  3105. p16.FormFactor = Enum.FormFactor.Custom
  3106. p16.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  3107. p16.BottomSurface = Enum.SurfaceType.Smooth
  3108. p16.TopSurface = Enum.SurfaceType.Smooth
  3109. b16 = Instance.new("SpecialMesh", p16)
  3110. b16.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3111. b16.TextureId = ""
  3112. b16.MeshType = Enum.MeshType.FileMesh
  3113. b16.Name = "Mesh"
  3114. b16.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  3115. p17 = Instance.new("Part", m2)
  3116. p17.BrickColor = BrickColor.new("White")
  3117. p17.Material = Enum.Material.SmoothPlastic
  3118. p17.Reflectance = 0.30000001192093
  3119. 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)
  3120. p17.CanCollide = false
  3121. p17.FormFactor = Enum.FormFactor.Custom
  3122. p17.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  3123. p17.BottomSurface = Enum.SurfaceType.Smooth
  3124. p17.TopSurface = Enum.SurfaceType.Smooth
  3125. b17 = Instance.new("SpecialMesh", p17)
  3126. b17.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3127. b17.TextureId = ""
  3128. b17.MeshType = Enum.MeshType.FileMesh
  3129. b17.Name = "Mesh"
  3130. b17.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  3131. p18 = Instance.new("Part", m2)
  3132. p18.BrickColor = BrickColor.new("White")
  3133. p18.Material = Enum.Material.SmoothPlastic
  3134. p18.Reflectance = 0.30000001192093
  3135. 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)
  3136. p18.CanCollide = false
  3137. p18.FormFactor = Enum.FormFactor.Custom
  3138. p18.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  3139. p18.BottomSurface = Enum.SurfaceType.Smooth
  3140. p18.TopSurface = Enum.SurfaceType.Smooth
  3141. b18 = Instance.new("SpecialMesh", p18)
  3142. b18.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3143. b18.TextureId = ""
  3144. b18.MeshType = Enum.MeshType.FileMesh
  3145. b18.Name = "Mesh"
  3146. b18.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  3147. p19 = Instance.new("Part", m2)
  3148. p19.BrickColor = BrickColor.new("White")
  3149. p19.Material = Enum.Material.SmoothPlastic
  3150. p19.Reflectance = 0.30000001192093
  3151. 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)
  3152. p19.CanCollide = false
  3153. p19.FormFactor = Enum.FormFactor.Custom
  3154. p19.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  3155. p19.BottomSurface = Enum.SurfaceType.Smooth
  3156. p19.TopSurface = Enum.SurfaceType.Smooth
  3157. b19 = Instance.new("SpecialMesh", p19)
  3158. b19.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3159. b19.TextureId = ""
  3160. b19.MeshType = Enum.MeshType.FileMesh
  3161. b19.Name = "Mesh"
  3162. b19.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  3163. p20 = Instance.new("Part", m2)
  3164. p20.BrickColor = BrickColor.new("White")
  3165. p20.Material = Enum.Material.SmoothPlastic
  3166. p20.Reflectance = 0.30000001192093
  3167. 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)
  3168. p20.CanCollide = false
  3169. p20.FormFactor = Enum.FormFactor.Custom
  3170. p20.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  3171. p20.BottomSurface = Enum.SurfaceType.Smooth
  3172. p20.TopSurface = Enum.SurfaceType.Smooth
  3173. b20 = Instance.new("SpecialMesh", p20)
  3174. b20.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3175. b20.TextureId = ""
  3176. b20.MeshType = Enum.MeshType.FileMesh
  3177. b20.Name = "Mesh"
  3178. b20.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  3179. p21 = Instance.new("Part", m2)
  3180. p21.BrickColor = BrickColor.new("White")
  3181. p21.Material = Enum.Material.SmoothPlastic
  3182. p21.Reflectance = 0.30000001192093
  3183. 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)
  3184. p21.CanCollide = false
  3185. p21.FormFactor = Enum.FormFactor.Custom
  3186. p21.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  3187. p21.BottomSurface = Enum.SurfaceType.Smooth
  3188. p21.TopSurface = Enum.SurfaceType.Smooth
  3189. b21 = Instance.new("SpecialMesh", p21)
  3190. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3191. b21.TextureId = ""
  3192. b21.MeshType = Enum.MeshType.FileMesh
  3193. b21.Name = "Mesh"
  3194. b21.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  3195. p22 = Instance.new("Part", m2)
  3196. p22.BrickColor = BrickColor.new("White")
  3197. p22.Material = Enum.Material.SmoothPlastic
  3198. p22.Reflectance = 0.30000001192093
  3199. 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)
  3200. p22.CanCollide = false
  3201. p22.FormFactor = Enum.FormFactor.Custom
  3202. p22.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  3203. p22.BottomSurface = Enum.SurfaceType.Smooth
  3204. p22.TopSurface = Enum.SurfaceType.Smooth
  3205. b22 = Instance.new("SpecialMesh", p22)
  3206. b22.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3207. b22.TextureId = ""
  3208. b22.MeshType = Enum.MeshType.FileMesh
  3209. b22.Name = "Mesh"
  3210. b22.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  3211. p23 = Instance.new("Part", m2)
  3212. p23.BrickColor = BrickColor.new("White")
  3213. p23.Material = Enum.Material.SmoothPlastic
  3214. p23.Reflectance = 0.30000001192093
  3215. 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)
  3216. p23.CanCollide = false
  3217. p23.FormFactor = Enum.FormFactor.Custom
  3218. p23.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  3219. p23.BottomSurface = Enum.SurfaceType.Smooth
  3220. p23.TopSurface = Enum.SurfaceType.Smooth
  3221. b23 = Instance.new("SpecialMesh", p23)
  3222. b23.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3223. b23.TextureId = ""
  3224. b23.MeshType = Enum.MeshType.FileMesh
  3225. b23.Name = "Mesh"
  3226. b23.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  3227. p24 = Instance.new("Part", m2)
  3228. p24.BrickColor = BrickColor.new("White")
  3229. p24.Material = Enum.Material.SmoothPlastic
  3230. p24.Reflectance = 0.30000001192093
  3231. 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)
  3232. p24.CanCollide = false
  3233. p24.FormFactor = Enum.FormFactor.Custom
  3234. p24.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  3235. p24.BottomSurface = Enum.SurfaceType.Smooth
  3236. p24.TopSurface = Enum.SurfaceType.Smooth
  3237. b24 = Instance.new("SpecialMesh", p24)
  3238. b24.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3239. b24.TextureId = ""
  3240. b24.MeshType = Enum.MeshType.FileMesh
  3241. b24.Name = "Mesh"
  3242. b24.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  3243. p25 = Instance.new("Part", m2)
  3244. p25.BrickColor = BrickColor.new("White")
  3245. p25.Material = Enum.Material.SmoothPlastic
  3246. p25.Reflectance = 0.30000001192093
  3247. 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)
  3248. p25.CanCollide = false
  3249. p25.FormFactor = Enum.FormFactor.Custom
  3250. p25.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  3251. p25.BottomSurface = Enum.SurfaceType.Smooth
  3252. p25.TopSurface = Enum.SurfaceType.Smooth
  3253. b25 = Instance.new("SpecialMesh", p25)
  3254. b25.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3255. b25.TextureId = ""
  3256. b25.MeshType = Enum.MeshType.FileMesh
  3257. b25.Name = "Mesh"
  3258. b25.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  3259. p26 = Instance.new("Part", m2)
  3260. p26.BrickColor = BrickColor.new("White")
  3261. p26.Material = Enum.Material.SmoothPlastic
  3262. p26.Reflectance = 0.30000001192093
  3263. 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)
  3264. p26.CanCollide = false
  3265. p26.FormFactor = Enum.FormFactor.Custom
  3266. p26.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  3267. p26.BottomSurface = Enum.SurfaceType.Smooth
  3268. p26.TopSurface = Enum.SurfaceType.Smooth
  3269. b26 = Instance.new("SpecialMesh", p26)
  3270. b26.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3271. b26.TextureId = ""
  3272. b26.MeshType = Enum.MeshType.FileMesh
  3273. b26.Name = "Mesh"
  3274. b26.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  3275. p27 = Instance.new("Part", m2)
  3276. p27.BrickColor = BrickColor.new("White")
  3277. p27.Material = Enum.Material.SmoothPlastic
  3278. p27.Reflectance = 0.30000001192093
  3279. 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)
  3280. p27.CanCollide = false
  3281. p27.FormFactor = Enum.FormFactor.Custom
  3282. p27.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  3283. p27.BottomSurface = Enum.SurfaceType.Smooth
  3284. p27.TopSurface = Enum.SurfaceType.Smooth
  3285. b27 = Instance.new("SpecialMesh", p27)
  3286. b27.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3287. b27.TextureId = ""
  3288. b27.MeshType = Enum.MeshType.FileMesh
  3289. b27.Name = "Mesh"
  3290. b27.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  3291. p28 = Instance.new("Part", m2)
  3292. p28.BrickColor = BrickColor.new("White")
  3293. p28.Material = Enum.Material.SmoothPlastic
  3294. p28.Reflectance = 0.30000001192093
  3295. 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)
  3296. p28.CanCollide = false
  3297. p28.FormFactor = Enum.FormFactor.Custom
  3298. p28.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  3299. p28.BottomSurface = Enum.SurfaceType.Smooth
  3300. p28.TopSurface = Enum.SurfaceType.Smooth
  3301. b28 = Instance.new("SpecialMesh", p28)
  3302. b28.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3303. b28.TextureId = ""
  3304. b28.MeshType = Enum.MeshType.FileMesh
  3305. b28.Name = "Mesh"
  3306. b28.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  3307. p29 = Instance.new("Part", m2)
  3308. p29.BrickColor = BrickColor.new("White")
  3309. p29.Material = Enum.Material.Neon
  3310. 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)
  3311. p29.FormFactor = Enum.FormFactor.Custom
  3312. p29.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  3313. p29.BottomSurface = Enum.SurfaceType.Smooth
  3314. p29.TopSurface = Enum.SurfaceType.Smooth
  3315. b29 = Instance.new("SpecialMesh", p29)
  3316. b29.MeshType = Enum.MeshType.Sphere
  3317. b29.Name = "Mesh"
  3318. p30 = Instance.new("Part", m2)
  3319. p30.BrickColor = BrickColor.new("White")
  3320. p30.Material = Enum.Material.SmoothPlastic
  3321. p30.Reflectance = 0.30000001192093
  3322. 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)
  3323. p30.CanCollide = false
  3324. p30.FormFactor = Enum.FormFactor.Custom
  3325. p30.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  3326. p30.BottomSurface = Enum.SurfaceType.Smooth
  3327. p30.TopSurface = Enum.SurfaceType.Smooth
  3328. b30 = Instance.new("SpecialMesh", p30)
  3329. b30.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3330. b30.TextureId = ""
  3331. b30.MeshType = Enum.MeshType.FileMesh
  3332. b30.Name = "Mesh"
  3333. b30.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  3334. p31 = Instance.new("Part", m2)
  3335. p31.BrickColor = BrickColor.new("White")
  3336. p31.Material = Enum.Material.SmoothPlastic
  3337. p31.Reflectance = 0.30000001192093
  3338. 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)
  3339. p31.CanCollide = false
  3340. p31.FormFactor = Enum.FormFactor.Custom
  3341. p31.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  3342. p31.BottomSurface = Enum.SurfaceType.Smooth
  3343. p31.TopSurface = Enum.SurfaceType.Smooth
  3344. b31 = Instance.new("SpecialMesh", p31)
  3345. b31.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3346. b31.TextureId = ""
  3347. b31.MeshType = Enum.MeshType.FileMesh
  3348. b31.Name = "Mesh"
  3349. b31.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  3350. p32 = Instance.new("Part", m2)
  3351. p32.BrickColor = BrickColor.new("White")
  3352. p32.Material = Enum.Material.SmoothPlastic
  3353. p32.Reflectance = 0.30000001192093
  3354. 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)
  3355. p32.CanCollide = false
  3356. p32.FormFactor = Enum.FormFactor.Custom
  3357. p32.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  3358. p32.BottomSurface = Enum.SurfaceType.Smooth
  3359. p32.TopSurface = Enum.SurfaceType.Smooth
  3360. b32 = Instance.new("SpecialMesh", p32)
  3361. b32.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3362. b32.TextureId = ""
  3363. b32.MeshType = Enum.MeshType.FileMesh
  3364. b32.Name = "Mesh"
  3365. b32.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  3366. p33 = Instance.new("Part", m2)
  3367. p33.BrickColor = BrickColor.new("White")
  3368. p33.Material = Enum.Material.Neon
  3369. 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)
  3370. p33.FormFactor = Enum.FormFactor.Custom
  3371. p33.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  3372. p33.BottomSurface = Enum.SurfaceType.Smooth
  3373. p33.TopSurface = Enum.SurfaceType.Smooth
  3374. b33 = Instance.new("SpecialMesh", p33)
  3375. b33.MeshType = Enum.MeshType.Sphere
  3376. b33.Name = "Mesh"
  3377. p34 = Instance.new("Part", m2)
  3378. p34.BrickColor = BrickColor.new("White")
  3379. p34.Material = Enum.Material.SmoothPlastic
  3380. p34.Reflectance = 0.30000001192093
  3381. 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)
  3382. p34.CanCollide = false
  3383. p34.FormFactor = Enum.FormFactor.Custom
  3384. p34.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  3385. p34.BottomSurface = Enum.SurfaceType.Smooth
  3386. p34.TopSurface = Enum.SurfaceType.Smooth
  3387. b34 = Instance.new("SpecialMesh", p34)
  3388. b34.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3389. b34.TextureId = ""
  3390. b34.MeshType = Enum.MeshType.FileMesh
  3391. b34.Name = "Mesh"
  3392. b34.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  3393. p35 = Instance.new("Part", m2)
  3394. p35.BrickColor = BrickColor.new("White")
  3395. p35.Material = Enum.Material.SmoothPlastic
  3396. p35.Reflectance = 0.30000001192093
  3397. 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)
  3398. p35.CanCollide = false
  3399. p35.FormFactor = Enum.FormFactor.Custom
  3400. p35.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  3401. p35.BottomSurface = Enum.SurfaceType.Smooth
  3402. p35.TopSurface = Enum.SurfaceType.Smooth
  3403. b35 = Instance.new("SpecialMesh", p35)
  3404. b35.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3405. b35.TextureId = ""
  3406. b35.MeshType = Enum.MeshType.FileMesh
  3407. b35.Name = "Mesh"
  3408. b35.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  3409. p36 = Instance.new("Part", m2)
  3410. p36.BrickColor = BrickColor.new("White")
  3411. p36.Material = Enum.Material.SmoothPlastic
  3412. p36.Reflectance = 0.30000001192093
  3413. 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)
  3414. p36.CanCollide = false
  3415. p36.FormFactor = Enum.FormFactor.Custom
  3416. p36.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  3417. p36.BottomSurface = Enum.SurfaceType.Smooth
  3418. p36.TopSurface = Enum.SurfaceType.Smooth
  3419. b36 = Instance.new("SpecialMesh", p36)
  3420. b36.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3421. b36.TextureId = ""
  3422. b36.MeshType = Enum.MeshType.FileMesh
  3423. b36.Name = "Mesh"
  3424. b36.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  3425. p37 = Instance.new("Part", m2)
  3426. p37.BrickColor = BrickColor.new("White")
  3427. p37.Material = Enum.Material.Neon
  3428. 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)
  3429. p37.FormFactor = Enum.FormFactor.Custom
  3430. p37.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  3431. p37.BottomSurface = Enum.SurfaceType.Smooth
  3432. p37.TopSurface = Enum.SurfaceType.Smooth
  3433. b37 = Instance.new("SpecialMesh", p37)
  3434. b37.MeshType = Enum.MeshType.Sphere
  3435. b37.Name = "Mesh"
  3436. p38 = Instance.new("Part", m2)
  3437. p38.BrickColor = BrickColor.new("White")
  3438. p38.Material = Enum.Material.Neon
  3439. 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)
  3440. p38.FormFactor = Enum.FormFactor.Custom
  3441. p38.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918)
  3442. p38.BottomSurface = Enum.SurfaceType.Smooth
  3443. p38.TopSurface = Enum.SurfaceType.Smooth
  3444. b38 = Instance.new("SpecialMesh", p38)
  3445. b38.MeshType = Enum.MeshType.Sphere
  3446. b38.Name = "Mesh"
  3447. p39 = Instance.new("Part", m2)
  3448. p39.BrickColor = BrickColor.new("White")
  3449. p39.Material = Enum.Material.SmoothPlastic
  3450. p39.Reflectance = 0.30000001192093
  3451. 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)
  3452. p39.CanCollide = false
  3453. p39.FormFactor = Enum.FormFactor.Custom
  3454. p39.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  3455. p39.BottomSurface = Enum.SurfaceType.Smooth
  3456. p39.TopSurface = Enum.SurfaceType.Smooth
  3457. b39 = Instance.new("SpecialMesh", p39)
  3458. b39.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3459. b39.TextureId = ""
  3460. b39.MeshType = Enum.MeshType.FileMesh
  3461. b39.Name = "Mesh"
  3462. b39.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  3463. p40 = Instance.new("Part", m2)
  3464. p40.BrickColor = BrickColor.new("White")
  3465. p40.Material = Enum.Material.SmoothPlastic
  3466. p40.Reflectance = 0.30000001192093
  3467. 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)
  3468. p40.CanCollide = false
  3469. p40.FormFactor = Enum.FormFactor.Custom
  3470. p40.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  3471. p40.BottomSurface = Enum.SurfaceType.Smooth
  3472. p40.TopSurface = Enum.SurfaceType.Smooth
  3473. b40 = Instance.new("SpecialMesh", p40)
  3474. b40.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3475. b40.TextureId = ""
  3476. b40.MeshType = Enum.MeshType.FileMesh
  3477. b40.Name = "Mesh"
  3478. b40.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  3479. p41 = Instance.new("Part", m2)
  3480. p41.BrickColor = BrickColor.new("White")
  3481. p41.Material = Enum.Material.SmoothPlastic
  3482. p41.Reflectance = 0.30000001192093
  3483. 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)
  3484. p41.CanCollide = false
  3485. p41.FormFactor = Enum.FormFactor.Custom
  3486. p41.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  3487. p41.BottomSurface = Enum.SurfaceType.Smooth
  3488. p41.TopSurface = Enum.SurfaceType.Smooth
  3489. b41 = Instance.new("SpecialMesh", p41)
  3490. b41.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3491. b41.TextureId = ""
  3492. b41.MeshType = Enum.MeshType.FileMesh
  3493. b41.Name = "Mesh"
  3494. b41.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  3495. p42 = Instance.new("Part", m2)
  3496. p42.BrickColor = BrickColor.new("White")
  3497. p42.Material = Enum.Material.SmoothPlastic
  3498. p42.Reflectance = 0.30000001192093
  3499. 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)
  3500. p42.CanCollide = false
  3501. p42.FormFactor = Enum.FormFactor.Custom
  3502. p42.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  3503. p42.BottomSurface = Enum.SurfaceType.Smooth
  3504. p42.TopSurface = Enum.SurfaceType.Smooth
  3505. b42 = Instance.new("SpecialMesh", p42)
  3506. b42.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3507. b42.TextureId = ""
  3508. b42.MeshType = Enum.MeshType.FileMesh
  3509. b42.Name = "Mesh"
  3510. b42.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  3511. p43 = Instance.new("Part", m2)
  3512. p43.BrickColor = BrickColor.new("White")
  3513. p43.Material = Enum.Material.SmoothPlastic
  3514. p43.Reflectance = 0.30000001192093
  3515. 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)
  3516. p43.CanCollide = false
  3517. p43.FormFactor = Enum.FormFactor.Custom
  3518. p43.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  3519. p43.BottomSurface = Enum.SurfaceType.Smooth
  3520. p43.TopSurface = Enum.SurfaceType.Smooth
  3521. b43 = Instance.new("SpecialMesh", p43)
  3522. b43.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3523. b43.TextureId = ""
  3524. b43.MeshType = Enum.MeshType.FileMesh
  3525. b43.Name = "Mesh"
  3526. b43.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  3527. p44 = Instance.new("Part", m2)
  3528. p44.BrickColor = BrickColor.new("White")
  3529. p44.Material = Enum.Material.SmoothPlastic
  3530. p44.Reflectance = 0.30000001192093
  3531. 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)
  3532. p44.CanCollide = false
  3533. p44.FormFactor = Enum.FormFactor.Custom
  3534. p44.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  3535. p44.BottomSurface = Enum.SurfaceType.Smooth
  3536. p44.TopSurface = Enum.SurfaceType.Smooth
  3537. b44 = Instance.new("SpecialMesh", p44)
  3538. b44.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3539. b44.TextureId = ""
  3540. b44.MeshType = Enum.MeshType.FileMesh
  3541. b44.Name = "Mesh"
  3542. b44.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  3543. p45 = Instance.new("Part", m2)
  3544. p45.BrickColor = BrickColor.new("White")
  3545. p45.Material = Enum.Material.SmoothPlastic
  3546. p45.Reflectance = 0.30000001192093
  3547. 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)
  3548. p45.CanCollide = false
  3549. p45.FormFactor = Enum.FormFactor.Custom
  3550. p45.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  3551. p45.BottomSurface = Enum.SurfaceType.Smooth
  3552. p45.TopSurface = Enum.SurfaceType.Smooth
  3553. b45 = Instance.new("SpecialMesh", p45)
  3554. b45.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3555. b45.TextureId = ""
  3556. b45.MeshType = Enum.MeshType.FileMesh
  3557. b45.Name = "Mesh"
  3558. b45.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  3559. p46 = Instance.new("Part", m2)
  3560. p46.BrickColor = BrickColor.new("White")
  3561. p46.Material = Enum.Material.SmoothPlastic
  3562. p46.Reflectance = 0.30000001192093
  3563. 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)
  3564. p46.CanCollide = false
  3565. p46.FormFactor = Enum.FormFactor.Custom
  3566. p46.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  3567. p46.BottomSurface = Enum.SurfaceType.Smooth
  3568. p46.TopSurface = Enum.SurfaceType.Smooth
  3569. b46 = Instance.new("SpecialMesh", p46)
  3570. b46.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3571. b46.TextureId = ""
  3572. b46.MeshType = Enum.MeshType.FileMesh
  3573. b46.Name = "Mesh"
  3574. b46.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  3575. p47 = Instance.new("Part", m2)
  3576. p47.BrickColor = BrickColor.new("White")
  3577. p47.Material = Enum.Material.SmoothPlastic
  3578. p47.Reflectance = 0.30000001192093
  3579. 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)
  3580. p47.CanCollide = false
  3581. p47.FormFactor = Enum.FormFactor.Custom
  3582. p47.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  3583. p47.BottomSurface = Enum.SurfaceType.Smooth
  3584. p47.TopSurface = Enum.SurfaceType.Smooth
  3585. b47 = Instance.new("SpecialMesh", p47)
  3586. b47.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3587. b47.TextureId = ""
  3588. b47.MeshType = Enum.MeshType.FileMesh
  3589. b47.Name = "Mesh"
  3590. b47.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  3591. p48 = Instance.new("Part", m2)
  3592. p48.BrickColor = BrickColor.new("White")
  3593. p48.Material = Enum.Material.Neon
  3594. 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)
  3595. p48.FormFactor = Enum.FormFactor.Custom
  3596. p48.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  3597. p48.BottomSurface = Enum.SurfaceType.Smooth
  3598. p48.TopSurface = Enum.SurfaceType.Smooth
  3599. b48 = Instance.new("SpecialMesh", p48)
  3600. b48.MeshType = Enum.MeshType.Sphere
  3601. b48.Name = "Mesh"
  3602. p49 = Instance.new("Part", m2)
  3603. p49.BrickColor = BrickColor.new("White")
  3604. p49.Material = Enum.Material.SmoothPlastic
  3605. p49.Reflectance = 0.30000001192093
  3606. 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)
  3607. p49.CanCollide = false
  3608. p49.FormFactor = Enum.FormFactor.Custom
  3609. p49.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  3610. p49.BottomSurface = Enum.SurfaceType.Smooth
  3611. p49.TopSurface = Enum.SurfaceType.Smooth
  3612. b49 = Instance.new("SpecialMesh", p49)
  3613. b49.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3614. b49.TextureId = ""
  3615. b49.MeshType = Enum.MeshType.FileMesh
  3616. b49.Name = "Mesh"
  3617. b49.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  3618. p50 = Instance.new("Part", m2)
  3619. p50.BrickColor = BrickColor.new("White")
  3620. p50.Material = Enum.Material.SmoothPlastic
  3621. p50.Reflectance = 0.30000001192093
  3622. 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)
  3623. p50.CanCollide = false
  3624. p50.FormFactor = Enum.FormFactor.Custom
  3625. p50.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  3626. p50.BottomSurface = Enum.SurfaceType.Smooth
  3627. p50.TopSurface = Enum.SurfaceType.Smooth
  3628. b50 = Instance.new("SpecialMesh", p50)
  3629. b50.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3630. b50.TextureId = ""
  3631. b50.MeshType = Enum.MeshType.FileMesh
  3632. b50.Name = "Mesh"
  3633. b50.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  3634. p51 = Instance.new("Part", m2)
  3635. p51.BrickColor = BrickColor.new("White")
  3636. p51.Material = Enum.Material.SmoothPlastic
  3637. p51.Reflectance = 0.30000001192093
  3638. 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)
  3639. p51.CanCollide = false
  3640. p51.FormFactor = Enum.FormFactor.Custom
  3641. p51.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  3642. p51.BottomSurface = Enum.SurfaceType.Smooth
  3643. p51.TopSurface = Enum.SurfaceType.Smooth
  3644. b51 = Instance.new("SpecialMesh", p51)
  3645. b51.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3646. b51.TextureId = ""
  3647. b51.MeshType = Enum.MeshType.FileMesh
  3648. b51.Name = "Mesh"
  3649. b51.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  3650. p52 = Instance.new("Part", m2)
  3651. p52.BrickColor = BrickColor.new("White")
  3652. p52.Material = Enum.Material.Neon
  3653. 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)
  3654. p52.FormFactor = Enum.FormFactor.Custom
  3655. p52.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  3656. p52.BottomSurface = Enum.SurfaceType.Smooth
  3657. p52.TopSurface = Enum.SurfaceType.Smooth
  3658. b52 = Instance.new("SpecialMesh", p52)
  3659. b52.MeshType = Enum.MeshType.Sphere
  3660. b52.Name = "Mesh"
  3661. p53 = Instance.new("Part", m2)
  3662. p53.BrickColor = BrickColor.new("White")
  3663. p53.Material = Enum.Material.Neon
  3664. 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)
  3665. p53.FormFactor = Enum.FormFactor.Custom
  3666. p53.Size = Vector3.new(0.61060679, 7.32508755, 0.221234918)
  3667. p53.BottomSurface = Enum.SurfaceType.Smooth
  3668. p53.TopSurface = Enum.SurfaceType.Smooth
  3669. b53 = Instance.new("SpecialMesh", p53)
  3670. b53.MeshType = Enum.MeshType.Sphere
  3671. b53.Name = "Mesh"
  3672. p54 = Instance.new("Part", m2)
  3673. p54.BrickColor = BrickColor.new("White")
  3674. p54.Material = Enum.Material.Neon
  3675. 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)
  3676. p54.FormFactor = Enum.FormFactor.Custom
  3677. p54.Size = Vector3.new(0.61060679, 8.03632927, 0.221234918)
  3678. p54.BottomSurface = Enum.SurfaceType.Smooth
  3679. p54.TopSurface = Enum.SurfaceType.Smooth
  3680. b54 = Instance.new("SpecialMesh", p54)
  3681. b54.MeshType = Enum.MeshType.Sphere
  3682. b54.Name = "Mesh"
  3683. p55 = Instance.new("Part", m2)
  3684. p55.BrickColor = BrickColor.new("White")
  3685. p55.Material = Enum.Material.Neon
  3686. 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)
  3687. p55.FormFactor = Enum.FormFactor.Custom
  3688. p55.Size = Vector3.new(0.61060679, 3.09150696, 0.221234918)
  3689. p55.BottomSurface = Enum.SurfaceType.Smooth
  3690. p55.TopSurface = Enum.SurfaceType.Smooth
  3691. b55 = Instance.new("SpecialMesh", p55)
  3692. b55.MeshType = Enum.MeshType.Sphere
  3693. b55.Name = "Mesh"
  3694. p56 = Instance.new("Part", m2)
  3695. p56.BrickColor = BrickColor.new("White")
  3696. p56.Material = Enum.Material.SmoothPlastic
  3697. p56.Reflectance = 0.30000001192093
  3698. 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)
  3699. p56.CanCollide = false
  3700. p56.FormFactor = Enum.FormFactor.Custom
  3701. p56.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  3702. p56.BottomSurface = Enum.SurfaceType.Smooth
  3703. p56.TopSurface = Enum.SurfaceType.Smooth
  3704. b56 = Instance.new("SpecialMesh", p56)
  3705. b56.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3706. b56.TextureId = ""
  3707. b56.MeshType = Enum.MeshType.FileMesh
  3708. b56.Name = "Mesh"
  3709. b56.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  3710. p57 = Instance.new("Part", m2)
  3711. p57.BrickColor = BrickColor.new("White")
  3712. p57.Material = Enum.Material.SmoothPlastic
  3713. p57.Reflectance = 0.30000001192093
  3714. 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)
  3715. p57.CanCollide = false
  3716. p57.FormFactor = Enum.FormFactor.Custom
  3717. p57.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  3718. p57.BottomSurface = Enum.SurfaceType.Smooth
  3719. p57.TopSurface = Enum.SurfaceType.Smooth
  3720. b57 = Instance.new("SpecialMesh", p57)
  3721. b57.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3722. b57.TextureId = ""
  3723. b57.MeshType = Enum.MeshType.FileMesh
  3724. b57.Name = "Mesh"
  3725. b57.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  3726. p58 = Instance.new("Part", m2)
  3727. p58.BrickColor = BrickColor.new("White")
  3728. p58.Material = Enum.Material.SmoothPlastic
  3729. p58.Reflectance = 0.30000001192093
  3730. 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)
  3731. p58.CanCollide = false
  3732. p58.FormFactor = Enum.FormFactor.Custom
  3733. p58.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  3734. p58.BottomSurface = Enum.SurfaceType.Smooth
  3735. p58.TopSurface = Enum.SurfaceType.Smooth
  3736. b58 = Instance.new("SpecialMesh", p58)
  3737. b58.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3738. b58.TextureId = ""
  3739. b58.MeshType = Enum.MeshType.FileMesh
  3740. b58.Name = "Mesh"
  3741. b58.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  3742. p59 = Instance.new("Part", m2)
  3743. p59.BrickColor = BrickColor.new("White")
  3744. p59.Material = Enum.Material.SmoothPlastic
  3745. p59.Reflectance = 0.30000001192093
  3746. 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)
  3747. p59.CanCollide = false
  3748. p59.FormFactor = Enum.FormFactor.Custom
  3749. p59.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  3750. p59.BottomSurface = Enum.SurfaceType.Smooth
  3751. p59.TopSurface = Enum.SurfaceType.Smooth
  3752. b59 = Instance.new("SpecialMesh", p59)
  3753. b59.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3754. b59.TextureId = ""
  3755. b59.MeshType = Enum.MeshType.FileMesh
  3756. b59.Name = "Mesh"
  3757. b59.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  3758. p60 = Instance.new("Part", m2)
  3759. p60.BrickColor = BrickColor.new("White")
  3760. p60.Material = Enum.Material.SmoothPlastic
  3761. p60.Reflectance = 0.30000001192093
  3762. 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)
  3763. p60.CanCollide = false
  3764. p60.FormFactor = Enum.FormFactor.Custom
  3765. p60.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  3766. p60.BottomSurface = Enum.SurfaceType.Smooth
  3767. p60.TopSurface = Enum.SurfaceType.Smooth
  3768. b60 = Instance.new("SpecialMesh", p60)
  3769. b60.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3770. b60.TextureId = ""
  3771. b60.MeshType = Enum.MeshType.FileMesh
  3772. b60.Name = "Mesh"
  3773. b60.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  3774. p61 = Instance.new("Part", m2)
  3775. p61.BrickColor = BrickColor.new("White")
  3776. p61.Material = Enum.Material.SmoothPlastic
  3777. p61.Reflectance = 0.30000001192093
  3778. 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)
  3779. p61.CanCollide = false
  3780. p61.FormFactor = Enum.FormFactor.Custom
  3781. p61.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  3782. p61.BottomSurface = Enum.SurfaceType.Smooth
  3783. p61.TopSurface = Enum.SurfaceType.Smooth
  3784. b61 = Instance.new("SpecialMesh", p61)
  3785. b61.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3786. b61.TextureId = ""
  3787. b61.MeshType = Enum.MeshType.FileMesh
  3788. b61.Name = "Mesh"
  3789. b61.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  3790. p62 = Instance.new("Part", m2)
  3791. p62.BrickColor = BrickColor.new("White")
  3792. p62.Material = Enum.Material.SmoothPlastic
  3793. p62.Reflectance = 0.30000001192093
  3794. 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)
  3795. p62.CanCollide = false
  3796. p62.FormFactor = Enum.FormFactor.Custom
  3797. p62.Size = Vector3.new(0.584050655, 0.584051132, 0.584051371)
  3798. p62.BottomSurface = Enum.SurfaceType.Smooth
  3799. p62.TopSurface = Enum.SurfaceType.Smooth
  3800. b62 = Instance.new("SpecialMesh", p62)
  3801. b62.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3802. b62.TextureId = ""
  3803. b62.MeshType = Enum.MeshType.FileMesh
  3804. b62.Name = "Mesh"
  3805. b62.Scale = Vector3.new(0.283109009, 0.283109039, 0.283109665)
  3806. p63 = Instance.new("Part", m2)
  3807. p63.BrickColor = BrickColor.new("White")
  3808. p63.Material = Enum.Material.SmoothPlastic
  3809. p63.Reflectance = 0.30000001192093
  3810. 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)
  3811. p63.CanCollide = false
  3812. p63.FormFactor = Enum.FormFactor.Custom
  3813. p63.Size = Vector3.new(0.849326968, 0.849327147, 0.584051371)
  3814. p63.BottomSurface = Enum.SurfaceType.Smooth
  3815. p63.TopSurface = Enum.SurfaceType.Smooth
  3816. b63 = Instance.new("SpecialMesh", p63)
  3817. b63.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3818. b63.TextureId = ""
  3819. b63.MeshType = Enum.MeshType.FileMesh
  3820. b63.Name = "Mesh"
  3821. b63.Scale = Vector3.new(0.849326968, 0.849327147, 0.56621933)
  3822. p64 = Instance.new("Part", m2)
  3823. p64.BrickColor = BrickColor.new("White")
  3824. p64.Material = Enum.Material.SmoothPlastic
  3825. p64.Reflectance = 0.30000001192093
  3826. 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)
  3827. p64.CanCollide = false
  3828. p64.FormFactor = Enum.FormFactor.Custom
  3829. p64.Size = Vector3.new(0.585091829, 0.622839987, 0.584051371)
  3830. p64.BottomSurface = Enum.SurfaceType.Smooth
  3831. p64.TopSurface = Enum.SurfaceType.Smooth
  3832. b64 = Instance.new("SpecialMesh", p64)
  3833. b64.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3834. b64.TextureId = ""
  3835. b64.MeshType = Enum.MeshType.FileMesh
  3836. b64.Name = "Mesh"
  3837. b64.Scale = Vector3.new(0.585091829, 0.622839928, 0.301983595)
  3838. p65 = Instance.new("Part", m2)
  3839. p65.BrickColor = BrickColor.new("Really black")
  3840. p65.Transparency = 1
  3841. p65.Name = "TorsoPart"
  3842. 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)
  3843. p65.FormFactor = Enum.FormFactor.Symmetric
  3844. p65.Size = Vector3.new(4, 4, 2)
  3845. w1 = Instance.new("Weld", p1)
  3846. w1.Name = "Part_Weld"
  3847. w1.Part0 = p1
  3848. 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)
  3849. w1.Part1 = p2
  3850. 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)
  3851. w2 = Instance.new("Weld", p2)
  3852. w2.Name = "Part_Weld"
  3853. w2.Part0 = p2
  3854. 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)
  3855. w2.Part1 = p3
  3856. 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)
  3857. w3 = Instance.new("Weld", p3)
  3858. w3.Name = "Part_Weld"
  3859. w3.Part0 = p3
  3860. 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)
  3861. w3.Part1 = p4
  3862. 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)
  3863. w4 = Instance.new("Weld", p4)
  3864. w4.Name = "Part_Weld"
  3865. w4.Part0 = p4
  3866. 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)
  3867. w4.Part1 = p5
  3868. 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)
  3869. w5 = Instance.new("Weld", p5)
  3870. w5.Name = "Part_Weld"
  3871. w5.Part0 = p5
  3872. 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)
  3873. w5.Part1 = p6
  3874. 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)
  3875. w6 = Instance.new("Weld", p6)
  3876. w6.Name = "Part_Weld"
  3877. w6.Part0 = p6
  3878. 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)
  3879. w6.Part1 = p7
  3880. 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)
  3881. w7 = Instance.new("Weld", p7)
  3882. w7.Name = "Part_Weld"
  3883. w7.Part0 = p7
  3884. 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)
  3885. w7.Part1 = p8
  3886. 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)
  3887. w8 = Instance.new("Weld", p8)
  3888. w8.Name = "Part_Weld"
  3889. w8.Part0 = p8
  3890. 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)
  3891. w8.Part1 = p9
  3892. 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)
  3893. w9 = Instance.new("Weld", p9)
  3894. w9.Name = "Part_Weld"
  3895. w9.Part0 = p9
  3896. 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)
  3897. w9.Part1 = p10
  3898. 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)
  3899. w10 = Instance.new("Weld", p10)
  3900. w10.Name = "Part_Weld"
  3901. w10.Part0 = p10
  3902. 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)
  3903. w10.Part1 = p11
  3904. 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)
  3905. w11 = Instance.new("Weld", p11)
  3906. w11.Name = "Part_Weld"
  3907. w11.Part0 = p11
  3908. 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)
  3909. w11.Part1 = p12
  3910. 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)
  3911. w12 = Instance.new("Weld", p12)
  3912. w12.Name = "Part_Weld"
  3913. w12.Part0 = p12
  3914. 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)
  3915. w12.Part1 = p13
  3916. 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)
  3917. w13 = Instance.new("Weld", p13)
  3918. w13.Name = "Part_Weld"
  3919. w13.Part0 = p13
  3920. 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)
  3921. w13.Part1 = p14
  3922. 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)
  3923. w14 = Instance.new("Weld", p14)
  3924. w14.Name = "Part_Weld"
  3925. w14.Part0 = p14
  3926. 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)
  3927. w14.Part1 = p15
  3928. 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)
  3929. w15 = Instance.new("Weld", p15)
  3930. w15.Name = "Part_Weld"
  3931. w15.Part0 = p15
  3932. 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)
  3933. w15.Part1 = p16
  3934. 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)
  3935. w16 = Instance.new("Weld", p16)
  3936. w16.Name = "Part_Weld"
  3937. w16.Part0 = p16
  3938. 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)
  3939. w16.Part1 = p17
  3940. 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)
  3941. w17 = Instance.new("Weld", p17)
  3942. w17.Name = "Part_Weld"
  3943. w17.Part0 = p17
  3944. 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)
  3945. w17.Part1 = p18
  3946. 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)
  3947. w18 = Instance.new("Weld", p18)
  3948. w18.Name = "Part_Weld"
  3949. w18.Part0 = p18
  3950. 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)
  3951. w18.Part1 = p19
  3952. 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)
  3953. w19 = Instance.new("Weld", p19)
  3954. w19.Name = "Part_Weld"
  3955. w19.Part0 = p19
  3956. 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)
  3957. w19.Part1 = p20
  3958. 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)
  3959. w20 = Instance.new("Weld", p20)
  3960. w20.Name = "Part_Weld"
  3961. w20.Part0 = p20
  3962. 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)
  3963. w20.Part1 = p21
  3964. 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)
  3965. w21 = Instance.new("Weld", p21)
  3966. w21.Name = "Part_Weld"
  3967. w21.Part0 = p21
  3968. 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)
  3969. w21.Part1 = p22
  3970. 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)
  3971. w22 = Instance.new("Weld", p22)
  3972. w22.Name = "Part_Weld"
  3973. w22.Part0 = p22
  3974. 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)
  3975. w22.Part1 = p23
  3976. 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)
  3977. w23 = Instance.new("Weld", p23)
  3978. w23.Name = "Part_Weld"
  3979. w23.Part0 = p23
  3980. 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)
  3981. w23.Part1 = p24
  3982. 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)
  3983. w24 = Instance.new("Weld", p24)
  3984. w24.Name = "Part_Weld"
  3985. w24.Part0 = p24
  3986. 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)
  3987. w24.Part1 = p25
  3988. 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)
  3989. w25 = Instance.new("Weld", p25)
  3990. w25.Name = "Part_Weld"
  3991. w25.Part0 = p25
  3992. 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)
  3993. w25.Part1 = p26
  3994. 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)
  3995. w26 = Instance.new("Weld", p26)
  3996. w26.Name = "Part_Weld"
  3997. w26.Part0 = p26
  3998. 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)
  3999. w26.Part1 = p27
  4000. 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)
  4001. w27 = Instance.new("Weld", p27)
  4002. w27.Name = "Part_Weld"
  4003. w27.Part0 = p27
  4004. 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)
  4005. w27.Part1 = p28
  4006. 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)
  4007. w28 = Instance.new("Weld", p28)
  4008. w28.Name = "Part_Weld"
  4009. w28.Part0 = p28
  4010. 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)
  4011. w28.Part1 = p29
  4012. 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)
  4013. w29 = Instance.new("Weld", p29)
  4014. w29.Name = "Part_Weld"
  4015. w29.Part0 = p29
  4016. 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)
  4017. w29.Part1 = p30
  4018. 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)
  4019. w30 = Instance.new("Weld", p30)
  4020. w30.Name = "Part_Weld"
  4021. w30.Part0 = p30
  4022. 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)
  4023. w30.Part1 = p31
  4024. 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)
  4025. w31 = Instance.new("Weld", p31)
  4026. w31.Name = "Part_Weld"
  4027. w31.Part0 = p31
  4028. 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)
  4029. w31.Part1 = p32
  4030. 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)
  4031. w32 = Instance.new("Weld", p32)
  4032. w32.Name = "Part_Weld"
  4033. w32.Part0 = p32
  4034. 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)
  4035. w32.Part1 = p33
  4036. 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)
  4037. w33 = Instance.new("Weld", p33)
  4038. w33.Name = "Part_Weld"
  4039. w33.Part0 = p33
  4040. 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)
  4041. w33.Part1 = p34
  4042. 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)
  4043. w34 = Instance.new("Weld", p34)
  4044. w34.Name = "Part_Weld"
  4045. w34.Part0 = p34
  4046. 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)
  4047. w34.Part1 = p35
  4048. 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)
  4049. w35 = Instance.new("Weld", p35)
  4050. w35.Name = "Part_Weld"
  4051. w35.Part0 = p35
  4052. 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)
  4053. w35.Part1 = p36
  4054. 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)
  4055. w36 = Instance.new("Weld", p36)
  4056. w36.Name = "Part_Weld"
  4057. w36.Part0 = p36
  4058. 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)
  4059. w36.Part1 = p37
  4060. 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)
  4061. w37 = Instance.new("Weld", p37)
  4062. w37.Name = "Part_Weld"
  4063. w37.Part0 = p37
  4064. 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)
  4065. w37.Part1 = p38
  4066. 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)
  4067. w38 = Instance.new("Weld", p38)
  4068. w38.Name = "Part_Weld"
  4069. w38.Part0 = p38
  4070. 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)
  4071. w38.Part1 = p39
  4072. 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)
  4073. w39 = Instance.new("Weld", p39)
  4074. w39.Name = "Part_Weld"
  4075. w39.Part0 = p39
  4076. 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)
  4077. w39.Part1 = p40
  4078. 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)
  4079. w40 = Instance.new("Weld", p40)
  4080. w40.Name = "Part_Weld"
  4081. w40.Part0 = p40
  4082. 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)
  4083. w40.Part1 = p41
  4084. 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)
  4085. w41 = Instance.new("Weld", p41)
  4086. w41.Name = "Part_Weld"
  4087. w41.Part0 = p41
  4088. 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)
  4089. w41.Part1 = p42
  4090. 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)
  4091. w42 = Instance.new("Weld", p42)
  4092. w42.Name = "Part_Weld"
  4093. w42.Part0 = p42
  4094. 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)
  4095. w42.Part1 = p43
  4096. 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)
  4097. w43 = Instance.new("Weld", p43)
  4098. w43.Name = "Part_Weld"
  4099. w43.Part0 = p43
  4100. 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)
  4101. w43.Part1 = p44
  4102. 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)
  4103. w44 = Instance.new("Weld", p44)
  4104. w44.Name = "Part_Weld"
  4105. w44.Part0 = p44
  4106. 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)
  4107. w44.Part1 = p45
  4108. 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)
  4109. w45 = Instance.new("Weld", p45)
  4110. w45.Name = "Part_Weld"
  4111. w45.Part0 = p45
  4112. 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)
  4113. w45.Part1 = p46
  4114. 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)
  4115. w46 = Instance.new("Weld", p46)
  4116. w46.Name = "Part_Weld"
  4117. w46.Part0 = p46
  4118. 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)
  4119. w46.Part1 = p47
  4120. 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)
  4121. w47 = Instance.new("Weld", p47)
  4122. w47.Name = "Part_Weld"
  4123. w47.Part0 = p47
  4124. 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)
  4125. w47.Part1 = p48
  4126. 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)
  4127. w48 = Instance.new("Weld", p48)
  4128. w48.Name = "Part_Weld"
  4129. w48.Part0 = p48
  4130. 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)
  4131. w48.Part1 = p49
  4132. 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)
  4133. w49 = Instance.new("Weld", p49)
  4134. w49.Name = "Part_Weld"
  4135. w49.Part0 = p49
  4136. 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)
  4137. w49.Part1 = p50
  4138. 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)
  4139. w50 = Instance.new("Weld", p50)
  4140. w50.Name = "Part_Weld"
  4141. w50.Part0 = p50
  4142. 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)
  4143. w50.Part1 = p51
  4144. 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)
  4145. w51 = Instance.new("Weld", p51)
  4146. w51.Name = "Part_Weld"
  4147. w51.Part0 = p51
  4148. 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)
  4149. w51.Part1 = p52
  4150. 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)
  4151. w52 = Instance.new("Weld", p52)
  4152. w52.Name = "Part_Weld"
  4153. w52.Part0 = p52
  4154. 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)
  4155. w52.Part1 = p53
  4156. 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)
  4157. w53 = Instance.new("Weld", p53)
  4158. w53.Name = "Part_Weld"
  4159. w53.Part0 = p53
  4160. 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)
  4161. w53.Part1 = p54
  4162. 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)
  4163. w54 = Instance.new("Weld", p54)
  4164. w54.Name = "Part_Weld"
  4165. w54.Part0 = p54
  4166. 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)
  4167. w54.Part1 = p55
  4168. 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)
  4169. w55 = Instance.new("Weld", p55)
  4170. w55.Name = "Part_Weld"
  4171. w55.Part0 = p55
  4172. 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)
  4173. w55.Part1 = p56
  4174. 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)
  4175. w56 = Instance.new("Weld", p56)
  4176. w56.Name = "Part_Weld"
  4177. w56.Part0 = p56
  4178. 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)
  4179. w56.Part1 = p57
  4180. 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)
  4181. w57 = Instance.new("Weld", p57)
  4182. w57.Name = "Part_Weld"
  4183. w57.Part0 = p57
  4184. 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)
  4185. w57.Part1 = p58
  4186. 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)
  4187. w58 = Instance.new("Weld", p58)
  4188. w58.Name = "Part_Weld"
  4189. w58.Part0 = p58
  4190. 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)
  4191. w58.Part1 = p59
  4192. 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)
  4193. w59 = Instance.new("Weld", p59)
  4194. w59.Name = "Part_Weld"
  4195. w59.Part0 = p59
  4196. 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)
  4197. w59.Part1 = p60
  4198. 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)
  4199. w60 = Instance.new("Weld", p60)
  4200. w60.Name = "Part_Weld"
  4201. w60.Part0 = p60
  4202. 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)
  4203. w60.Part1 = p61
  4204. 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)
  4205. w61 = Instance.new("Weld", p61)
  4206. w61.Name = "Part_Weld"
  4207. w61.Part0 = p61
  4208. 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)
  4209. w61.Part1 = p62
  4210. 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)
  4211. w62 = Instance.new("Weld", p62)
  4212. w62.Name = "Part_Weld"
  4213. w62.Part0 = p62
  4214. 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)
  4215. w62.Part1 = p63
  4216. 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)
  4217. w63 = Instance.new("Weld", p63)
  4218. w63.Name = "Part_Weld"
  4219. w63.Part0 = p63
  4220. 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)
  4221. w63.Part1 = p64
  4222. 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)
  4223. w64 = Instance.new("Weld", p64)
  4224. w64.Name = "TorsoPart_Weld"
  4225. w64.Part0 = p64
  4226. 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)
  4227. w64.Part1 = p65
  4228. w64.C1 = CFrame.new(-27.0399971, -25.1251144, -25.3600025, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4229. m2.Parent = char
  4230. m2:MakeJoints()
  4231. --------------------------------------------------------------------------------
  4232. local cor2 = Instance.new("Part", char.Wings)
  4233. cor2.Name = "Thingy"
  4234. cor2.Locked = true
  4235. cor2.BottomSurface = 0
  4236. cor2.CanCollide = false
  4237. cor2.Size = Vector3.new(0.2, 0.2, 0.2)
  4238. cor2.Transparency = 1
  4239. cor2.TopSurface = 0
  4240. corw2 = Instance.new("Weld", cor2)
  4241. corw2.Part0 = torso
  4242. corw2.Part1 = cor2
  4243. corw2.C0 = CFrame.new(0, 0.7, 0.8) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0))
  4244. corw2.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  4245. weld2 = Instance.new("Weld", char.Wings)
  4246. weld2.Part0 = cor2
  4247. weld2.Part1 = char.Wings.TorsoPart
  4248. weld2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  4249. wait(0.1)
  4250. hum.WalkSpeed = 29
  4251. game.Lighting.Ambient = Color3.new(-1,-1,-1)
  4252. c = script:Clone()
  4253. c.Parent = game.Lighting
  4254. s = Instance.new("Sky")
  4255. s.Name = "Dark Sky"
  4256. s.SkyboxBk = "http://www.roblox.com/asset/?id=13943307"
  4257. s.SkyboxDn = "http://www.roblox.com/asset/?id=13943307"
  4258. s.SkyboxFt = "http://www.roblox.com/asset/?id=13943307"
  4259. s.SkyboxLf = "http://www.roblox.com/asset/?id=13943307"
  4260. s.SkyboxRt = "http://www.roblox.com/asset/?id=13943307"
  4261. s.SkyboxUp = "http://www.roblox.com/asset/?id=13943307"
  4262. s.Parent = game.Lighting
  4263. wait(0.1)
  4264. game.Lighting.Ambient = Color3.new(255,255,255)
  4265. c = script:Clone()
  4266. c.Parent = game.Lighting
  4267. s = Instance.new("Sky")
  4268. s.Name = "White Sky"
  4269. s.SkyboxBk = "http://www.roblox.com/asset/?id=10742015"
  4270. s.SkyboxDn = "http://www.roblox.com/asset/?id=10742015"
  4271. s.SkyboxFt = "http://www.roblox.com/asset/?id=10742015"
  4272. s.SkyboxLf = "http://www.roblox.com/asset/?id=10742015"
  4273. s.SkyboxRt = "http://www.roblox.com/asset/?id=10742015"
  4274. s.SkyboxUp = "http://www.roblox.com/asset/?id=10742015"
  4275. s.Parent = game.Lighting
  4276. wait(0.1)
  4277. game.Lighting.Ambient = Color3.new(-1,-1,-1)
  4278. c = script:Clone()
  4279. c.Parent = game.Lighting
  4280. s = Instance.new("Sky")
  4281. s.Name = "Dark Sky"
  4282. s.SkyboxBk = "http://www.roblox.com/asset/?id=13943307"
  4283. s.SkyboxDn = "http://www.roblox.com/asset/?id=13943307"
  4284. s.SkyboxFt = "http://www.roblox.com/asset/?id=13943307"
  4285. s.SkyboxLf = "http://www.roblox.com/asset/?id=13943307"
  4286. s.SkyboxRt = "http://www.roblox.com/asset/?id=13943307"
  4287. s.SkyboxUp = "http://www.roblox.com/asset/?id=13943307"
  4288. s.Parent = game.Lighting
  4289. wait(0.1)
  4290. game.Lighting.Ambient = Color3.new(255,255,255)
  4291. c = script:Clone()
  4292. c.Parent = game.Lighting
  4293. s = Instance.new("Sky")
  4294. s.Name = "White Sky"
  4295. s.SkyboxBk = "http://www.roblox.com/asset/?id=10742015"
  4296. s.SkyboxDn = "http://www.roblox.com/asset/?id=10742015"
  4297. s.SkyboxFt = "http://www.roblox.com/asset/?id=10742015"
  4298. s.SkyboxLf = "http://www.roblox.com/asset/?id=10742015"
  4299. s.SkyboxRt = "http://www.roblox.com/asset/?id=10742015"
  4300. s.SkyboxUp = "http://www.roblox.com/asset/?id=10742015"
  4301. s.Parent = game.Lighting
  4302. wait(0.1)
  4303. game.Lighting.Ambient = Color3.new(-1,-1,-1)
  4304. c = script:Clone()
  4305. c.Parent = game.Lighting
  4306. s = Instance.new("Sky")
  4307. s.Name = "Dark Sky"
  4308. s.SkyboxBk = "http://www.roblox.com/asset/?id=13943307"
  4309. s.SkyboxDn = "http://www.roblox.com/asset/?id=13943307"
  4310. s.SkyboxFt = "http://www.roblox.com/asset/?id=13943307"
  4311. s.SkyboxLf = "http://www.roblox.com/asset/?id=13943307"
  4312. s.SkyboxRt = "http://www.roblox.com/asset/?id=13943307"
  4313. s.SkyboxUp = "http://www.roblox.com/asset/?id=13943307"
  4314. s.Parent = game.Lighting
  4315. wait(0.1)
  4316. game.Lighting.Ambient = Color3.new(255,255,255)
  4317. c = script:Clone()
  4318. c.Parent = game.Lighting
  4319. s = Instance.new("Sky")
  4320. s.Name = "White Sky"
  4321. s.SkyboxBk = "http://www.roblox.com/asset/?id=10742015"
  4322. s.SkyboxDn = "http://www.roblox.com/asset/?id=10742015"
  4323. s.SkyboxFt = "http://www.roblox.com/asset/?id=10742015"
  4324. s.SkyboxLf = "http://www.roblox.com/asset/?id=10742015"
  4325. s.SkyboxRt = "http://www.roblox.com/asset/?id=10742015"
  4326. s.SkyboxUp = "http://www.roblox.com/asset/?id=10742015"
  4327. s.Parent = game.Lighting
  4328. wait(0.1)
  4329. game.Lighting.Ambient = Color3.new(1,1,1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement