Guest User

Untitled

a guest
Jul 25th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 73.75 KB | None | 0 0
  1. ---------------------------
  2. local MaxMana = 5000000 -- Max Mana You Can Get
  3. local Mana = 5000000 -- Mana You Start With
  4. local ManaGain = 40000 -- How Much Mana You Gain Per Second
  5. ---------------------------
  6. repeat game:GetService('RunService').Stepped:wait() until game:GetService('Players').LocalPlayer.Character
  7. ----190470714
  8. ----
  9. sit = true
  10. cn = CFrame.new
  11. v3 = Vector3.new
  12. c3 = Color3.new
  13. bn = BrickColor.new
  14. ca2 = CFrame.Angles
  15. ca = function(x,y,z) return ca2(math.rad(x),math.rad(y),math.rad(z)) end
  16. ud2 = UDim2.new
  17. ----
  18. ----
  19. local Player = game:GetService('Players').LocalPlayer
  20. local Char = Player.Character
  21. local Human = Char.Humanoid
  22. local Mouse = Player:GetMouse()
  23.  
  24. ----
  25. Human.WalkSpeed = 0
  26. print ('Loading...')
  27. wait(0)
  28. ----
  29. ----
  30. local mananum=0
  31. la = Char['Left Arm']
  32. ra = Char['Right Arm']
  33. ll = Char['Left Leg']
  34. rl = Char['Right Leg']
  35. tr = Char['Torso']
  36. hd = Char['Head']
  37. rp = Char['HumanoidRootPart']
  38. ----
  39. ----
  40. ram = tr['Right Shoulder']
  41. lam = tr['Left Shoulder']
  42. llm = tr['Left Hip']
  43. rlm = tr['Right Hip']
  44. hm = tr['Neck']
  45. rj = rp['RootJoint']
  46. ----
  47. ----
  48. InputService = game:GetService('UserInputService')
  49. RunService = game:GetService('RunService')
  50. ----
  51. ----
  52. it=Instance.new
  53. Torso=Char.Torso
  54. local fengui=it("GuiMain")
  55. fengui.Parent=Player.PlayerGui
  56. fengui.Name="WeaponGUI"
  57. local fenframe=it("Frame")
  58. fenframe.Parent=fengui
  59. fenframe.BackgroundColor3=Color3.new(255,255,255)
  60. fenframe.BackgroundTransparency=1
  61. fenframe.BorderColor3=Color3.new(17,17,17)
  62. fenframe.Size=UDim2.new(0.0500000007, 0, 0.100000001, 0)
  63. fenframe.Position=UDim2.new(0.4,0,0.1,0)
  64. local fenbarmana1=it("TextLabel")
  65. fenbarmana1.Parent=fenframe
  66. fenbarmana1.Text=" "
  67. fenbarmana1.BackgroundTransparency=0
  68. fenbarmana1.BackgroundColor3=Color3.new(0,0,0)
  69. fenbarmana1.SizeConstraint="RelativeXY"
  70. fenbarmana1.TextXAlignment="Center"
  71. fenbarmana1.TextYAlignment="Center"
  72. fenbarmana1.Position=UDim2.new(0,0,0,0)
  73. fenbarmana1.Size=UDim2.new(4,0,0.2,0)
  74. local fenbarmana2=it("TextLabel")
  75. fenbarmana2.Parent=fenframe
  76. fenbarmana2.Text=" "
  77. fenbarmana2.BackgroundTransparency=0
  78. fenbarmana2.BackgroundColor3=Torso.Color
  79. fenbarmana2.SizeConstraint="RelativeXY"
  80. fenbarmana2.TextXAlignment="Center"
  81. fenbarmana2.TextYAlignment="Center"
  82. fenbarmana2.Position=UDim2.new(0,0,0,0)
  83. fenbarmana2.Size=UDim2.new(4*Mana/MaxMana,0,0.2,0)
  84. local fenbarmana3=it("TextLabel")
  85. fenbarmana3.Parent=fenframe
  86. fenbarmana3.Text=" "
  87. fenbarmana3.BackgroundTransparency=0
  88. fenbarmana3.BackgroundColor3=Color3.new(Col1,Col2,Col3)
  89. fenbarmana3.SizeConstraint="RelativeXY"
  90. fenbarmana3.TextXAlignment="Center"
  91. fenbarmana3.TextYAlignment="Center"
  92. fenbarmana3.Position=UDim2.new(0,0,0,0)
  93. fenbarmana3.Size=UDim2.new(0,0,0.2,0)
  94. local fenbarmana4=it("TextLabel")
  95. fenbarmana4.Parent=fenframe
  96. fenbarmana4.Text="Energy("..Mana..")"
  97. fenbarmana4.BackgroundTransparency=1
  98. fenbarmana4.BackgroundColor3=Color3.new(0,0,0)
  99. fenbarmana4.SizeConstraint="RelativeXY"
  100. fenbarmana4.TextXAlignment="Center"
  101. fenbarmana4.TextYAlignment="Center"
  102. fenbarmana4.Position=UDim2.new(0,0,-0.3,0)
  103. fenbarmana4.Size=UDim2.new(4,0,0.2,0)
  104. fenbarmana4.FontSize="Size9"
  105. fenbarmana4.TextStrokeTransparency=0
  106. fenbarmana4.TextColor=BrickColor.new("White")
  107.  
  108. LastMade = nil
  109.  
  110. xNew=function(Table)
  111. local Obj=Instance.new(Table[1])
  112. for Ind,Val in pairs(Table) do
  113. if Ind~=1 and Ind~=2 then
  114. Obj[Ind] = Val
  115. end
  116. end
  117. Obj.Parent=Table[2]
  118. LastMade= Obj
  119. return Obj
  120. end
  121.  
  122. xPart=function(tab)
  123. local v=Instance.new(tab.type or "Part")
  124. if tab.type~="CornerWedgePart" then v.formFactor="Custom" end
  125. v.CanCollide=false
  126. v.TopSurface=10 v.BottomSurface=10 v.RightSurface=10 v.LeftSurface=10 v.FrontSurface=10 v.BackSurface=10
  127. v.Size=v3(tab[2],tab[3],tab[4])
  128. if tab.co then v.BrickColor=bn(tab.co) end
  129. if tab.tr then v.Transparency=tab.tr end
  130. if tab.rf then v.Reflectance=tab.rf end
  131. if tab.cf then v.CFrame=tab.cf end
  132. if tab.an then v.Anchored=tab.an end
  133. if tab.mt then v.Material=tab.mt end
  134. if tab.ca then v.CanCollide=tab.ca end
  135. v.Parent=tab[1]
  136. LastMade= v
  137. return v
  138. end
  139.  
  140. xWeld = function(a,b,between,type)
  141. local Weld = xNew{type or 'Weld',a,Part0 = a,Part1 = b, C0 = cn()}
  142. if between then
  143. Weld.C1 = b.CFrame:inverse() * a.CFrame
  144. else
  145. Weld.C1 = cn()
  146. end
  147. return Weld
  148. end
  149.  
  150. function xSound(id,parent,pitch)
  151. local s = xNew{'Sound', PlayOnRemove = true, SoundId = 'http://roblox.com/asset/?id='..id,Pitch = pitch}
  152. s.Parent = parent
  153. s:Destroy()
  154. if id == 400832473 then
  155. s.Looped = true
  156. s.Name = "Music"
  157. end
  158. end
  159.  
  160. ----
  161. xSound(190470714,workspace,1.5)
  162. ----
  163. do local function QuaternionFromCFrame(cf) local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components() local trace = m00 + m11 + m22 if trace > 0 then local s = math.sqrt(1 + trace) local recip = 0.5/s return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5 else local i = 0 if m11 > m00 then i = 1 end if m22 > (i == 0 and m00 or m11) then i = 2 end if i == 0 then local s = math.sqrt(m00-m11-m22+1) local recip = 0.5/s return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip elseif i == 1 then local s = math.sqrt(m11-m22-m00+1) local recip = 0.5/s return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip elseif i == 2 then local s = math.sqrt(m22-m00-m11+1) local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip end end end local function QuaternionToCFrame(px, py, pz, x, y, z, w) local xs, ys, zs = x + x, y + y, z + z local wx, wy, wz = w*xs, w*ys, w*zs local xx = x*xs local xy = x*ys local xz = x*zs local yy = y*ys local yz = y*zs local zz = z*zs return CFrame.new(px, py, pz,1-(yy+zz), xy - wz, xz + wy,xy + wz, 1-(xx+zz), yz - wx, xz - wy, yz + wx, 1-(xx+yy)) end local function QuaternionSlerp(a, b, t) local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4] local startInterp, finishInterp; if cosTheta >= 0.0001 then if (1 - cosTheta) > 0.0001 then local theta = math.acos(cosTheta) local invSinTheta = 1/math.sin(theta) startInterp = math.sin((1-t)*theta)*invSinTheta finishInterp = math.sin(t*theta)*invSinTheta else startInterp = 1-t finishInterp = t end else if (1+cosTheta) > 0.0001 then local theta = math.acos(-cosTheta) local invSinTheta = 1/math.sin(theta) startInterp = math.sin((t-1)*theta)*invSinTheta finishInterp = math.sin(t*theta)*invSinTheta else startInterp = t-1 finishInterp = t end end return a[1]*startInterp + b[1]*finishInterp, a[2]*startInterp + b[2]*finishInterp, a[3]*startInterp + b[3]*finishInterp, a[4]*startInterp + b[4]*finishInterp end function clerp(a,b,t) local qa = {QuaternionFromCFrame(a)} local qb = {QuaternionFromCFrame(b)} local ax, ay, az = a.x, a.y, a.z local bx, by, bz = b.x, b.y, b.z local _t = 1-t return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t)) end end
  164. function xlerp(weld,to,tim)
  165. if weld.C1 ~= to then
  166. --weld.C1 = clerp(weld.C1,to,tim)
  167. weld.C1 = weld.C1:lerp(to,tim)
  168. end
  169. end
  170. function lerp(a,b,c)return a+(b-a)*c end
  171. ----
  172. ----
  173. if Char:findFirstChild("Health") then
  174. Char.Health:Destroy()
  175. end
  176. wait(0)
  177. ----
  178. --hd.Mesh.Scale = Vector3.new(hd.Mesh.Scale.X * 3,hd.Mesh.Scale.Y * 3,hd.Mesh.Scale.Z * 3)
  179. ra.Size = ra.Size * 4.5
  180. la.Size = la.Size * 4.5
  181. ll.Size = ll.Size * 4.5
  182. rl.Size = rl.Size * 4.5
  183. tr.Size = tr.Size * 4.5
  184. hd.Size = hd.Size * 4.5
  185. rp.Size = rp.Size * 4.5
  186. --
  187. local tw = xWeld(rp,tr)
  188. tw.C1 = cn(0,0,0)
  189. local law = xWeld(tr,la)
  190. law.C0 = cn(-6.5,.7,0)
  191. law.C1 = cn(0,.7,0)
  192. local raw = xWeld(tr,ra)
  193. raw.C0 = cn(6.5,.7,0)
  194. raw.C1 = cn(0,.7,0)
  195. local llw = xWeld(tr,ll)
  196. llw.C0 = cn(-2.5,-6,0)
  197. llw.C1 = cn(0,3.5,0)
  198. local rlw = xWeld(tr,rl)
  199. rlw.C0 = cn(2.5,-6,0)
  200. rlw.C1 = cn(0,3.5,0)
  201. local hw = xWeld(tr,hd)
  202. hw.C1 = cn(0,-6.5,0)
  203. ras = raw.C1
  204. las = law.C1
  205. lls = llw.C1
  206. rls = rlw.C1
  207. ts = tw.C1
  208. hs = hw.C1
  209. -----
  210. for _,Part in pairs(Char:GetChildren()) do
  211. if Part:IsA('BasePart') then
  212. Part.CustomPhysicalProperties = PhysicalProperties.new(0, .3, .5)
  213. end
  214. end
  215. --------------------------------------------------------
  216. --------------------------------------------------------
  217. -----------------------CONSTANTS------------------------
  218. --------------------------------------------------------
  219. --------------------------------------------------------
  220. REGEN_SPEED = 5
  221. WEAPON_NAME = 'Grandark'
  222. ----------------------------------------------------
  223. ----------------------------------------------------
  224. -----------------------MODEL------------------------
  225. ----------------------------------------------------
  226. ----------------------------------------------------
  227. local Handle
  228. local Blade
  229. local haw
  230. Pack = Instance.new('Model', Char)
  231. Pack.Name = WEAPON_NAME
  232. do
  233. Handle = xPart{Pack,0.54285717, 4.96428585, 1.02857149} Handle.BrickColor = BrickColor.new('Light orange') Handle.Material = Enum.Material.Plastic; haw = xWeld(ra,Handle); LastMade.C1 = ca(90,0,180)*cn(0,3,0) LastMade.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  234.  
  235. end
  236. has = haw.C1
  237.  
  238. for _,v in pairs(Pack:GetChildren()) do
  239. v.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0)
  240. end
  241. --------------------------------------------------------
  242. --------------------------------------------------------
  243. -----------------------VARIABLES------------------------
  244. --------------------------------------------------------
  245. --------------------------------------------------------
  246. State = 'Idle'
  247. FallTime = 0
  248. Walk = 0
  249. WalkReverse = false
  250. StompDB = false
  251. JumpDB = false
  252. --
  253. function NewHitbox(Radius,Position)
  254. local Returning = {}
  255. for _,v in pairs(workspace:GetChildren()) do
  256. if v~=Char and v:FindFirstChild('Humanoid') and v:FindFirstChild('Torso') then
  257. local Mag = (v.Torso.Position - Position).magnitude
  258. if Mag < Radius then
  259. table.insert(Returning,v)
  260. end
  261. end
  262. end
  263. return Returning
  264. end
  265. --
  266. function UpdateState()
  267. if (rp.Velocity*v3(1, 0, 1)).magnitude > 5 then
  268. if State == 'Idle' then State = 'Walking' end
  269. else
  270. if State == 'Walking' then State = 'Idle'; end
  271. end
  272. if WalkReverse then
  273. Walk = Walk - .5
  274. else
  275. Walk = Walk + .5
  276. end
  277. if Walk >= 10 then
  278. WalkReverse = true
  279. elseif Walk <= -10 then
  280. WalkReverse = false
  281. end
  282. end
  283. --
  284. function JumpExplode()
  285. local Hit = NewHitbox(35,Char.Torso.Position)
  286. for _,v in pairs(Hit) do
  287. v.Humanoid.MaxHealth = 100
  288. v.Humanoid.Health = v.Humanoid.Health - 1000000000
  289. if sit then
  290. v.Humanoid.Sit = true
  291. end
  292. end
  293. xSound('2233908',tr,1)
  294. coroutine.wrap(function()
  295. local Explosion = xNew{'Part',Char,Anchored = true,CanCollide = false,FormFactor = 'Custom',BrickColor = bn('Earth green')}
  296. local Mesh = xNew{'SpecialMesh', Explosion,MeshType = 'FileMesh', MeshId = 'http://www.roblox.com/asset/?id=20329976'}
  297. Explosion.CFrame = Char.Torso.CFrame * cn(0,-20,0)
  298. Mesh.Scale = v3(1,7,1)
  299. repeat
  300. Mesh.Scale = Mesh.Scale + v3(1,0,1)
  301. Explosion.Transparency = Explosion.Transparency + .025
  302. wait()
  303. until Explosion.Transparency >= 1
  304. Explosion:Destroy()
  305. end)()
  306. end
  307. --
  308. function Stomp()
  309. if State == 'Walking' or State == 'Idle' then
  310. if StompDB == false then
  311. StompDB = true
  312. State = 'Attacking'
  313. Human.WalkSpeed = 0
  314. --
  315. xSound('138186576',Char.Head,1)
  316. for _=0,1,.05 do
  317. xlerp(tw,ts,.2)
  318. xlerp(hw,hs*ca(40,0,0)*cn(0,-1,-1.5),.2)
  319. xlerp(rlw,rls*ca(20,0,0),.2)
  320. xlerp(llw,lls*cn(0,-2,1.25),.2)
  321. xlerp(raw,ras*ca(20,0,-20)*cn(-.5,-.5,0),.2)
  322. xlerp(law,las*ca(20,0,0),.2)
  323. wait()
  324. end
  325. coroutine.wrap(function()
  326. local Explosion = xNew{'Part',Char,Anchored = true,CanCollide = false,FormFactor = 'Custom',BrickColor = bn('Earth green')}
  327. local Mesh = xNew{'SpecialMesh', Explosion,MeshType = 'FileMesh', MeshId = 'http://www.roblox.com/asset/?id=3270017'}
  328. Explosion.CFrame = rp.CFrame * cn(0,-7,0)*ca(90,0,0)
  329. Mesh.Scale = v3(5,5,10)
  330. repeat
  331. Mesh.Scale = Mesh.Scale + v3(2,2,.5)
  332. Explosion.Transparency = Explosion.Transparency + .01
  333. wait()
  334. until Explosion.Transparency >= 1
  335. Explosion:Destroy()
  336. end)()
  337. coroutine.wrap(function()
  338. local Already = {}
  339. for i=1,50,2 do
  340. wait(.1)
  341. local Hit = NewHitbox(i*2,Char.Torso.Position)
  342. for _,v in pairs(Hit) do
  343. if not Already[v] then
  344. v.Humanoid.MaxHealth = 100
  345. v.Humanoid.Health = v.Humanoid.Health - 300000000000
  346. if sit then
  347. v.Humanoid.Sit = true
  348. end
  349. Already[v] = true
  350. end
  351. end
  352. end
  353. end)()
  354. --attack
  355. for _=0,1,.05 do
  356. xlerp(tw,ts,.3)
  357. xlerp(hw,hs*ca(40,0,0)*cn(0,-1,-1.5),.3)
  358. xlerp(rlw,rls*ca(20,0,0),.3)
  359. xlerp(llw,lls*cn(0,0,1.25),.3)
  360. xlerp(raw,ras*ca(20,0,-20)*cn(-.5,-.5,0),.3)
  361. xlerp(law,las*ca(20,0,0),.3)
  362. wait()
  363. end
  364. State = 'Idle'
  365. Human.WalkSpeed = 50
  366. coroutine.wrap(function()
  367. wait(0)
  368. StompDB = false
  369. end)()
  370. end
  371. end
  372. end
  373. --
  374. function Charge()
  375. if State == 'Walking' or State == 'Idle' then
  376. State = 'Charge'
  377. for _, controller in pairs(game:GetService("ControllerService"):GetChildren()) do
  378. controller.Parent = workspace
  379. end
  380. local function Exp()
  381. local Explosion = xNew{'Part',Char,Anchored = true,CanCollide = false,FormFactor = 'Custom',BrickColor = bn('White')}
  382. local Mesh = xNew{'SpecialMesh', Explosion,MeshType = 'FileMesh', MeshId = 'http://www.roblox.com/asset/?id=20329976'}
  383. Explosion.CFrame = rp.CFrame * cn(0,0,-15)*ca(70,0,0)
  384. Mesh.Scale = v3(1,6,1)
  385. repeat
  386. Char.Head.Velocity=Char.Head.CFrame.lookVector*100
  387. Mesh.Scale = Mesh.Scale + v3(1,.5,1)
  388. Explosion.Transparency = Explosion.Transparency + .05
  389. wait()
  390. until Explosion.Transparency >= 1
  391. Explosion:Destroy()
  392. end
  393. coroutine.wrap(function()
  394. wait(0)
  395. Human.WalkSpeed = 80
  396. Char.Head.Velocity=Char.Head.CFrame.lookVector*200
  397. for _=1, 10 do
  398. coroutine.wrap(Exp)()
  399. local Hit = NewHitbox(10,Char.Torso.Position)
  400. for _,v in pairs(Hit) do
  401. v.Humanoid.MaxHealth = 100
  402. v.Humanoid.Health = v.Humanoid.Health - 100000000000
  403. end
  404. wait(0)
  405. xSound('10730819',tr,.8)
  406. Char.Head.Velocity=Char.Head.CFrame.lookVector*100
  407. end
  408. Human.WalkSpeed = 50
  409. State = 'Idle'
  410. end)()
  411. --
  412. for _=0,1,.05 do
  413. Char.Head.Velocity=Char.Head.CFrame.lookVector*100
  414. xlerp(tw,ts*ca(0,-90,0),.4)
  415. xlerp(hw,hs*ca(0,90,0),.4)
  416. xlerp(raw,ras*ca(-90,0,-90)*cn(0,-1,0),.4)
  417. xlerp(law,las*ca(0,0,40)*cn(1,-.5,0),.4)
  418. xlerp(rlw,rls*ca(0,0,10)*cn(1,0,0),.4)
  419. xlerp(llw,lls*ca(0,0,10)*cn(1,0,0),.4)
  420. wait()
  421. end
  422. --
  423. end
  424. end
  425. function Combo()
  426. if State == 'Idle' or State == 'Walking' then
  427. State = 'Attacking'
  428. Human.WalkSpeed = 3
  429. for _=0,1,.2 do
  430. xlerp(tw,ts*ca(0,20,0),.4)
  431. xlerp(hw,hs*ca(0,30,0),.4)
  432. xlerp(raw,ras*ca(0,180,-90)*cn(-1,-1,0),.4)
  433. xlerp(law,las*ca(0,0,40)*cn(1,-.5,0),.4)
  434. xlerp(rlw,rls*ca(20,0,0)*cn(0,0,-1),.4)
  435. xlerp(llw,lls*cn(0,0,1.25),.4)
  436. wait()
  437. end
  438. local Already = {}
  439. xSound('231731980',tr,1.3)
  440. for _=0,1,.1 do
  441. xlerp(tw,ts*ca(0,-30,0),.4)
  442. xlerp(hw,hs*ca(0,-50,0),.4)
  443. xlerp(raw,ras*ca(160,180,-130)*cn(2,-1,1),.4)
  444. xlerp(law,las*ca(0,0,40)*cn(1,-.5,0),.4)
  445. xlerp(rlw,rls*ca(20,0,0)*cn(0,0,-1),.4)
  446. xlerp(llw,lls*cn(0,0,1.25),.4)
  447. xlerp(haw,has*ca(40,0,0),.4)
  448. wait()
  449. local Hit = NewHitbox(15,(Blade.CFrame).p)
  450. for _,v in pairs(Hit) do
  451. if not Already[v] then
  452. v.Humanoid.MaxHealth = 100
  453. v.Humanoid.Health = v.Humanoid.Health - 300000000000
  454. Already[v] = true
  455. end
  456. end
  457. end
  458. ----Combo2
  459. for _=0,1,.2 do
  460. xlerp(tw,ts*ca(0,-35,0),.4)
  461. xlerp(haw,has,.4)
  462. xlerp(hw,hs*ca(0,-30,0),.4)
  463. xlerp(raw,ras*ca(-120,0,-70)*cn(1,-1,0),.4)
  464. xlerp(law,las*ca(0,0,40)*cn(1,-.5,0),.4)
  465. xlerp(rlw,rls*ca(20,0,0)*cn(0,0,-1),.4)
  466. xlerp(llw,lls*cn(0,0,1.25),.4)
  467. wait()
  468. end
  469. xSound('231731980',tr,1)
  470. local Already = {}
  471. for _=0,1,.1 do
  472. xlerp(tw,ts*ca(0,20,0),.4)
  473. xlerp(hw,hs*ca(0,30,0),.4)
  474. xlerp(raw,ras*ca(30,0,-90)*cn(0,-1,0),.4)
  475. xlerp(law,las*ca(0,0,40)*cn(1,-.5,0),.4)
  476. xlerp(rlw,rls*ca(20,0,0)*cn(0,0,-1),.4)
  477. xlerp(llw,lls*cn(0,0,1.25),.4)
  478. wait()
  479. local Hit = NewHitbox(15,(Blade.CFrame).p)
  480. for _,v in pairs(Hit) do
  481. if not Already[v] then
  482. v.Humanoid.MaxHealth = 100
  483. v.Humanoid.Health = v.Humanoid.Health - 3000000000000
  484. Already[v] = true
  485. end
  486. end
  487. end
  488. --Combo 3
  489. for _=0,1,.1 do
  490. xlerp(tw,ts,.3)
  491. xlerp(hw,hs,.3)
  492. xlerp(haw,has,.3)
  493. xlerp(raw,ras*ca(-140,0,0)*cn(0,-1.5,0),.3)
  494. xlerp(law,las*ca(0,0,40)*cn(1,-.5,0),.3)
  495. xlerp(rlw,rls*ca(20,0,0)*cn(0,0,-1),.3)
  496. xlerp(llw,lls*cn(0,0,1.25),.4)
  497. wait()
  498. end
  499. xSound('231731980',tr,.8)
  500. local Already = {}
  501. for _=0,1,.1 do
  502. xlerp(tw,ts*ca(15,0,0)*cn(0,1.5,0),.4)
  503. xlerp(hw,hs,.4)
  504. xlerp(raw,ras*ca(-20,0,0)*cn(0,0,0),.4)
  505. xlerp(law,las*ca(0,0,40)*cn(1,-.5,0),.4)
  506. xlerp(haw,has*ca(20,0,0),.4)
  507. wait()
  508. local Hit = NewHitbox(10,(Blade.CFrame).p)
  509. for _,v in pairs(Hit) do
  510. if not Already[v] then
  511. v.Humanoid.MaxHealth = 100
  512. v.Humanoid.Health = v.Humanoid.Health - 300000000000
  513. Already[v] = true
  514. end
  515. end
  516. end
  517. wait(.2)
  518. State = 'Idle'
  519. Human.WalkSpeed = 50
  520. end
  521. end
  522. --
  523. function SwordSlam()
  524. if State == 'Walking' or State == 'Idle' then
  525. State = 'Attacking'
  526. Human.WalkSpeed = 0
  527. for _=0,1,.05 do
  528. xlerp(tw,ts,.2)
  529. xlerp(hw,hs,.2)
  530. xlerp(raw,ras*ca(-140,0,0)*cn(0,-1.5,0),.2)
  531. xlerp(law,las*ca(0,0,40)*cn(1,-.5,0),.2)
  532. xlerp(rlw,rls*ca(20,0,0)*cn(0,0,-1),.2)
  533. xlerp(llw,lls*cn(0,0,1.25),.2)
  534. wait()
  535. end
  536. coroutine.wrap(function()
  537. wait()
  538. xSound('10730819',tr,.5)
  539. local Explosion = xNew{'Part',Char,Anchored = true,CanCollide = false,FormFactor = 'Custom',BrickColor = bn('dsasda')}
  540. local Mesh = xNew{'SpecialMesh', Explosion,MeshType = 'FileMesh', MeshId = 'http://www.roblox.com/asset/?id=20329976'}
  541. Explosion.CFrame = rp.CFrame * cn(0,-5,-20)
  542. Mesh.Scale = v3(1,5,1)
  543. repeat
  544. Mesh.Scale = Mesh.Scale + v3(1,1,1)
  545. Explosion.Transparency = Explosion.Transparency + .025
  546. wait()
  547. until Explosion.Transparency >= 1
  548. Explosion:Destroy()
  549. end)()
  550. for _=0,1,.15 do
  551. xlerp(tw,ts*ca(15,0,0)*cn(0,1.5,0),.4)
  552. xlerp(hw,hs,.4)
  553. xlerp(raw,ras*ca(-20,0,0)*cn(0,0,0),.4)
  554. xlerp(law,las*ca(0,0,40)*cn(1,-.5,0),.4)
  555. xlerp(haw,has*ca(20,0,0),.4)
  556. wait()
  557. end
  558. local Hit = NewHitbox(40,(rp.CFrame * cn(0,-5,-20)).p)
  559. for _,v in pairs(Hit) do
  560. v.Humanoid.MaxHealth = 100
  561. v.Humanoid.Health = v.Humanoid.Health - 100000000000
  562. if sit then
  563. v.Humanoid.Sit = true
  564. end
  565. end
  566. wait(0)
  567. State = 'Idle'
  568. Human.WalkSpeed = 50
  569. end
  570. end
  571. --
  572. CanBoom = true
  573. function Fire(Part)
  574. local Flame = Instance.new("ParticleEmitter",Part)
  575. Flame.LightEmission = 0.21
  576. Flame.Size = NumberSequence.new(15)
  577. Flame.Texture = "http://www.roblox.com/asset/?id=343377229"
  578. Flame.Transparency = NumberSequence.new(0.5)
  579. Flame.LockedToPart = true
  580. Flame.Lifetime = NumberRange.new(0.1,0.8)
  581. Flame.Rate = 40
  582. Flame.VelocitySpread = 2
  583. end
  584. Mouse.KeyDown:connect(function(key)
  585. if key == ' ' then
  586. if State == 'Walking' or State == 'Idle' then
  587. if JumpDB == false then
  588. JumpDB = true
  589. State = 'Jumping'
  590. Human.Jump = true
  591. Human.WalkSpeed = 50
  592. wait(0)
  593. State = 'Falling'
  594. coroutine.wrap(function()
  595. wait(0)
  596. JumpDB = false
  597. end)()
  598. end
  599. end
  600. elseif key == 'z' and Mana >= 400 then
  601. Mana = Mana-400
  602. Combo()
  603. elseif key == 'x' and Mana >= 300 then
  604. Mana = Mana-300
  605. Charge()
  606. elseif key == 'c' and Mana >= 250 then
  607. Mana = Mana-250
  608. SwordSlam()
  609. elseif key == 'v' and Mana >= 100 then
  610. Mana = Mana-100
  611. Stomp()
  612. elseif key == "p" and Mana >= 1000 then
  613. Mana = Mana-1000
  614. Stomp()
  615. wait()
  616. SwordSlam()
  617. wait()
  618. Combo()
  619. wait()
  620. Combo()
  621. elseif key == "f" and Mana >= 800 and CanBoom then
  622. Mana = Mana - 800
  623. CanBoom = false
  624. local P = Instance.new("Part",Char)
  625. P.Name = "Boom"
  626. P.Anchored = true
  627. P.Transparency = 1
  628. Fire(P)
  629. P.Material = "Neon"
  630. P.BrickColor = BrickColor.new("Crimson")
  631. P.TopSurface = "Smooth"
  632. P.CFrame = Torso.CFrame
  633. P.CanCollide = false
  634. xSound(400832473,workspace,0.9)
  635. function Hit(hit)
  636. if hit.Parent and hit.Parent:findFirstChild("Humanoid") then
  637. if hit.Parent:findFirstChild("Torso") and hit.Parent.Name ~= Player.Character.Name and hit.Parent:findFirstChild("Flamed") == nil then
  638. local Z = Instance.new("StringValue",hit.Parent)
  639. Z.Name = "Flamed"
  640. local Torsoo = hit.Parent:findFirstChild("Torso")
  641. Torsoo.Anchored = true
  642. for i,v in pairs(hit.Parent:GetChildren()) do
  643. Fire(v)
  644. end
  645. if hit.Parent:findFirstChild("Humanoid") then
  646. local H = hit.Parent:findFirstChild("Humanoid")
  647. H.MaxHealth = math.huge
  648. H.WalkSpeed = 0
  649. H.JumpPower = 0
  650. wait()
  651. Torsoo.Anchored = false
  652. H:remove()
  653. if hit.Parent then
  654. hit.Parent:BreakJoints()
  655. end
  656. end
  657. end
  658. end
  659. end
  660. P.Touched:connect(Hit)
  661. for i=1,100 do
  662. wait(0.1)
  663. P.CFrame = Torso.CFrame
  664. P.Size = Vector3.new(P.Size.X + 0.5,P.Size.Y + 0.5,P.Size.Z + 0.5)
  665. P.CFrame = Torso.CFrame
  666. end
  667. P:remove()
  668. wait(0)
  669. CanBoom = true
  670.  
  671. end
  672. end)
  673. --
  674. Human.Changed:connect(function()
  675. if State ~= 'Jumping' then
  676. Human.Jump = false
  677. end
  678. end)
  679.  
  680. Human.FreeFalling:connect(function(a)
  681. if a then
  682. if State == 'Walking' or State == 'Idle' then
  683. State = 'Falling'
  684. end
  685. elseif State == 'Jumping' or State == 'Falling' then
  686. State = 'Idle'
  687. if FallTime > 10 then
  688. print('Boom!')
  689. JumpExplode()
  690. end
  691. Human.WalkSpeed = 50
  692. FallTime = 0
  693. end
  694. end)
  695. --
  696. wait(0)
  697. game:GetService('RunService').RenderStepped:connect(function()
  698. UpdateState()
  699. if State == 'Jumping' or State == 'Falling' then
  700. FallTime = FallTime + .1
  701. xlerp(tw,ts,.3)
  702. xlerp(hw,hs*ca(40,0,0)*cn(0,-1,-1.5),.2)
  703. xlerp(raw,ras*ca(0,0,-90)*cn(-1,-1,0),.2)
  704. xlerp(law,las*ca(0,0,90)*cn(1,-1,0),.2)
  705. xlerp(rlw,rls*ca(20,0,0),.2)
  706. xlerp(llw,lls*cn(0,-.5,1.25),.2)
  707. elseif State == 'Idle' then
  708. xlerp(tw,ts*ca(0,25,0),.1)
  709. xlerp(hw,hs*ca(0,-25,0),.1)
  710. xlerp(raw,ras*ca(20,0,-20)*cn(-.5,-.5,0),.1)
  711. xlerp(law,las*ca(20,0,0),.1)
  712. xlerp(rlw,rls*ca(20,0,0)*cn(0,0,-1),.1)
  713. xlerp(llw,lls*cn(0,0,1.25),.1)
  714. xlerp(haw,has,.4)
  715. elseif State == 'Walking' then
  716. xlerp(tw,ts,.15)
  717. xlerp(hw,hs,.15)
  718. --xlerp(law,las*ca(30,0,0),.3)
  719. --xlerp(raw,ras*ca(20,0,-40)*cn(-1,-.5,0),.15)
  720. xlerp(raw,ras*ca(20,0,-20)*cn(-.5,-.5,0),.1)
  721. xlerp(law,las*ca(20,0,0),.1)
  722. if WalkReverse then
  723. xlerp(rlw,rls*ca(30,0,0)*cn(0,-1,-1.5),.05)
  724. xlerp(llw,lls*ca(-30,0,0)*cn(0,-1,1.5),.05)
  725. else
  726. xlerp(rlw,rls*ca(-30,0,0)*cn(0,-1,1.5),.05)
  727. xlerp(llw,lls*ca(30,0,0)*cn(0,-1,-1.5),.05)
  728. end
  729. end
  730. fenbarmana2:TweenSize(UDim2.new(4*Mana/MaxMana,0,0.2,0),nil,1,0.4,true)
  731. fenbarmana4.Text="[Mana]-> [-> "..Mana.." <-] <-[Mana]"
  732. if Mana>=MaxMana then
  733. Mana=MaxMana
  734. else
  735. if mananum<=8 then
  736. mananum=mananum+1
  737. else
  738. mananum=0
  739. Mana=Mana+ManaGain
  740. Char.Humanoid.Health = Char.Humanoid.Health + 1000
  741. end
  742. end
  743. if Mana <= MaxMana/2 then
  744. fenbarmana2.BackgroundColor = BrickColor.new("Bright red")
  745. Char.Humanoid.MaxHealth = 40000
  746. Human.Health = Human.MaxHealth
  747. else
  748. fenbarmana2.BackgroundColor = BrickColor.new("Royal purple")
  749. Char.Humanoid.MaxHealth = 50000
  750. Human.Health = Human.MaxHealth
  751. end
  752. end)
  753. --
  754. Char.Humanoid.WalkSpeed = 50
  755. Char.Humanoid.JumpPower = 190
  756.  
  757. Human.Health = Human.MaxHealth
  758.  
  759. ---------------------------------------------------------------ExtraMorphing-------------
  760. ----------------------------------------------------------------------------------------
  761.  
  762. Create = function(itemClass,tabl)
  763. local item = Instance.new(itemClass)
  764. for i,v in pairs(tabl) do
  765. local a,b = ypcall(function() return item[i] end)
  766. if a then
  767. item[i] = tabl[i]
  768. end
  769. end
  770. return item
  771. end
  772. function runDummyScript(f,scri)
  773. local oldenv = getfenv(f)
  774. local newenv = setmetatable({}, {
  775. __index = function(_, k)
  776. if k:lower() == 'script' then
  777. return scri
  778. else
  779. return oldenv[k]
  780. end
  781. end
  782. })
  783. setfenv(f, newenv)
  784. ypcall(function() f() end)
  785. end
  786. cors = {}
  787. mas = Instance.new("Model",game:GetService("Lighting"))
  788. mas.Name = "CompiledModel"
  789. o1 = Create("Model",{
  790. ["Name"] = "BETA",
  791. ["Parent"] = mas,
  792. })
  793. o2 = Create("Model",{
  794. ["Name"] = "Chest",
  795. ["Parent"] = o1,
  796. })
  797. o3 = Create("Part",{
  798. ["Name"] = "Middle",
  799. ["Parent"] = o2,
  800. ["Material"] = Enum.Material.Granite,
  801. ["BrickColor"] = BrickColor.new("Light orange"),
  802. ["Position"] = Vector3.new(3923.3938, -4665.64014, -10.7899675),
  803. ["Rotation"] = Vector3.new(-0, -90, 0),
  804. ["Anchored"] = true,
  805. ["CFrame"] = CFrame.new(3923.3938, -4665.64014, -10.7899675, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  806. ["CanCollide"] = false,
  807. ["Locked"] = true,
  808. ["FormFactor"] = Enum.FormFactor.Symmetric,
  809. ["Size"] = Vector3.new(9.28780556, 9.28781509, 4.6439023),
  810. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  811. ["TopSurface"] = Enum.SurfaceType.Smooth,
  812. })
  813. o4 = Create("ParticleEmitter",{
  814. ["Parent"] = o3,
  815. ["Size"] = NumberSequence.new(1,0.9375,1.7500001192093,0.87499976158142,2.8749995231628,1.25,2.0625,1.1874997615814,2.9375,1.3124996423721,2.8749995231628,5.6875),
  816. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  817. ["Lifetime"] = NumberRange.new(1,1),
  818. ["Rate"] = 40,
  819. ["RotSpeed"] = NumberRange.new(30,30),
  820. ["Speed"] = NumberRange.new(0,0),
  821. })
  822. o5 = Create("ParticleEmitter",{
  823. ["Parent"] = o3,
  824. ["Transparency"] = NumberSequence.new(0,0.85000002384186,0.375,0.13749998807907,0.58124995231628,0.018750011920929,0.11874997615814,0.14999997615814,0.58749997615814,0.125,0.83749997615814,0.050000011920929,0.94999998807907,0.25),
  825. ["Size"] = NumberSequence.new(1.5644174814224,1.8124997615814,2.7499997615814,1.4999997615814,1.8124997615814,2.6875,1.875,4.25),
  826. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  827. ["Lifetime"] = NumberRange.new(2,2),
  828. ["Rate"] = 30,
  829. ["RotSpeed"] = NumberRange.new(400,400),
  830. ["Speed"] = NumberRange.new(3,3),
  831. })
  832. o6 = Create("Part",{
  833. ["Name"] = "Bluesteel Bathelm",
  834. ["Parent"] = o2,
  835. ["Material"] = Enum.Material.Concrete,
  836. ["BrickColor"] = BrickColor.new("Light orange"),
  837. ["Position"] = Vector3.new(3923.3938, -4657.74463, -10.8262482),
  838. ["Rotation"] = Vector3.new(-0, -90, 0),
  839. ["Anchored"] = true,
  840. ["CFrame"] = CFrame.new(3923.3938, -4657.74463, -10.8262482, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  841. ["CanCollide"] = false,
  842. ["Locked"] = true,
  843. ["FormFactor"] = Enum.FormFactor.Symmetric,
  844. ["Size"] = Vector3.new(5.19318867, 3.9473207, 3.94731259),
  845. ["TopSurface"] = Enum.SurfaceType.Smooth,
  846. })
  847. o7 = Create("ParticleEmitter",{
  848. ["Parent"] = o6,
  849. ["Size"] = NumberSequence.new(1,0.9375,1.7500001192093,0.87499976158142,2.8749995231628,1.25,2.0625,1.1874997615814,2.9375,1.3124996423721,2.8749995231628,5.6875),
  850. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  851. ["Lifetime"] = NumberRange.new(1,1),
  852. ["Rate"] = 40,
  853. ["RotSpeed"] = NumberRange.new(30,30),
  854. ["Speed"] = NumberRange.new(0,0),
  855. })
  856. o8 = Create("ParticleEmitter",{
  857. ["Parent"] = o6,
  858. ["Transparency"] = NumberSequence.new(0,0.85000002384186,0.375,0.13749998807907,0.58124995231628,0.018750011920929,0.11874997615814,0.14999997615814,0.58749997615814,0.125,0.83749997615814,0.050000011920929,0.94999998807907,0.25),
  859. ["Size"] = NumberSequence.new(1.5644174814224,1.8124997615814,2.7499997615814,1.4999997615814,1.8124997615814,2.6875,1.875,4.25),
  860. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  861. ["Lifetime"] = NumberRange.new(2,2),
  862. ["Rate"] = 30,
  863. ["RotSpeed"] = NumberRange.new(400,400),
  864. ["Speed"] = NumberRange.new(3,3),
  865. })
  866. o9 = Create("SpecialMesh",{
  867. ["Parent"] = o6,
  868. ["MeshId"] = "http://www.roblox.com/asset/?id=16150814",
  869. ["Scale"] = Vector3.new(5.18085146, 5.18085623, 5.18084764),
  870. ["TextureId"] = "http://www.roblox.com/asset/?id=343377229",
  871. ["MeshType"] = Enum.MeshType.FileMesh,
  872. })
  873. o10 = Create("Part",{
  874. ["Parent"] = o2,
  875. ["BrickColor"] = BrickColor.new("Light orange"),
  876. ["Transparency"] = 1,
  877. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  878. ["Rotation"] = Vector3.new(79.0394669, 8.73715496, 16.0058537),
  879. ["Anchored"] = true,
  880. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, 0.950079143, -0.272535861, 0.151901796, 0.195775941, 0.141641304, -0.970365703, 0.242943838, 0.951662958, 0.187926412),
  881. ["CanCollide"] = false,
  882. ["Locked"] = true,
  883. ["Size"] = Vector3.new(4, 1, 2),
  884. })
  885. o11 = Create("ParticleEmitter",{
  886. ["Parent"] = o10,
  887. ["Size"] = NumberSequence.new(2.5,2.5),
  888. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  889. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  890. })
  891. o12 = Create("Part",{
  892. ["Parent"] = o2,
  893. ["BrickColor"] = BrickColor.new("Light orange"),
  894. ["Transparency"] = 1,
  895. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  896. ["Rotation"] = Vector3.new(86.3597412, -13.5106392, 95.9657364),
  897. ["Anchored"] = true,
  898. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, -0.101057455, -0.967060804, -0.233625919, 0.0873805359, 0.225292891, -0.970364809, 0.991035938, -0.11847695, 0.0617347658),
  899. ["CanCollide"] = false,
  900. ["Locked"] = true,
  901. ["Size"] = Vector3.new(4, 1, 2),
  902. })
  903. o13 = Create("ParticleEmitter",{
  904. ["Parent"] = o12,
  905. ["Size"] = NumberSequence.new(2.5,2.5),
  906. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  907. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  908. })
  909. o14 = Create("Part",{
  910. ["Parent"] = o2,
  911. ["BrickColor"] = BrickColor.new("Light orange"),
  912. ["Transparency"] = 1,
  913. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  914. ["Rotation"] = Vector3.new(102.543137, 6.23166227, -116.861259),
  915. ["Anchored"] = true,
  916. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, -0.449161828, 0.886832237, 0.108548716, 0.145867065, 0.192651749, -0.970365107, -0.881462872, -0.420017153, -0.215891346),
  917. ["CanCollide"] = false,
  918. ["Locked"] = true,
  919. ["Size"] = Vector3.new(4, 1, 2),
  920. })
  921. o15 = Create("ParticleEmitter",{
  922. ["Parent"] = o14,
  923. ["Size"] = NumberSequence.new(2.5,2.5),
  924. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  925. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  926. })
  927. o16 = Create("Part",{
  928. ["Parent"] = o2,
  929. ["BrickColor"] = BrickColor.new("Light orange"),
  930. ["Transparency"] = 1,
  931. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  932. ["Rotation"] = Vector3.new(102.543076, 6.23150969, -164.84436),
  933. ["Anchored"] = true,
  934. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, -0.959516287, 0.259897143, 0.108546063, -0.0454919189, 0.237321198, -0.970365584, -0.277955443, -0.936019421, -0.215890288),
  935. ["CanCollide"] = false,
  936. ["Locked"] = true,
  937. ["Size"] = Vector3.new(4, 1, 2),
  938. })
  939. o17 = Create("ParticleEmitter",{
  940. ["Parent"] = o16,
  941. ["Size"] = NumberSequence.new(2.5,2.5),
  942. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  943. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  944. })
  945. o18 = Create("Part",{
  946. ["Parent"] = o2,
  947. ["BrickColor"] = BrickColor.new("Light orange"),
  948. ["Transparency"] = 1,
  949. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  950. ["Rotation"] = Vector3.new(102.543114, 6.2315917, -99.8779907),
  951. ["Anchored"] = true,
  952. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, -0.170537025, 0.979354262, 0.108547494, 0.195777684, 0.141642377, -0.970365226, -0.96570617, -0.144232035, -0.215890929),
  953. ["CanCollide"] = false,
  954. ["Locked"] = true,
  955. ["Size"] = Vector3.new(4, 1, 2),
  956. })
  957. o19 = Create("ParticleEmitter",{
  958. ["Parent"] = o18,
  959. ["Size"] = NumberSequence.new(2.5,2.5),
  960. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  961. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  962. })
  963. o20 = Create("Part",{
  964. ["Parent"] = o2,
  965. ["BrickColor"] = BrickColor.new("Light orange"),
  966. ["Transparency"] = 1,
  967. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  968. ["Rotation"] = Vector3.new(102.543205, 6.23175573, -132.792969),
  969. ["Anchored"] = true,
  970. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, -0.675336957, 0.729477286, 0.10855034, 0.0873827487, 0.225293115, -0.970364571, -0.732314408, -0.645837605, -0.215892449),
  971. ["CanCollide"] = false,
  972. ["Locked"] = true,
  973. ["Size"] = Vector3.new(4, 1, 2),
  974. })
  975. o21 = Create("ParticleEmitter",{
  976. ["Parent"] = o20,
  977. ["Size"] = NumberSequence.new(2.5,2.5),
  978. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  979. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  980. })
  981. o22 = Create("Part",{
  982. ["Parent"] = o2,
  983. ["BrickColor"] = BrickColor.new("Light orange"),
  984. ["Transparency"] = 1,
  985. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  986. ["Rotation"] = Vector3.new(102.543076, 6.23157644, -152.474472),
  987. ["Anchored"] = true,
  988. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, -0.881565154, 0.45941323, 0.108547226, 0.00640271604, 0.241557747, -0.970365405, -0.472019136, -0.854745209, -0.215890348),
  989. ["CanCollide"] = false,
  990. ["Locked"] = true,
  991. ["Size"] = Vector3.new(4, 1, 2),
  992. })
  993. o23 = Create("ParticleEmitter",{
  994. ["Parent"] = o22,
  995. ["Size"] = NumberSequence.new(2.5,2.5),
  996. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  997. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  998. })
  999. o24 = Create("Part",{
  1000. ["Parent"] = o2,
  1001. ["BrickColor"] = BrickColor.new("Light orange"),
  1002. ["Transparency"] = 1,
  1003. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1004. ["Rotation"] = Vector3.new(93.5509491, 13.533741, -115.702736),
  1005. ["Anchored"] = true,
  1006. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, -0.421659291, 0.876036167, 0.234017938, -0.045491308, 0.237320334, -0.970365763, -0.905612469, -0.41980958, -0.060216248),
  1007. ["CanCollide"] = false,
  1008. ["Locked"] = true,
  1009. ["Size"] = Vector3.new(4, 1, 2),
  1010. })
  1011. o25 = Create("ParticleEmitter",{
  1012. ["Parent"] = o24,
  1013. ["Size"] = NumberSequence.new(2.5,2.5),
  1014. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1015. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1016. })
  1017. o26 = Create("Part",{
  1018. ["Parent"] = o2,
  1019. ["BrickColor"] = BrickColor.new("Light orange"),
  1020. ["Transparency"] = 1,
  1021. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1022. ["Rotation"] = Vector3.new(93.5508499, 13.5340061, -83.6512985),
  1023. ["Anchored"] = true,
  1024. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, 0.107508615, 0.966268897, 0.234022439, 0.087382853, 0.225292057, -0.970364869, -0.990356684, 0.124772049, -0.0602144599),
  1025. ["CanCollide"] = false,
  1026. ["Locked"] = true,
  1027. ["Size"] = Vector3.new(4, 1, 2),
  1028. })
  1029. o27 = Create("ParticleEmitter",{
  1030. ["Parent"] = o26,
  1031. ["Size"] = NumberSequence.new(2.5,2.5),
  1032. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1033. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1034. })
  1035. o28 = Create("Part",{
  1036. ["Parent"] = o2,
  1037. ["BrickColor"] = BrickColor.new("Light orange"),
  1038. ["Transparency"] = 1,
  1039. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1040. ["Rotation"] = Vector3.new(93.5508728, 13.5338879, -67.7195816),
  1041. ["Anchored"] = true,
  1042. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, 0.368611872, 0.899644494, 0.234020427, 0.145866781, 0.192650631, -0.970365226, -0.918067813, 0.391823798, -0.0602149367),
  1043. ["CanCollide"] = false,
  1044. ["Locked"] = true,
  1045. ["Size"] = Vector3.new(4, 1, 2),
  1046. })
  1047. o29 = Create("ParticleEmitter",{
  1048. ["Parent"] = o28,
  1049. ["Size"] = NumberSequence.new(2.5,2.5),
  1050. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1051. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1052. })
  1053. o30 = Create("Part",{
  1054. ["Parent"] = o2,
  1055. ["BrickColor"] = BrickColor.new("Light orange"),
  1056. ["Transparency"] = 1,
  1057. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1058. ["Rotation"] = Vector3.new(93.5509109, 13.5338335, -50.7363472),
  1059. ["Anchored"] = true,
  1060. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, 0.615315795, 0.752742767, 0.234019518, 0.195777208, 0.141641498, -0.970365524, -0.763582349, 0.642896652, -0.0602156073),
  1061. ["CanCollide"] = false,
  1062. ["Locked"] = true,
  1063. ["Size"] = Vector3.new(4, 1, 2),
  1064. })
  1065. o31 = Create("ParticleEmitter",{
  1066. ["Parent"] = o30,
  1067. ["Size"] = NumberSequence.new(2.5,2.5),
  1068. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1069. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1070. })
  1071. o32 = Create("Part",{
  1072. ["Parent"] = o2,
  1073. ["BrickColor"] = BrickColor.new("Light orange"),
  1074. ["Transparency"] = 1,
  1075. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1076. ["Rotation"] = Vector3.new(93.5509033, 13.5337915, -103.332832),
  1077. ["Anchored"] = true,
  1078. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, -0.224203944, 0.946027577, 0.234018788, 0.00640313327, 0.241556808, -0.970365584, -0.974521399, -0.216061294, -0.0602154732),
  1079. ["CanCollide"] = false,
  1080. ["Locked"] = true,
  1081. ["Size"] = Vector3.new(4, 1, 2),
  1082. })
  1083. o33 = Create("ParticleEmitter",{
  1084. ["Parent"] = o32,
  1085. ["Size"] = NumberSequence.new(2.5,2.5),
  1086. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1087. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1088. })
  1089. o34 = Create("Part",{
  1090. ["Parent"] = o2,
  1091. ["BrickColor"] = BrickColor.new("Light orange"),
  1092. ["Transparency"] = 1,
  1093. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1094. ["Rotation"] = Vector3.new(87.5872192, 13.7778225, -25.8519192),
  1095. ["Anchored"] = true,
  1096. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, 0.874030232, 0.42350024, 0.238157541, 0.195776746, 0.14164117, -0.970365703, -0.444682926, 0.894754469, 0.0408871919),
  1097. ["CanCollide"] = false,
  1098. ["Locked"] = true,
  1099. ["Size"] = Vector3.new(4, 1, 2),
  1100. })
  1101. o35 = Create("ParticleEmitter",{
  1102. ["Parent"] = o34,
  1103. ["Size"] = NumberSequence.new(2.5,2.5),
  1104. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1105. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1106. })
  1107. o36 = Create("Part",{
  1108. ["Parent"] = o2,
  1109. ["BrickColor"] = BrickColor.new("Light orange"),
  1110. ["Transparency"] = 1,
  1111. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1112. ["Rotation"] = Vector3.new(87.5871582, 13.7778587, -42.8351593),
  1113. ["Anchored"] = true,
  1114. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, 0.712212801, 0.660328567, 0.238158152, 0.145866409, 0.192650288, -0.970365465, -0.686641216, 0.725845814, 0.0408882648),
  1115. ["CanCollide"] = false,
  1116. ["Locked"] = true,
  1117. ["Size"] = Vector3.new(4, 1, 2),
  1118. })
  1119. o37 = Create("ParticleEmitter",{
  1120. ["Parent"] = o36,
  1121. ["Size"] = NumberSequence.new(2.5,2.5),
  1122. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1123. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1124. })
  1125. o38 = Create("Part",{
  1126. ["Parent"] = o2,
  1127. ["BrickColor"] = BrickColor.new("Light orange"),
  1128. ["Transparency"] = 1,
  1129. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1130. ["Rotation"] = Vector3.new(87.5872955, 13.7777548, -90.8183365),
  1131. ["Anchored"] = true,
  1132. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, -0.0138711762, 0.971127868, 0.238156393, -0.0454913229, 0.237319738, -0.970365882, -0.998868525, -0.0242941976, 0.0408859849),
  1133. ["CanCollide"] = false,
  1134. ["Locked"] = true,
  1135. ["Size"] = Vector3.new(4, 1, 2),
  1136. })
  1137. o39 = Create("ParticleEmitter",{
  1138. ["Parent"] = o38,
  1139. ["Size"] = NumberSequence.new(2.5,2.5),
  1140. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1141. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1142. })
  1143. o40 = Create("Part",{
  1144. ["Parent"] = o2,
  1145. ["BrickColor"] = BrickColor.new("Light orange"),
  1146. ["Transparency"] = 1,
  1147. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1148. ["Rotation"] = Vector3.new(87.5872269, 13.7777824, -78.4484177),
  1149. ["Anchored"] = true,
  1150. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, 0.194488198, 0.951554537, 0.23815687, 0.00640301406, 0.241556317, -0.970365763, -0.980884075, 0.190249637, 0.0408870727),
  1151. ["CanCollide"] = false,
  1152. ["Locked"] = true,
  1153. ["Size"] = Vector3.new(4, 1, 2),
  1154. })
  1155. o41 = Create("ParticleEmitter",{
  1156. ["Parent"] = o40,
  1157. ["Size"] = NumberSequence.new(2.5,2.5),
  1158. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1159. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1160. })
  1161. o42 = Create("Part",{
  1162. ["Parent"] = o2,
  1163. ["BrickColor"] = BrickColor.new("Light orange"),
  1164. ["Transparency"] = 1,
  1165. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1166. ["Rotation"] = Vector3.new(87.5870895, 13.7779512, -58.7668457),
  1167. ["Anchored"] = true,
  1168. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, 0.503602087, 0.830460906, 0.238159731, 0.0873826072, 0.22529155, -0.970364928, -0.859505475, 0.509488642, 0.0408894569),
  1169. ["CanCollide"] = false,
  1170. ["Locked"] = true,
  1171. ["Size"] = Vector3.new(4, 1, 2),
  1172. })
  1173. o43 = Create("ParticleEmitter",{
  1174. ["Parent"] = o42,
  1175. ["Size"] = NumberSequence.new(2.5,2.5),
  1176. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1177. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1178. })
  1179. o44 = Create("Part",{
  1180. ["Parent"] = o2,
  1181. ["BrickColor"] = BrickColor.new("Light orange"),
  1182. ["Transparency"] = 1,
  1183. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1184. ["Rotation"] = Vector3.new(86.3596802, -13.5104132, 76.2841797),
  1185. ["Anchored"] = true,
  1186. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, 0.230545193, -0.944600403, -0.233622074, 0.00640067458, 0.241556659, -0.970365644, 0.973040581, 0.222217858, 0.0617358685),
  1187. ["CanCollide"] = false,
  1188. ["Locked"] = true,
  1189. ["Size"] = Vector3.new(4, 1, 2),
  1190. })
  1191. o45 = Create("ParticleEmitter",{
  1192. ["Parent"] = o44,
  1193. ["Size"] = NumberSequence.new(2.5,2.5),
  1194. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1195. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1196. })
  1197. o46 = Create("Part",{
  1198. ["Parent"] = o2,
  1199. ["BrickColor"] = BrickColor.new("Light orange"),
  1200. ["Transparency"] = 1,
  1201. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1202. ["Rotation"] = Vector3.new(86.3597107, -13.5105181, 111.897423),
  1203. ["Anchored"] = true,
  1204. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, -0.36262551, -0.902176857, -0.233623862, 0.1458648, 0.192652062, -0.970365405, 0.920449078, -0.385956615, 0.0617353171),
  1205. ["CanCollide"] = false,
  1206. ["Locked"] = true,
  1207. ["Size"] = Vector3.new(4, 1, 2),
  1208. })
  1209. o47 = Create("ParticleEmitter",{
  1210. ["Parent"] = o46,
  1211. ["Size"] = NumberSequence.new(2.5,2.5),
  1212. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1213. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1214. })
  1215. o48 = Create("Part",{
  1216. ["Parent"] = o2,
  1217. ["BrickColor"] = BrickColor.new("Light orange"),
  1218. ["Transparency"] = 1,
  1219. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1220. ["Rotation"] = Vector3.new(86.3596725, -13.5104551, 128.880707),
  1221. ["Anchored"] = true,
  1222. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, -0.61033088, -0.756912768, -0.233622789, 0.195775732, 0.141643152, -0.970365465, 0.767573178, -0.637981534, 0.0617359728),
  1223. ["CanCollide"] = false,
  1224. ["Locked"] = true,
  1225. ["Size"] = Vector3.new(4, 1, 2),
  1226. })
  1227. o49 = Create("ParticleEmitter",{
  1228. ["Parent"] = o48,
  1229. ["Size"] = NumberSequence.new(2.5,2.5),
  1230. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1231. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1232. })
  1233. o50 = Create("Part",{
  1234. ["Parent"] = o2,
  1235. ["BrickColor"] = BrickColor.new("Light orange"),
  1236. ["Transparency"] = 1,
  1237. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1238. ["Rotation"] = Vector3.new(86.3596344, -13.5103664, 63.9142685),
  1239. ["Anchored"] = true,
  1240. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, 0.427547663, -0.873283744, -0.233621284, -0.0454937071, 0.237319678, -0.970365882, 0.902847409, 0.425505877, 0.0617365986),
  1241. ["CanCollide"] = false,
  1242. ["Locked"] = true,
  1243. ["Size"] = Vector3.new(4, 1, 2),
  1244. })
  1245. o51 = Create("ParticleEmitter",{
  1246. ["Parent"] = o50,
  1247. ["Size"] = NumberSequence.new(2.5,2.5),
  1248. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1249. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1250. })
  1251. o52 = Create("Part",{
  1252. ["Parent"] = o2,
  1253. ["BrickColor"] = BrickColor.new("Light orange"),
  1254. ["Transparency"] = 1,
  1255. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1256. ["Rotation"] = Vector3.new(102.621109, -6.0702033, -168.148773),
  1257. ["Anchored"] = true,
  1258. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, -0.973196864, 0.204219759, -0.105746955, 0.145866275, 0.192652568, -0.970364988, -0.177795321, -0.959780931, -0.217277646),
  1259. ["CanCollide"] = false,
  1260. ["Locked"] = true,
  1261. ["Size"] = Vector3.new(4, 1, 2),
  1262. })
  1263. o53 = Create("ParticleEmitter",{
  1264. ["Parent"] = o52,
  1265. ["Size"] = NumberSequence.new(2.5,2.5),
  1266. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1267. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1268. })
  1269. o54 = Create("Part",{
  1270. ["Parent"] = o2,
  1271. ["BrickColor"] = BrickColor.new("Light orange"),
  1272. ["Transparency"] = 1,
  1273. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1274. ["Rotation"] = Vector3.new(102.620941, -6.07024574, 143.868088),
  1275. ["Anchored"] = true,
  1276. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, -0.80313319, -0.586340189, -0.105747685, -0.0454930514, 0.237321064, -0.970365524, 0.594060361, -0.774521887, -0.217274785),
  1277. ["CanCollide"] = false,
  1278. ["Locked"] = true,
  1279. ["Size"] = Vector3.new(4, 1, 2),
  1280. })
  1281. o55 = Create("ParticleEmitter",{
  1282. ["Parent"] = o54,
  1283. ["Size"] = NumberSequence.new(2.5,2.5),
  1284. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1285. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1286. })
  1287. o56 = Create("Part",{
  1288. ["Parent"] = o2,
  1289. ["BrickColor"] = BrickColor.new("Light orange"),
  1290. ["Transparency"] = 1,
  1291. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1292. ["Rotation"] = Vector3.new(102.620995, -6.07021284, 156.237991),
  1293. ["Anchored"] = true,
  1294. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, -0.910095572, -0.40067938, -0.105747119, 0.00640164688, 0.241557866, -0.970365405, 0.414349347, -0.883802176, -0.217275634),
  1295. ["CanCollide"] = false,
  1296. ["Locked"] = true,
  1297. ["Size"] = Vector3.new(4, 1, 2),
  1298. })
  1299. o57 = Create("ParticleEmitter",{
  1300. ["Parent"] = o56,
  1301. ["Size"] = NumberSequence.new(2.5,2.5),
  1302. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1303. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1304. })
  1305. o58 = Create("Part",{
  1306. ["Parent"] = o2,
  1307. ["BrickColor"] = BrickColor.new("Light orange"),
  1308. ["Transparency"] = 1,
  1309. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1310. ["Rotation"] = Vector3.new(102.621033, -6.07022762, -151.165482),
  1311. ["Anchored"] = true,
  1312. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, -0.871104538, 0.479577303, -0.105747372, 0.195777193, 0.141643211, -0.970365286, -0.450386614, -0.865992486, -0.21727632),
  1313. ["CanCollide"] = false,
  1314. ["Locked"] = true,
  1315. ["Size"] = Vector3.new(4, 1, 2),
  1316. })
  1317. o59 = Create("ParticleEmitter",{
  1318. ["Parent"] = o58,
  1319. ["Size"] = NumberSequence.new(2.5,2.5),
  1320. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1321. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1322. })
  1323. o60 = Create("Part",{
  1324. ["Parent"] = o2,
  1325. ["BrickColor"] = BrickColor.new("Light orange"),
  1326. ["Transparency"] = 1,
  1327. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1328. ["Rotation"] = Vector3.new(102.621223, -6.07019854, 175.919556),
  1329. ["Anchored"] = true,
  1330. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, -0.991872668, -0.0707581863, -0.105746865, 0.0873818323, 0.225293636, -0.970364571, 0.0924853384, -0.971718192, -0.217279553),
  1331. ["CanCollide"] = false,
  1332. ["Locked"] = true,
  1333. ["Size"] = Vector3.new(4, 1, 2),
  1334. })
  1335. o61 = Create("ParticleEmitter",{
  1336. ["Parent"] = o60,
  1337. ["Size"] = NumberSequence.new(2.5,2.5),
  1338. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1339. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1340. })
  1341. o62 = Create("Part",{
  1342. ["Parent"] = o2,
  1343. ["BrickColor"] = BrickColor.new("Light orange"),
  1344. ["Transparency"] = 1,
  1345. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1346. ["Rotation"] = Vector3.new(76.1906204, -2.22199559, 30.1629696),
  1347. ["Anchored"] = true,
  1348. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, 0.863949716, -0.50208348, -0.0387714207, 0.0873808563, 0.22529152, -0.970365107, 0.495939046, 0.834958911, 0.238513038),
  1349. ["CanCollide"] = false,
  1350. ["Locked"] = true,
  1351. ["Size"] = Vector3.new(4, 1, 2),
  1352. })
  1353. o63 = Create("ParticleEmitter",{
  1354. ["Parent"] = o62,
  1355. ["Size"] = NumberSequence.new(2.5,2.5),
  1356. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1357. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1358. })
  1359. o64 = Create("Part",{
  1360. ["Parent"] = o2,
  1361. ["BrickColor"] = BrickColor.new("Light orange"),
  1362. ["Transparency"] = 1,
  1363. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1364. ["Rotation"] = Vector3.new(76.1907578, -2.22186089, 63.077919),
  1365. ["Anchored"] = true,
  1366. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, 0.452438056, -0.890953004, -0.0387690663, 0.19577527, 0.141642034, -0.970365763, 0.87004137, 0.431440324, 0.238510787),
  1367. ["CanCollide"] = false,
  1368. ["Locked"] = true,
  1369. ["Size"] = Vector3.new(4, 1, 2),
  1370. })
  1371. o65 = Create("ParticleEmitter",{
  1372. ["Parent"] = o64,
  1373. ["Size"] = NumberSequence.new(2.5,2.5),
  1374. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1375. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1376. })
  1377. o66 = Create("Part",{
  1378. ["Parent"] = o2,
  1379. ["BrickColor"] = BrickColor.new("Light orange"),
  1380. ["Transparency"] = 1,
  1381. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1382. ["Rotation"] = Vector3.new(76.190712, -2.22191787, 46.0946541),
  1383. ["Anchored"] = true,
  1384. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, 0.692947745, -0.719944835, -0.0387700647, 0.145864815, 0.192650661, -0.970365703, 0.706078768, 0.666757405, 0.238511443),
  1385. ["CanCollide"] = false,
  1386. ["Locked"] = true,
  1387. ["Size"] = Vector3.new(4, 1, 2),
  1388. })
  1389. o67 = Create("ParticleEmitter",{
  1390. ["Parent"] = o66,
  1391. ["Size"] = NumberSequence.new(2.5,2.5),
  1392. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1393. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1394. })
  1395. o68 = Create("Part",{
  1396. ["Parent"] = o2,
  1397. ["BrickColor"] = BrickColor.new("Light orange"),
  1398. ["Transparency"] = 1,
  1399. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1400. ["Rotation"] = Vector3.new(76.1908188, -2.22179508, -1.88847733),
  1401. ["Anchored"] = true,
  1402. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, 0.998705685, 0.032929413, -0.0387679189, -0.0454927385, 0.237318829, -0.970366061, -0.0227532424, 0.970873654, 0.2385097),
  1403. ["CanCollide"] = false,
  1404. ["Locked"] = true,
  1405. ["Size"] = Vector3.new(4, 1, 2),
  1406. })
  1407. o69 = Create("ParticleEmitter",{
  1408. ["Parent"] = o68,
  1409. ["Size"] = NumberSequence.new(2.5,2.5),
  1410. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1411. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1412. })
  1413. o70 = Create("Part",{
  1414. ["Parent"] = o2,
  1415. ["BrickColor"] = BrickColor.new("Light orange"),
  1416. ["Transparency"] = 1,
  1417. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1418. ["Rotation"] = Vector3.new(76.1907883, -2.22185564, 10.4814234),
  1419. ["Anchored"] = true,
  1420. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, 0.982574821, -0.181779981, -0.0387689769, 0.00640141964, 0.241555661, -0.970365882, 0.185757935, 0.953208923, 0.238510132),
  1421. ["CanCollide"] = false,
  1422. ["Locked"] = true,
  1423. ["Size"] = Vector3.new(4, 1, 2),
  1424. })
  1425. o71 = Create("ParticleEmitter",{
  1426. ["Parent"] = o70,
  1427. ["Size"] = NumberSequence.new(2.5,2.5),
  1428. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1429. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1430. })
  1431. o72 = Create("Part",{
  1432. ["Parent"] = o2,
  1433. ["BrickColor"] = BrickColor.new("Light orange"),
  1434. ["Transparency"] = 1,
  1435. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1436. ["Rotation"] = Vector3.new(79.039566, 8.73714828, -48.9605522),
  1437. ["Anchored"] = true,
  1438. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, 0.648959339, 0.745505035, 0.151901692, -0.0454917476, 0.237319022, -0.97036618, -0.75946182, 0.622817814, 0.187924758),
  1439. ["CanCollide"] = false,
  1440. ["Locked"] = true,
  1441. ["Size"] = Vector3.new(4, 1, 2),
  1442. })
  1443. o73 = Create("ParticleEmitter",{
  1444. ["Parent"] = o72,
  1445. ["Size"] = NumberSequence.new(2.5,2.5),
  1446. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1447. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1448. })
  1449. o74 = Create("Part",{
  1450. ["Parent"] = o2,
  1451. ["BrickColor"] = BrickColor.new("Light orange"),
  1452. ["Transparency"] = 1,
  1453. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1454. ["Rotation"] = Vector3.new(79.0392761, 8.73716068, -16.9090633),
  1455. ["Anchored"] = true,
  1456. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, 0.945665002, 0.287478387, 0.151901901, 0.0873818249, 0.225291193, -0.970365167, -0.313181132, 0.930913687, 0.187929645),
  1457. ["CanCollide"] = false,
  1458. ["Locked"] = true,
  1459. ["Size"] = Vector3.new(4, 1, 2),
  1460. })
  1461. o75 = Create("ParticleEmitter",{
  1462. ["Parent"] = o74,
  1463. ["Size"] = NumberSequence.new(2.5,2.5),
  1464. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1465. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1466. })
  1467. o76 = Create("Part",{
  1468. ["Parent"] = o2,
  1469. ["BrickColor"] = BrickColor.new("Light orange"),
  1470. ["Transparency"] = 1,
  1471. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1472. ["Rotation"] = Vector3.new(79.039505, 8.73712921, -36.5906372),
  1473. ["Anchored"] = true,
  1474. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, 0.793597758, 0.589176536, 0.151901364, 0.00640243944, 0.241555661, -0.970365882, -0.608409464, 0.771052539, 0.18792586),
  1475. ["CanCollide"] = false,
  1476. ["Locked"] = true,
  1477. ["Size"] = Vector3.new(4, 1, 2),
  1478. })
  1479. o77 = Create("ParticleEmitter",{
  1480. ["Parent"] = o76,
  1481. ["Size"] = NumberSequence.new(2.5,2.5),
  1482. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1483. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1484. })
  1485. o78 = Create("Part",{
  1486. ["Parent"] = o2,
  1487. ["BrickColor"] = BrickColor.new("Light orange"),
  1488. ["Transparency"] = 1,
  1489. ["Position"] = Vector3.new(3925.69946, -4678.13916, -11.0854521),
  1490. ["Rotation"] = Vector3.new(79.0393982, 8.7371397, -0.977389395),
  1491. ["Anchored"] = true,
  1492. ["CFrame"] = CFrame.new(3925.69946, -4678.13916, -11.0854521, 0.988252044, 0.0168598946, 0.151901543, 0.145865604, 0.19265008, -0.970365644, -0.0456241071, 0.981122792, 0.187927589),
  1493. ["CanCollide"] = false,
  1494. ["Locked"] = true,
  1495. ["Size"] = Vector3.new(4, 1, 2),
  1496. })
  1497. o79 = Create("ParticleEmitter",{
  1498. ["Parent"] = o78,
  1499. ["Size"] = NumberSequence.new(2.5,2.5),
  1500. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1501. ["Acceleration"] = Vector3.new(0, -1.29999995, 0),
  1502. })
  1503. o80 = Create("Model",{
  1504. ["Name"] = "Arm1",
  1505. ["Parent"] = o1,
  1506. })
  1507. o81 = Create("Part",{
  1508. ["Name"] = "Middle",
  1509. ["Parent"] = o80,
  1510. ["Material"] = Enum.Material.Granite,
  1511. ["BrickColor"] = BrickColor.new("Light orange"),
  1512. ["Position"] = Vector3.new(3923.3938, -4665.64014, -17.7558212),
  1513. ["Rotation"] = Vector3.new(-0, -90, 0),
  1514. ["Anchored"] = true,
  1515. ["CFrame"] = CFrame.new(3923.3938, -4665.64014, -17.7558212, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  1516. ["CanCollide"] = false,
  1517. ["Locked"] = true,
  1518. ["FormFactor"] = Enum.FormFactor.Symmetric,
  1519. ["Size"] = Vector3.new(4.64390278, 9.28781509, 4.6439023),
  1520. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1521. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1522. })
  1523. o82 = Create("ParticleEmitter",{
  1524. ["Parent"] = o81,
  1525. ["Size"] = NumberSequence.new(1,0.9375,1.7500001192093,0.87499976158142,2.8749995231628,1.25,2.0625,1.1874997615814,2.9375,1.3124996423721,2.8749995231628,5.6875),
  1526. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1527. ["Lifetime"] = NumberRange.new(1,1),
  1528. ["Rate"] = 40,
  1529. ["RotSpeed"] = NumberRange.new(30,30),
  1530. ["Speed"] = NumberRange.new(0,0),
  1531. })
  1532. o83 = Create("ParticleEmitter",{
  1533. ["Parent"] = o81,
  1534. ["Transparency"] = NumberSequence.new(0,0.85000002384186,0.375,0.13749998807907,0.58124995231628,0.018750011920929,0.11874997615814,0.14999997615814,0.58749997615814,0.125,0.83749997615814,0.050000011920929,0.94999998807907,0.25),
  1535. ["Size"] = NumberSequence.new(1.5644174814224,1.8124997615814,2.7499997615814,1.4999997615814,1.8124997615814,2.6875,1.875,4.25),
  1536. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1537. ["Lifetime"] = NumberRange.new(2,2),
  1538. ["Rate"] = 30,
  1539. ["RotSpeed"] = NumberRange.new(400,400),
  1540. ["Speed"] = NumberRange.new(3,3),
  1541. })
  1542. o84 = Create("Model",{
  1543. ["Name"] = "Arm2",
  1544. ["Parent"] = o1,
  1545. })
  1546. o85 = Create("Part",{
  1547. ["Name"] = "Middle",
  1548. ["Parent"] = o84,
  1549. ["Material"] = Enum.Material.Granite,
  1550. ["BrickColor"] = BrickColor.new("Light orange"),
  1551. ["Position"] = Vector3.new(3923.3938, -4665.64014, -3.8241148),
  1552. ["Rotation"] = Vector3.new(-0, -90, 0),
  1553. ["Anchored"] = true,
  1554. ["CFrame"] = CFrame.new(3923.3938, -4665.64014, -3.8241148, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  1555. ["CanCollide"] = false,
  1556. ["Locked"] = true,
  1557. ["FormFactor"] = Enum.FormFactor.Symmetric,
  1558. ["Size"] = Vector3.new(4.64390278, 9.28781509, 4.6439023),
  1559. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1560. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1561. })
  1562. o86 = Create("ParticleEmitter",{
  1563. ["Parent"] = o85,
  1564. ["Size"] = NumberSequence.new(1,0.9375,1.7500001192093,0.87499976158142,2.8749995231628,1.25,2.0625,1.1874997615814,2.9375,1.3124996423721,2.8749995231628,5.6875),
  1565. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1566. ["Lifetime"] = NumberRange.new(1,1),
  1567. ["Rate"] = 40,
  1568. ["RotSpeed"] = NumberRange.new(30,30),
  1569. ["Speed"] = NumberRange.new(0,0),
  1570. })
  1571. o87 = Create("ParticleEmitter",{
  1572. ["Parent"] = o85,
  1573. ["Transparency"] = NumberSequence.new(0,0.85000002384186,0.375,0.13749998807907,0.58124995231628,0.018750011920929,0.11874997615814,0.14999997615814,0.58749997615814,0.125,0.83749997615814,0.050000011920929,0.94999998807907,0.25),
  1574. ["Size"] = NumberSequence.new(1.5644174814224,1.8124997615814,2.7499997615814,1.4999997615814,1.8124997615814,2.6875,1.875,4.25),
  1575. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1576. ["Lifetime"] = NumberRange.new(2,2),
  1577. ["Rate"] = 30,
  1578. ["RotSpeed"] = NumberRange.new(400,400),
  1579. ["Speed"] = NumberRange.new(3,3),
  1580. })
  1581. o88 = Create("Part",{
  1582. ["Parent"] = o84,
  1583. ["Material"] = Enum.Material.Granite,
  1584. ["BrickColor"] = BrickColor.new("Light orange"),
  1585. ["Position"] = Vector3.new(3935.67017, -4667.5542, -3.13911486),
  1586. ["Rotation"] = Vector3.new(90, -82.368454, 90.0000076),
  1587. ["Anchored"] = true,
  1588. ["CFrame"] = CFrame.new(3935.67017, -4667.5542, -3.13911486, -1.44198635e-008, -0.132802665, -0.991142571, 1.18167613e-007, 0.991142571, -0.132802665, 1, -1.19035953e-007, 1.40083323e-009),
  1589. ["CanCollide"] = false,
  1590. ["Locked"] = true,
  1591. ["FormFactor"] = Enum.FormFactor.Symmetric,
  1592. ["Size"] = Vector3.new(1.47390282, 1.33999991, 36.1239014),
  1593. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1594. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1595. })
  1596. o89 = Create("ParticleEmitter",{
  1597. ["Parent"] = o88,
  1598. ["Transparency"] = NumberSequence.new(0,0.85000002384186,0.375,0.13749998807907,0.58124995231628,0.018750011920929,0.11874997615814,0.14999997615814,0.58749997615814,0.125,0.83749997615814,0.050000011920929,0.94999998807907,0.25),
  1599. ["Size"] = NumberSequence.new(1.5644174814224,1.8124997615814,2.7499997615814,1.4999997615814,1.8124997615814,2.6875,1.875,4.25),
  1600. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1601. ["Lifetime"] = NumberRange.new(2,2),
  1602. ["Rate"] = 30,
  1603. ["RotSpeed"] = NumberRange.new(400,400),
  1604. ["Speed"] = NumberRange.new(3,3),
  1605. })
  1606. o90 = Create("Part",{
  1607. ["Parent"] = o84,
  1608. ["Material"] = Enum.Material.Neon,
  1609. ["BrickColor"] = BrickColor.new("Institutional white"),
  1610. ["Position"] = Vector3.new(3947.09888, -4665.76025, -3.20606613),
  1611. ["Rotation"] = Vector3.new(90, -82.368454, 90.0000076),
  1612. ["Anchored"] = true,
  1613. ["CFrame"] = CFrame.new(3947.09888, -4665.76025, -3.20606613, -1.44198635e-008, -0.132802665, -0.991142571, 1.18167613e-007, 0.991142571, -0.132802665, 1, -1.19035953e-007, 1.40083323e-009),
  1614. ["CanCollide"] = false,
  1615. ["Locked"] = true,
  1616. ["FormFactor"] = Enum.FormFactor.Symmetric,
  1617. ["Size"] = Vector3.new(0.200000003, 7.81999969, 31.2939014),
  1618. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1619. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1620. })
  1621. o91 = Create("ParticleEmitter",{
  1622. ["Parent"] = o90,
  1623. ["Transparency"] = NumberSequence.new(0,0.85000002384186,0.375,0.13749998807907,0.58124995231628,0.018750011920929,0.11874997615814,0.14999997615814,0.58749997615814,0.125,0.83749997615814,0.050000011920929,0.94999998807907,0.25),
  1624. ["Size"] = NumberSequence.new(1.5644174814224,1.8124997615814,2.7499997615814,1.4999997615814,1.8124997615814,2.6875,1.875,4.25),
  1625. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1626. ["Lifetime"] = NumberRange.new(2,2),
  1627. ["Rate"] = 30,
  1628. ["RotSpeed"] = NumberRange.new(400,400),
  1629. ["Speed"] = NumberRange.new(3,3),
  1630. })
  1631. o92 = Create("Part",{
  1632. ["Parent"] = o84,
  1633. ["Material"] = Enum.Material.Neon,
  1634. ["BrickColor"] = BrickColor.new("Institutional white"),
  1635. ["Position"] = Vector3.new(3963.30298, -4662.56982, -3.20606613),
  1636. ["Rotation"] = Vector3.new(-90.000061, -44.0050316, -90.0000305),
  1637. ["Anchored"] = true,
  1638. ["CFrame"] = CFrame.new(3963.30298, -4662.56982, -3.20606613, -4.02258507e-007, 0.719278812, -0.69472152, 6.60829357e-007, 0.69472152, 0.719278812, 1, -1.69756362e-007, -7.54778171e-007),
  1639. ["CanCollide"] = false,
  1640. ["Locked"] = true,
  1641. ["FormFactor"] = Enum.FormFactor.Symmetric,
  1642. ["Size"] = Vector3.new(0.200000003, 7.81999969, 7.0639019),
  1643. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1644. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1645. })
  1646. o93 = Create("ParticleEmitter",{
  1647. ["Parent"] = o92,
  1648. ["Transparency"] = NumberSequence.new(0,0.85000002384186,0.375,0.13749998807907,0.58124995231628,0.018750011920929,0.11874997615814,0.14999997615814,0.58749997615814,0.125,0.83749997615814,0.050000011920929,0.94999998807907,0.25),
  1649. ["Size"] = NumberSequence.new(1.5644174814224,1.8124997615814,2.7499997615814,1.4999997615814,1.8124997615814,2.6875,1.875,4.25),
  1650. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1651. ["Lifetime"] = NumberRange.new(2,2),
  1652. ["Rate"] = 30,
  1653. ["RotSpeed"] = NumberRange.new(400,400),
  1654. ["Speed"] = NumberRange.new(3,3),
  1655. })
  1656. o94 = Create("Model",{
  1657. ["Name"] = "Leg1",
  1658. ["Parent"] = o1,
  1659. })
  1660. o95 = Create("Part",{
  1661. ["Name"] = "Middle",
  1662. ["Parent"] = o94,
  1663. ["Material"] = Enum.Material.Granite,
  1664. ["BrickColor"] = BrickColor.new("Light orange"),
  1665. ["Position"] = Vector3.new(3923.3938, -4674.92725, -13.1119194),
  1666. ["Rotation"] = Vector3.new(-0, -90, 0),
  1667. ["Anchored"] = true,
  1668. ["CFrame"] = CFrame.new(3923.3938, -4674.92725, -13.1119194, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  1669. ["CanCollide"] = false,
  1670. ["Locked"] = true,
  1671. ["FormFactor"] = Enum.FormFactor.Symmetric,
  1672. ["Size"] = Vector3.new(4.64390278, 9.28781509, 4.6439023),
  1673. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1674. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1675. })
  1676. o96 = Create("ParticleEmitter",{
  1677. ["Parent"] = o95,
  1678. ["Size"] = NumberSequence.new(1,0.9375,1.7500001192093,0.87499976158142,2.8749995231628,1.25,2.0625,1.1874997615814,2.9375,1.3124996423721,2.8749995231628,5.6875),
  1679. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1680. ["Lifetime"] = NumberRange.new(1,1),
  1681. ["Rate"] = 40,
  1682. ["RotSpeed"] = NumberRange.new(30,30),
  1683. ["Speed"] = NumberRange.new(0,0),
  1684. })
  1685. o97 = Create("ParticleEmitter",{
  1686. ["Parent"] = o95,
  1687. ["Transparency"] = NumberSequence.new(0,0.85000002384186,0.375,0.13749998807907,0.58124995231628,0.018750011920929,0.11874997615814,0.14999997615814,0.58749997615814,0.125,0.83749997615814,0.050000011920929,0.94999998807907,0.25),
  1688. ["Size"] = NumberSequence.new(1.5644174814224,1.8124997615814,2.7499997615814,1.4999997615814,1.8124997615814,2.6875,1.875,4.25),
  1689. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1690. ["Lifetime"] = NumberRange.new(2,2),
  1691. ["Rate"] = 30,
  1692. ["RotSpeed"] = NumberRange.new(400,400),
  1693. ["Speed"] = NumberRange.new(3,3),
  1694. })
  1695. o98 = Create("Model",{
  1696. ["Name"] = "Leg2",
  1697. ["Parent"] = o1,
  1698. })
  1699. o99 = Create("Part",{
  1700. ["Name"] = "Middle",
  1701. ["Parent"] = o98,
  1702. ["Material"] = Enum.Material.Granite,
  1703. ["BrickColor"] = BrickColor.new("Light orange"),
  1704. ["Position"] = Vector3.new(3923.3938, -4674.92725, -8.46801567),
  1705. ["Rotation"] = Vector3.new(-0, -90, 0),
  1706. ["Anchored"] = true,
  1707. ["CFrame"] = CFrame.new(3923.3938, -4674.92725, -8.46801567, 0, 0, -1, 0, 1, 0, 1, 0, 0),
  1708. ["CanCollide"] = false,
  1709. ["Locked"] = true,
  1710. ["FormFactor"] = Enum.FormFactor.Symmetric,
  1711. ["Size"] = Vector3.new(4.64390278, 9.28781509, 4.6439023),
  1712. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1713. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1714. })
  1715. o100 = Create("ParticleEmitter",{
  1716. ["Parent"] = o99,
  1717. ["Size"] = NumberSequence.new(1,0.9375,1.7500001192093,0.87499976158142,2.8749995231628,1.25,2.0625,1.1874997615814,2.9375,1.3124996423721,2.8749995231628,5.6875),
  1718. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1719. ["Lifetime"] = NumberRange.new(1,1),
  1720. ["Rate"] = 40,
  1721. ["RotSpeed"] = NumberRange.new(30,30),
  1722. ["Speed"] = NumberRange.new(0,0),
  1723. })
  1724. o101 = Create("ParticleEmitter",{
  1725. ["Parent"] = o99,
  1726. ["Transparency"] = NumberSequence.new(0,0.85000002384186,0.375,0.13749998807907,0.58124995231628,0.018750011920929,0.11874997615814,0.14999997615814,0.58749997615814,0.125,0.83749997615814,0.050000011920929,0.94999998807907,0.25),
  1727. ["Size"] = NumberSequence.new(1.5644174814224,1.8124997615814,2.7499997615814,1.4999997615814,1.8124997615814,2.6875,1.875,4.25),
  1728. ["Texture"] = "http://www.roblox.com/asset/?id=343377229",
  1729. ["Lifetime"] = NumberRange.new(2,2),
  1730. ["Rate"] = 30,
  1731. ["RotSpeed"] = NumberRange.new(400,400),
  1732. ["Speed"] = NumberRange.new(3,3),
  1733. })
  1734. o102 = Create("Part",{
  1735. ["Name"] = "Head",
  1736. ["Parent"] = o1,
  1737. ["BrickColor"] = BrickColor.new("Really red"),
  1738. ["Position"] = Vector3.new(3930.82446, -4678.17822, -1.96655464),
  1739. ["Rotation"] = Vector3.new(0, 90, 0),
  1740. ["Anchored"] = true,
  1741. ["CFrame"] = CFrame.new(3930.82446, -4678.17822, -1.96655464, 0, 0, 1, 0, 1, -0, -1, 0, 0),
  1742. ["CanCollide"] = false,
  1743. ["Locked"] = true,
  1744. ["FormFactor"] = Enum.FormFactor.Symmetric,
  1745. ["Size"] = Vector3.new(0.928780496, 0.928781509, 0.928780496),
  1746. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1747. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1748. })
  1749. o103 = Create("Script",{
  1750. ["Name"] = "Arm1",
  1751. ["Parent"] = o102,
  1752. })
  1753. table.insert(cors,coroutine.create(function()
  1754. wait()
  1755. runDummyScript(function()
  1756. function onTouched(hit)
  1757. if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Arm1") == nil then
  1758. local g = script.Parent.Parent.Arm1:clone()
  1759. g.Parent = hit.Parent
  1760. local C = g:GetChildren()
  1761. for i=1, #C do
  1762. if C[i].className == "Part" then
  1763. local W = Instance.new("Weld")
  1764. W.Part0 = g.Middle
  1765. W.Part1 = C[i]
  1766. local CJ = CFrame.new(g.Middle.Position)
  1767. local C0 = g.Middle.CFrame:inverse()*CJ
  1768. local C1 = C[i].CFrame:inverse()*CJ
  1769. W.C0 = C0
  1770. W.C1 = C1
  1771. W.Parent = g.Middle
  1772. end
  1773. local Y = Instance.new("Weld")
  1774. Y.Part0 = hit.Parent["Left Arm"]
  1775. Y.Part1 = g.Middle
  1776. Y.C0 = CFrame.new(0, 0, 0)
  1777. Y.Parent = Y.Part0
  1778. end
  1779.  
  1780. local h = g:GetChildren()
  1781. for i = 1, # h do
  1782. if h[i].className == "Part" then
  1783. h[i].Anchored = false
  1784. h[i].CanCollide = false
  1785. end
  1786. end
  1787.  
  1788. end
  1789.  
  1790. end
  1791.  
  1792. script.Parent.Touched:connect(onTouched)
  1793. end,o103)
  1794. end))
  1795. o104 = Create("Script",{
  1796. ["Name"] = "Leg1",
  1797. ["Parent"] = o102,
  1798. })
  1799. table.insert(cors,coroutine.create(function()
  1800. wait()
  1801. runDummyScript(function()
  1802. function onTouched(hit)
  1803. if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Leg1") == nil then
  1804. local g = script.Parent.Parent.Leg1:clone()
  1805. g.Parent = hit.Parent
  1806. local C = g:GetChildren()
  1807. for i=1, #C do
  1808. if C[i].className == "Part" then
  1809. local W = Instance.new("Weld")
  1810. W.Part0 = g.Middle
  1811. W.Part1 = C[i]
  1812. local CJ = CFrame.new(g.Middle.Position)
  1813. local C0 = g.Middle.CFrame:inverse()*CJ
  1814. local C1 = C[i].CFrame:inverse()*CJ
  1815. W.C0 = C0
  1816. W.C1 = C1
  1817. W.Parent = g.Middle
  1818. end
  1819. local Y = Instance.new("Weld")
  1820. Y.Part0 = hit.Parent["Left Leg"]
  1821. Y.Part1 = g.Middle
  1822. Y.C0 = CFrame.new(0, 0, 0)
  1823. Y.Parent = Y.Part0
  1824. end
  1825.  
  1826. local h = g:GetChildren()
  1827. for i = 1, # h do
  1828. if h[i].className == "Part" then
  1829. h[i].Anchored = false
  1830. h[i].CanCollide = false
  1831. end
  1832. end
  1833.  
  1834. end
  1835.  
  1836. end
  1837.  
  1838. script.Parent.Touched:connect(onTouched)
  1839. end,o104)
  1840. end))
  1841. o105 = Create("Script",{
  1842. ["Name"] = "HatRemover",
  1843. ["Parent"] = o102,
  1844. })
  1845. table.insert(cors,coroutine.create(function()
  1846. wait()
  1847. runDummyScript(function()
  1848. function onTouched(hit)
  1849. local d = hit.Parent:GetChildren()
  1850. for i=1, #d do
  1851. if (d[i].className == "Hat") then
  1852. d[i]:remove()
  1853. end
  1854. end
  1855. end
  1856.  
  1857. script.Parent.Touched:connect(onTouched)
  1858. end,o105)
  1859. end))
  1860. o106 = Create("Script",{
  1861. ["Name"] = "ChangeShirt/Pants",
  1862. ["Parent"] = o102,
  1863. })
  1864. table.insert(cors,coroutine.create(function()
  1865. wait()
  1866. runDummyScript(function()
  1867. --theRal
  1868.  
  1869. worker = false
  1870. part = script.Parent
  1871.  
  1872. function onTouch(hit)
  1873. local human = hit.Parent:FindFirstChild("Humanoid")
  1874. if (human ~= nil) and (worker == false) then
  1875. print ("Success")
  1876. worker = true
  1877. wait(.1)
  1878. local pant = hit.Parent:GetChildren()
  1879. for i=1,#pant do
  1880. if (pant[i].className == "Pants") then
  1881. pant[i].PantsTemplate = ""
  1882. end
  1883. end
  1884. local shirt = hit.Parent:GetChildren()
  1885. for i=1,#shirt do
  1886. if (shirt[i].className == "Shirt") then
  1887. shirt[i].ShirtTemplate = ""
  1888. wait(1)
  1889. worker = false
  1890. end
  1891. end
  1892. end
  1893. end
  1894.  
  1895. script.Parent.Touched:connect(onTouch)
  1896. end,o106)
  1897. end))
  1898. o107 = Create("Script",{
  1899. ["Parent"] = o102,
  1900. })
  1901. table.insert(cors,coroutine.create(function()
  1902. wait()
  1903. runDummyScript(function()
  1904. function onTouch(part)
  1905. local human = part.Parent:findFirstChild("Humanoid")
  1906. if human ~= nil then
  1907. part.Parent:findFirstChild("Head").BrickColor = BrickColor.new(125)
  1908. part.Parent:findFirstChild("Head").Transparency = 0
  1909. part.Parent:findFirstChild("Torso").BrickColor = BrickColor.new(1)
  1910. part.Parent:findFirstChild("Torso").Transparency = 1
  1911. part.Parent:findFirstChild("Left Arm").BrickColor = BrickColor.new(1)
  1912. part.Parent:findFirstChild("Left Arm").Transparency = 1
  1913. part.Parent:findFirstChild("Right Arm").BrickColor = BrickColor.new(1)
  1914. part.Parent:findFirstChild("Right Arm").Transparency = 1
  1915. part.Parent:findFirstChild("Left Leg").BrickColor = BrickColor.new(1)
  1916. part.Parent:findFirstChild("Left Leg").CanCollide = true
  1917. part.Parent:findFirstChild("Left Leg").Transparency = 1
  1918. part.Parent:findFirstChild("Right Leg").BrickColor = BrickColor.new(1)
  1919. part.Parent:findFirstChild("Right Leg").CanCollide = true
  1920. part.Parent:findFirstChild("Right Leg").Transparency = 1
  1921. end
  1922. end
  1923. script.Parent.Touched:connect(onTouch)
  1924.  
  1925. --COLORS
  1926.  
  1927. --1 = white
  1928. --208 = Light stone grey
  1929. --194 = Medium stone grey
  1930. --199 = Dark stone grey
  1931. --26 = Black
  1932. --21 = Bright red
  1933. --24 = Bright yellow
  1934. --226 = Cool yellow
  1935. --23 = Bright blue
  1936. --107 = Bright bluish green
  1937. --102 = Medium blue
  1938. --11 = Pastel blue
  1939. --45 = Light blue
  1940. --135 = Sand blue
  1941. --106 = Bright orange
  1942. --105 = Br. yellowish orange
  1943. --141 = Earth green
  1944. --28 = Dark green
  1945. --37 = Bright green
  1946. --119 = Br. yellowish green
  1947. --29 = Medium green
  1948. --151 = Sand green
  1949. --38 = Dark orange
  1950. --192 = Reddish brown
  1951. --104 = Bright violet
  1952. --9 = Light reddish violet
  1953. --101 = Medium red
  1954. --5 = Brick Yellow
  1955. --153 = Sand red
  1956. --217 = Brown
  1957. --18 = Nougat
  1958. --125 = Light orange
  1959.  
  1960.  
  1961. end,o107)
  1962. end))
  1963. o108 = Create("Script",{
  1964. ["Name"] = "WalkSpeed Script",
  1965. ["Parent"] = o102,
  1966. })
  1967. table.insert(cors,coroutine.create(function()
  1968. wait()
  1969. runDummyScript(function()
  1970. local debounce = false
  1971.  
  1972. function onTouch(part)
  1973.  
  1974. local human = part.Parent:findFirstChild("Humanoid")
  1975. if (human ~= nil) and debounce == false then
  1976.  
  1977. debounce = true
  1978.  
  1979. human.WalkSpeed = 16-- or whatever number
  1980.  
  1981. wait(2)
  1982. debounce = false
  1983. end
  1984. end
  1985.  
  1986.  
  1987. script.Parent.Touched:connect(onTouch)
  1988.  
  1989. end,o108)
  1990. end))
  1991. o109 = Create("Script",{
  1992. ["Name"] = "Leg2",
  1993. ["Parent"] = o102,
  1994. })
  1995. table.insert(cors,coroutine.create(function()
  1996. wait()
  1997. runDummyScript(function()
  1998. function onTouched(hit)
  1999. if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Leg2") == nil then
  2000. local g = script.Parent.Parent.Leg2:clone()
  2001. g.Parent = hit.Parent
  2002. local C = g:GetChildren()
  2003. for i=1, #C do
  2004. if C[i].className == "Part" then
  2005. local W = Instance.new("Weld")
  2006. W.Part0 = g.Middle
  2007. W.Part1 = C[i]
  2008. local CJ = CFrame.new(g.Middle.Position)
  2009. local C0 = g.Middle.CFrame:inverse()*CJ
  2010. local C1 = C[i].CFrame:inverse()*CJ
  2011. W.C0 = C0
  2012. W.C1 = C1
  2013. W.Parent = g.Middle
  2014. end
  2015. local Y = Instance.new("Weld")
  2016. Y.Part0 = hit.Parent["Right Leg"]
  2017. Y.Part1 = g.Middle
  2018. Y.C0 = CFrame.new(0, 0, 0)
  2019. Y.Parent = Y.Part0
  2020. end
  2021.  
  2022. local h = g:GetChildren()
  2023. for i = 1, # h do
  2024. if h[i].className == "Part" then
  2025. h[i].Anchored = false
  2026. h[i].CanCollide = false
  2027. end
  2028. end
  2029.  
  2030. end
  2031.  
  2032. end
  2033.  
  2034. script.Parent.Touched:connect(onTouched)
  2035. end,o109)
  2036. end))
  2037. o110 = Create("Script",{
  2038. ["Name"] = "Arm2",
  2039. ["Parent"] = o102,
  2040. })
  2041. table.insert(cors,coroutine.create(function()
  2042. wait()
  2043. runDummyScript(function()
  2044. function onTouched(hit)
  2045. if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Arm2") == nil then
  2046. local g = script.Parent.Parent.Arm2:clone()
  2047. g.Parent = hit.Parent
  2048. local C = g:GetChildren()
  2049. for i=1, #C do
  2050. if C[i].className == "Part" then
  2051. local W = Instance.new("Weld")
  2052. W.Part0 = g.Middle
  2053. W.Part1 = C[i]
  2054. local CJ = CFrame.new(g.Middle.Position)
  2055. local C0 = g.Middle.CFrame:inverse()*CJ
  2056. local C1 = C[i].CFrame:inverse()*CJ
  2057. W.C0 = C0
  2058. W.C1 = C1
  2059. W.Parent = g.Middle
  2060. end
  2061. local Y = Instance.new("Weld")
  2062. Y.Part0 = hit.Parent["Right Arm"]
  2063. Y.Part1 = g.Middle
  2064. Y.C0 = CFrame.new(0, 0, 0)
  2065. Y.Parent = Y.Part0
  2066. end
  2067.  
  2068. local h = g:GetChildren()
  2069. for i = 1, # h do
  2070. if h[i].className == "Part" then
  2071. h[i].Anchored = false
  2072. h[i].CanCollide = false
  2073. end
  2074. end
  2075.  
  2076. end
  2077.  
  2078. end
  2079.  
  2080. script.Parent.Touched:connect(onTouched)
  2081. end,o110)
  2082. end))
  2083. o111 = Create("Script",{
  2084. ["Name"] = "Torso",
  2085. ["Parent"] = o102,
  2086. })
  2087. table.insert(cors,coroutine.create(function()
  2088. wait()
  2089. runDummyScript(function()
  2090. function onTouched(hit)
  2091. if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent:findFirstChild("Chest") == nil then
  2092. local g = script.Parent.Parent.Chest:clone()
  2093. g.Parent = hit.Parent
  2094. local C = g:GetChildren()
  2095. for i=1, #C do
  2096. if C[i].className == "Part" then
  2097. local W = Instance.new("Weld")
  2098. W.Part0 = g.Middle
  2099. W.Part1 = C[i]
  2100. local CJ = CFrame.new(g.Middle.Position)
  2101. local C0 = g.Middle.CFrame:inverse()*CJ
  2102. local C1 = C[i].CFrame:inverse()*CJ
  2103. W.C0 = C0
  2104. W.C1 = C1
  2105. W.Parent = g.Middle
  2106. end
  2107. local Y = Instance.new("Weld")
  2108. Y.Part0 = hit.Parent.Torso
  2109. Y.Part1 = g.Middle
  2110. Y.C0 = CFrame.new(0, 0, 0)
  2111. Y.Parent = Y.Part0
  2112. end
  2113.  
  2114. local h = g:GetChildren()
  2115. for i = 1, # h do
  2116. if h[i].className == "Part" then
  2117. h[i].Anchored = false
  2118. h[i].CanCollide = false
  2119. end
  2120. end
  2121.  
  2122. end
  2123. end
  2124.  
  2125. script.Parent.Touched:connect(onTouched)
  2126.  
  2127. end,o111)
  2128. end))
  2129. o112 = Create("Script",{
  2130. ["Name"] = "Cframe",
  2131. ["Parent"] = o102,
  2132. })
  2133. table.insert(cors,coroutine.create(function()
  2134. wait()
  2135. runDummyScript(function()
  2136.  
  2137. wait(2)
  2138.  
  2139. local p = script.Parent
  2140. local me = game.Players.LocalPlayer.Character
  2141.  
  2142.  
  2143. p.Shape = "Ball"
  2144.  
  2145. game:GetService('RunService').Stepped:connect(function()
  2146. p.CFrame = me.Torso.CFrame * CFrame.new(0,0,0) * CFrame.Angles(0,0,0)
  2147. end)
  2148.  
  2149. wait(0.5)
  2150.  
  2151. me.Head.Transparency = 1
  2152.  
  2153. p:Remove()
  2154. end,o112)
  2155. end))
  2156. mas.Parent = workspace
  2157. mas:MakeJoints()
  2158. local mas1 = mas:GetChildren()
  2159. for i=1,#mas1 do
  2160. mas1[i].Parent = workspace
  2161. ypcall(function() mas1[i]:MakeJoints() end)
  2162. end
  2163. mas:Destroy()
  2164. for i=1,#cors do
  2165. coroutine.resume(cors[i])
  2166. end
Add Comment
Please, Sign In to add comment