refrop

time charizard

Dec 29th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 202.44 KB | None | 0 0
  1. --[[
  2. Stand: The King/Jade Emperor
  3. User: FujiWara Chujo
  4. ]]
  5. local Cn=CFrame.new
  6. local CA=CFrame.Angles
  7. local mr=math.rad
  8. local rn=math.random
  9. local mc=math.cos
  10. local Vn=Vector3.new
  11. local NR=NumberRange.new
  12. local NSeq=NumberSequence.new
  13. local plrs=game:service"Players"
  14. local wrk=game:service"Workspace"
  15. local deb=game:service"Debris"
  16. local IS=game:GetService("InsertService")
  17. local p=plrs.LocalPlayer
  18. local cam=wrk.CurrentCamera
  19. local char=p.Character
  20. local mouse=p:GetMouse()
  21. local lam=char["Left Arm"]
  22. local ram=char["Right Arm"]
  23. local llg=char["Left Leg"]
  24. local rlg=char["Right Leg"]
  25. local hed=char.Head
  26. local tor=char.Torso
  27. local larm = lam
  28. local rarm = ram
  29. local lleg = llg
  30. local rleg = rlg
  31. local torso = tor
  32. local hrp=char.HumanoidRootPart
  33. local PlayerSpeed = char.Humanoid.WalkSpeed
  34. local on=false
  35. local noRig=false
  36. local curws=16
  37. local sine=0
  38. local ift={}
  39. local ifxd=false
  40. local run=false
  41. local stance="Cane"
  42. local Speed = 16
  43. local Health = 9000
  44.  
  45. PlayerSpeed = 16
  46. --[[
  47. ypcall(function()
  48. char.Shirt:Destroy()
  49. char.Pants:Destroy()
  50. shirt = Instance.new("Shirt", char)
  51. shirt.Name = "Shirt"
  52. pants = Instance.new("Pants", char)
  53. pants.Name = "Pants"
  54. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=260998937"
  55. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=260361888"
  56. end)
  57. ]]
  58. Debounces = {
  59. CanAttack = true;
  60. NoIdl = false;
  61. Slashing = false;
  62. Slashed = false;
  63. RPunch = false;
  64. RPunched = false;
  65. LPunch = false;
  66. LPunched = false;
  67. }
  68.  
  69. local trappedTorsos = {}
  70.  
  71. ---Functions
  72.  
  73. function FndHm(flnm)
  74. for i,v in pairs(flnm:GetChildren()) do
  75. if v:IsA("Humanoid") then
  76. return v
  77. end
  78. end
  79. end
  80. local hum=FndHm(char)
  81. --hum.Name=""
  82.  
  83.  
  84. function chrDes(inst)
  85. local ret=nil
  86. for _,v in pairs(game.Players:GetChildren()) do
  87. if inst:IsDescendantOf(v) then
  88. ret=v
  89. break
  90. end
  91. end
  92. return ret
  93. end
  94.  
  95. --
  96. function get(a)
  97. local cont={}
  98. for i,v in pairs(a:GetChildren()) do
  99. if v==char then
  100. else
  101. table.insert(cont,v)
  102. pcall(function()
  103. for _,b in pairs(get(v)) do
  104. table.insert(cont,b)
  105. end
  106. end)
  107. end
  108. end
  109. return cont
  110. end
  111. for _,v in pairs(get(game.Workspace)) do
  112. if v:IsA("Sparkles") or v:IsA("Fire") then
  113. v:Destroy()
  114. end
  115. end
  116.  
  117. --
  118. function inT(qur,tbl)
  119. local a=false
  120. for i,v in pairs(tbl) do
  121. if v==qur then
  122. a=true
  123. break
  124. else
  125. a=false
  126. end
  127. end
  128. return a
  129. end
  130.  
  131. --
  132. function Tween(a,b,c)
  133. return a+(b-a)*c
  134. end
  135.  
  136. --
  137. function Avg(a,b)
  138. return CFrame.new((a.X+b.X)/2,(a.Y+b.Y)/2,(a.Z+b.Z)/2)
  139. end
  140.  
  141. --
  142. function Lerp(c1,c2,tim)
  143. local com1={c1.C0.X,c1.C0.Y,c1.C0.Z,c1.C0:toEulerAnglesXYZ()}
  144. local com2={c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  145. for i,v in pairs(com1) do
  146. com1[i]=v+(com2[i]-v)*tim
  147. end
  148. return Cn(com1[1],com1[2],com1[3])*CA(select(4,unpack(com1)))
  149. end
  150.  
  151. function RLerp(c1,c2,tim)
  152. return c1:lerp(c2,tim)
  153. end
  154.  
  155. --
  156. function ALerp(c1,c2,tim)
  157. local com1={c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  158. local com2={c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  159. for i,v in pairs(com1) do
  160. com1[i]=v+(com2[i]-v)*tim
  161. end
  162. return Cn(com1[1],com1[2],com1[3])*CA(select(4,unpack(com1)))
  163. end
  164.  
  165. --
  166. function Lerprs(ud,ud2,al)
  167. local a,b,c,d=ud.X.Scale,ud.X.Offset,ud.Y.Scale,ud.Y.Offset
  168. local a2,b2,c2,d2=ud2.X.Scale,ud2.X.Offset,ud2.Y.Scale,ud2.Y.Offset
  169. local x,y,z,w=(a+(a2-a)*al),(b+(b2-b)*al),(c+(c2-c)*al),(d+(d2-d)*al)
  170. return UDim2.new(x,y,z,w)
  171. end
  172.  
  173. --
  174. function newAnim(wld)
  175. local asd={["Weld"]=wld;["Int"]=0;["Frame"]=1;}
  176. asd.getFrames=function()
  177. local num=0
  178. for _,v in pairs(asd) do
  179. pcall(function()
  180. num=num+v.Length
  181. end)
  182. end
  183. return num
  184. end
  185. return asd
  186. end
  187.  
  188. --
  189. function newKF(tab,c0,lng,off)
  190. off=off or 1
  191. table.insert(tab,{["C0"]=c0,["Length"]=lng,["Offset"]=off})
  192. end
  193.  
  194. --
  195. function runKF(tab)
  196. tab.Int=tab.Int+1
  197. if tab.Int>=tab[tab.Frame].Length then
  198. tab.Frame=tab.Frame+1
  199. tab.Int=0
  200. if tab.Frame>#tab then
  201. tab.Frame=1
  202. end
  203. end
  204. tab.Weld.C0=RLerp(tab.Weld.C0,tab[tab.Frame].C0,(tab[tab.Frame].Offset/tab[tab.Frame].Length)*tab.Int)
  205. end
  206.  
  207. --
  208. function nwPrt(prnt,siz,cf,col)
  209. local prt=Instance.new("Part")
  210. prt.Parent=prnt
  211. prt.FormFactor=3
  212. prt.Name="Part"
  213. prt.Size=siz
  214. prt.CanCollide=false
  215. prt.Anchored=true
  216. prt.Locked=true
  217. prt.TopSurface=10
  218. prt.BottomSurface=10
  219. prt.FrontSurface=10
  220. prt.BackSurface=10
  221. prt.LeftSurface=10
  222. prt.RightSurface=10
  223. prt:BreakJoints()
  224. prt.CFrame=cf or CFrame.new(30,10,30)
  225. prt.Material="SmoothPlastic"
  226. prt.BrickColor=BrickColor.new(col)
  227. m=Instance.new("SpecialMesh",prt)
  228. m.MeshType=6
  229. return prt
  230. end
  231.  
  232. --
  233. function nwWdg(prnt,siz,cf,col)
  234. local prt=Instance.new("WedgePart")
  235. prt.Parent=prnt
  236. prt.FormFactor=3
  237. prt.Name="Part"
  238. prt.Size=siz
  239. prt.CanCollide=false
  240. prt.Anchored=false
  241. prt.Locked=true
  242. prt.TopSurface=0
  243. prt.BottomSurface=0
  244. prt:BreakJoints()
  245. prt.CFrame=cf or CFrame.new(30,10,30)
  246. prt.Material="SmoothPlastic"
  247. prt.BrickColor=BrickColor.new(col)
  248. return prt
  249. end
  250.  
  251. --
  252. function newGui(prnt,clsnm,siz,pos,bsp,bc,bt)
  253. local gui=Instance.new(clsnm,prnt)
  254. gui.Size=siz or UDim2.new(0,100,0,100)
  255. gui.Position=pos or UDim2.new(0,0,0,0)
  256. gui.BorderSizePixel=bsp or 0
  257. gui.BackgroundColor3=bc or Color3.new(0,0,0)
  258. gui.BackgroundTransparency=bt or 1
  259. return gui
  260. end
  261.  
  262. --
  263. function nwWld(wp0,wp1,wc0)
  264. wld = Instance.new("Weld",wp1)
  265. wld.Part0=wp0
  266. wld.Part1=wp1
  267. wld.C0=wc0 or Cn(0,0,0)
  268. return wld
  269. end
  270.  
  271. function newWeld(wp0,wp1,wc0x,wc0y,wc0z)
  272. local wld = Instance.new("Weld",wp1)
  273. wld.Part0 = wp0
  274. wld.Part1 = wp1
  275. wld.C0 = CFrame.new(wc0x,wc0y,wc0z)
  276. end
  277.  
  278. --
  279. function nwSnd(prnt,pch,vol,id)
  280. local s=Instance.new("Sound",prnt)
  281. s.Pitch=pch
  282. s.Volume=vol
  283. s.SoundId="rbxassetid://"..id
  284. s.PlayOnRemove=true
  285. return s
  286. end
  287.  
  288. --
  289. function newRay(start,face,range,wat)
  290. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  291. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  292. return rey,hit,pos
  293. end
  294.  
  295. function nooutline(part)
  296. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  297. end
  298.  
  299. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  300. local fp=it("Part")
  301. fp.formFactor=formfactor
  302. fp.Parent=parent
  303. fp.Reflectance=reflectance
  304. fp.Transparency=transparency
  305. fp.CanCollide=false
  306. fp.Locked=true
  307. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  308. fp.Name=name
  309. fp.Size=size
  310. fp.Position=Character.Torso.Position
  311. nooutline(fp)
  312. fp.Material=material
  313. fp:BreakJoints()
  314. return fp
  315. end
  316.  
  317. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  318. local mesh=it(Mesh)
  319. mesh.Parent=part
  320. if Mesh=="SpecialMesh" then
  321. mesh.MeshType=meshtype
  322. mesh.MeshId=meshid
  323. end
  324. mesh.Offset=offset
  325. mesh.Scale=scale
  326. return mesh
  327. end
  328.  
  329. function weld(parent,part0,part1,c0,c1)
  330. local weld=it("Weld")
  331. weld.Parent=parent
  332. weld.Part0=part0
  333. weld.Part1=part1
  334. weld.C0=c0
  335. weld.C1=c1
  336. return weld
  337. end
  338. TfwTimeStopped = false
  339. function Damagefunc(Part,hit,minim,maxim,knockback,Type,Property,Delay,KnockbackType,decreaseblock)
  340. if hit.Parent==nil then
  341. return
  342. end
  343. h=hit.Parent:FindFirstChild("Humanoid")
  344. for _,v in pairs(hit.Parent:children()) do
  345. if v:IsA("Humanoid") then
  346. h=v
  347. end
  348. end
  349. if hit.Parent.Parent:FindFirstChild("Torso")~=nil then
  350. h=hit.Parent.Parent:FindFirstChild("Humanoid")
  351. end
  352. if hit.Parent.className=="Hat" then
  353. hit=hit.Parent.Parent:findFirstChild("Head")
  354. end
  355. if h~=nil and hit.Parent.Name~=Character.Name and hit.Parent:FindFirstChild("Torso")~=nil then
  356. if hit.Parent:findFirstChild("DebounceHit")~=nil then
  357. if hit.Parent.DebounceHit.Value==true then
  358. return
  359. end
  360. end
  361. --[[if game.Players:GetPlayerFromCharacter(hit.Parent)~=nil then
  362. return
  363. end]]
  364. --hs(hit,1.2)
  365. c=Instance.new("ObjectValue")
  366. c.Name="creator"
  367. c.Value=game:service("Players").LocalPlayer
  368. c.Parent=h
  369. game:GetService("Debris"):AddItem(c,.5)
  370. Damage=math.random(minim,maxim)
  371. --h:TakeDamage(Damage)
  372. blocked=false
  373. block=hit.Parent:findFirstChild("Block")
  374. if block~=nil then
  375. print(block.className)
  376. if block.className=="NumberValue" then
  377. if block.Value>0 then
  378. blocked=true
  379. if decreaseblock==nil then
  380. block.Value=block.Value-1
  381. end
  382. end
  383. end
  384. if block.className=="IntValue" then
  385. if block.Value>0 then
  386. blocked=true
  387. if decreaseblock~=nil then
  388. block.Value=block.Value-1
  389. end
  390. end
  391. end
  392. end
  393. if blocked==false then
  394. --h:TakeDamage(Damage)
  395. if TfwTimeStopped == false then
  396. h.Health=h.Health-Damage
  397. ShowDamage((hit.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), "MUDA", 1.5, Part.BrickColor.Color)
  398. elseif TfwTimeStopped == true then
  399. repeat wait() until TfwTimeStopped == false
  400. h.Health=h.Health-0.1
  401. ShowDamage((hit.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), "MUDA", 1.5, Part.BrickColor.Color)
  402. end
  403. else
  404. h.Health=h.Health-(Damage/2)
  405. ShowDamage((hit.CFrame * CFrame.new(0, 0, (Part.Size.Z / 2)).p + Vector3.new(0, 1.5, 0)), -Damage, 1.5, BrickColor.new("Bright blue").Color)
  406. end
  407. if Type=="Knockdown" then
  408. hum=hit.Parent.Humanoid
  409. hum.PlatformStand=true
  410. coroutine.resume(coroutine.create(function(HHumanoid)
  411. swait(1)
  412. HHumanoid.PlatformStand=false
  413. end),hum)
  414. local angle=(hit.Position-(Property.Position+Vector3.new(0,0,0))).unit
  415. --hit.CFrame=CFrame.new(hit.Position,Vector3.new(angle.x,hit.Position.y,angle.z))*CFrame.fromEulerAnglesXYZ(math.pi/4,0,0)
  416. local bodvol=Instance.new("BodyVelocity")
  417. bodvol.velocity=angle*knockback
  418. bodvol.P=500
  419. bodvol.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
  420. bodvol.Parent=hit
  421. rl = Instance.new("BodyAngularVelocity")
  422. rl.P = 3000
  423. rl.maxTorque = Vector3.new(500000, 500000, 500000)
  424. rl.angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10))
  425. rl.Parent = hit
  426. game:GetService("Debris"):AddItem(bodvol,.5)
  427. game:GetService("Debris"):AddItem(rl,.5)
  428. elseif Type=="Attract" then
  429. hum=hit.Parent.Humanoid
  430. hum.PlatformStand=true
  431. coroutine.resume(coroutine.create(function(HHumanoid)
  432. swait(1)
  433. HHumanoid.PlatformStand=false
  434. end),hum)
  435. local angle=(hit.Position-(Property.Position-Vector3.new(0,0,0))).unit
  436. --hit.CFrame=CFrame.new(hit.Position,Vector3.new(angle.x,hit.Position.y,angle.z))*CFrame.fromEulerAnglesXYZ(math.pi/4,0,0)
  437. local bodvol=Instance.new("BodyVelocity")
  438. bodvol.velocity=-angle*-knockback
  439. bodvol.P=500
  440. bodvol.maxForce=Vector3.new(-8e+003, -8e+003, -8e+003)
  441. bodvol.Parent=hit
  442. rl = Instance.new("BodyAngularVelocity")
  443. rl.P = 3000
  444. rl.maxTorque = Vector3.new(500000, 500000, 500000)
  445. rl.angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10))
  446. rl.Parent = hit
  447. game:GetService("Debris"):AddItem(bodvol,.5)
  448. game:GetService("Debris"):AddItem(rl,.5)
  449. elseif Type=="MUDA" then
  450. hum=hit.Parent.Humanoid
  451. hum.PlatformStand=true
  452. coroutine.resume(coroutine.create(function(HHumanoid)
  453. swait(1)
  454. HHumanoid.PlatformStand=false
  455. end),hum)
  456. local angle=(hit.Position-(Property.Position+Vector3.new(0,0,0))).unit
  457. --hit.CFrame=CFrame.new(hit.Position,Vector3.new(angle.x,hit.Position.y,angle.z))*CFrame.fromEulerAnglesXYZ(math.pi/4,0,0)
  458. local bodvol=Instance.new("BodyVelocity")
  459. bodvol.velocity=angle*knockback
  460. bodvol.P=500
  461. bodvol.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
  462. bodvol.Parent=hit
  463. rl = Instance.new("BodyAngularVelocity")
  464. rl.P = 3000
  465. rl.maxTorque = Vector3.new(500000, 500000, 500000)
  466. rl.angularvelocity = Vector3.new(math.random(-3, 3), math.random(-3, 3), math.random(-3, 3))
  467. rl.Parent = hit
  468. game:GetService("Debris"):AddItem(bodvol,.5)
  469. game:GetService("Debris"):AddItem(rl,.5)
  470. elseif Type == "Killer Queen" then
  471. hum=hit.Parent.Humanoid
  472. hum.PlatformStand=true
  473. coroutine.resume(coroutine.create(function(HHumanoid)
  474. swait(1)
  475. HHumanoid.PlatformStand=false
  476. end),hum)
  477. local angle=(hit.Position-(Property.Position+Vector3.new(0,0,0))).unit
  478. --hit.CFrame=CFrame.new(hit.Position,Vector3.new(angle.x,hit.Position.y,angle.z))*CFrame.fromEulerAnglesXYZ(math.pi/4,0,0)
  479. local bodvol=Instance.new("BodyVelocity")
  480. bodvol.velocity=angle*knockback
  481. bodvol.P=500
  482. bodvol.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
  483. bodvol.Parent=hit
  484. rl = Instance.new("BodyAngularVelocity")
  485. rl.P = 3000
  486. rl.maxTorque = Vector3.new(500000, 500000, 500000)
  487. rl.angularvelocity = Vector3.new(math.random(-10, 10), math.random(-10, 10), math.random(-10, 10))
  488. rl.Parent = hit
  489. game:GetService("Debris"):AddItem(bodvol,.5)
  490. game:GetService("Debris"):AddItem(rl,.5)
  491. wait(3)
  492. KillerQueen = Instance.new("Explosion",hit)
  493. KillerQueen.Position = hit.Position
  494. elseif Type=="Normal" then
  495. vp=Instance.new("BodyVelocity")
  496. vp.P=500
  497. vp.maxForce=Vector3.new(math.huge,0,math.huge)
  498. --vp.velocity=Character.Torso.CFrame.lookVector*Knockback
  499. if KnockbackType==1 then
  500. vp.velocity=Property.CFrame.lookVector*knockback+Property.Velocity/1.05
  501. elseif KnockbackType==2 then
  502. vp.velocity=Property.CFrame.lookVector*knockback
  503. end
  504. if knockback>0 then
  505. vp.Parent=hit.Parent.Torso
  506. end
  507. game:GetService("Debris"):AddItem(vp,.5)
  508. elseif Type=="Up" then
  509. local bodyVelocity=Instance.new("BodyVelocity")
  510. bodyVelocity.velocity=vt(0,60,0)
  511. bodyVelocity.P=5000
  512. bodyVelocity.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
  513. bodyVelocity.Parent=hit
  514. game:GetService("Debris"):AddItem(bodyVelocity,1)
  515. rl=Instance.new("BodyAngularVelocity")
  516. rl.P=3000
  517. rl.maxTorque=Vector3.new(500000,500000,500000)
  518. rl.angularvelocity=Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30))
  519. rl.Parent=hit
  520. game:GetService("Debris"):AddItem(rl,.5)
  521. elseif Type=="Snare" then
  522. bp=Instance.new("BodyPosition")
  523. bp.P=2000
  524. bp.D=100
  525. bp.maxForce=Vector3.new(math.huge,math.huge,math.huge)
  526. bp.position=hit.Parent.Torso.Position
  527. bp.Parent=hit.Parent.Torso
  528. game:GetService("Debris"):AddItem(bp,1)
  529. elseif Type=="Target" then
  530. local Targetting = false
  531. if Targetting==false then
  532. ZTarget=hit.Parent.Torso
  533. coroutine.resume(coroutine.create(function(Part)
  534. so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5)
  535. swait(5)
  536. so("http://www.roblox.com/asset/?id=15666462",Part,1,1.5)
  537. end),ZTarget)
  538. local TargHum=ZTarget.Parent:findFirstChild("Humanoid")
  539. local targetgui=Instance.new("BillboardGui")
  540. targetgui.Parent=ZTarget
  541. targetgui.Size=UDim2.new(10,100,10,100)
  542. local targ=Instance.new("ImageLabel")
  543. targ.Parent=targetgui
  544. targ.BackgroundTransparency=1
  545. targ.Image="rbxassetid://4834067"
  546. targ.Size=UDim2.new(1,0,1,0)
  547. cam.CameraType="Scriptable"
  548. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  549. local dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
  550. workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  551. Targetting=true
  552. RocketTarget=ZTarget
  553. for i=1,Property do
  554. --while Targetting==true and Humanoid.Health>0 and Character.Parent~=nil do
  555. if Humanoid.Health>0 and Character.Parent~=nil and TargHum.Health>0 and TargHum.Parent~=nil and Targetting==true then
  556. swait()
  557. end
  558. --workspace.CurrentCamera.CoordinateFrame=CFrame.new(Head.CFrame.p,Head.CFrame.p+rmdir*100)
  559. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)
  560. dir=Vector3.new(cam.CoordinateFrame.lookVector.x,0,cam.CoordinateFrame.lookVector.z)
  561. cam.CoordinateFrame=CFrame.new(Head.CFrame.p,ZTarget.Position)*cf(0,5,10)*euler(-0.3,0,0)
  562. end
  563. Targetting=false
  564. RocketTarget=nil
  565. targetgui.Parent=nil
  566. cam.CameraType="Custom"
  567. end
  568. end
  569. local debounce=Instance.new("BoolValue")
  570. debounce.Name="DebounceHit"
  571. debounce.Parent=hit.Parent
  572. debounce.Value=true
  573. game:GetService("Debris"):AddItem(debounce,Delay)
  574. c=Instance.new("ObjectValue")
  575. c.Name="creator"
  576. c.Value=Player
  577. c.Parent=h
  578. game:GetService("Debris"):AddItem(c,.5)
  579. end
  580. end
  581.  
  582. function ShowDamage(Pos, Text, Time, Color)
  583. local Rate = (1 / 30)
  584. local Pos = (Pos or Vector3.new(0, 0, 0))
  585. local Text = (Text or "")
  586. local Time = (Time or 2)
  587. local Color = (Color or Color3.new(1, 0, 0))
  588. local EffectPart = part("Custom",workspace,"Neon",0,1,BrickColor.new(Color),"Effect",vt(0,0,0))
  589. EffectPart.Anchored = true
  590. local BillboardGui = Instance.new("BillboardGui")
  591. BillboardGui.Size = UDim2.new(3, 3, 3, 3)
  592. BillboardGui.Adornee = EffectPart
  593. local TextLabel = Instance.new("TextLabel")
  594. TextLabel.BackgroundTransparency = 1
  595. TextLabel.Size = UDim2.new(3, 3, 3, 3)
  596. TextLabel.Text = Text
  597. TextLabel.TextColor3 = Color
  598. TextLabel.TextStrokeColor3 = BrickColor.new("Really black").Color
  599. TextLabel.TextScaled = true
  600. TextLabel.TextStrokeTransparency = 0
  601. TextLabel.Font = Enum.Font.SourceSansBold
  602. TextLabel.Parent = BillboardGui
  603. BillboardGui.Parent = EffectPart
  604. game.Debris:AddItem(EffectPart, (Time + 0.1))
  605. EffectPart.Parent = game:GetService("Workspace")
  606. Delay(0, function()
  607. local Frames = (Time / Rate)
  608. for Frame = 1, Frames do
  609. wait(Rate)
  610. local Percent = (Frame / Frames)
  611. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  612. TextLabel.TextTransparency = Percent
  613. TextLabel.TextStrokeTransparency = Percent
  614. end
  615. if EffectPart and EffectPart.Parent then
  616. EffectPart:Destroy()
  617. end
  618. end)
  619. end
  620.  
  621. Player = p
  622. workspace[Player.Name].Archivable=true
  623. pchar = workspace[Player.Name]:Clone() --Create("Model",{Parent=workspace})
  624. pchar.Parent=workspace[Player.Name]
  625. torso=pchar.Torso
  626. humane=pchar.Humanoid
  627. pchar.Name= "The King"
  628. pl=pchar
  629. humane.MaxHealth=Health
  630. wait()
  631. humane.Health=Health
  632. humane.WalkSpeed=Speed
  633.  
  634. pchar.Head.face:remove()
  635.  
  636. --m:ClearAllChildren()
  637. ---Weld
  638.  
  639. local law=nwWld(tor,lam,Cn(-1.5,0.5,0))
  640. law.C1=CFrame.new(0,0.5,0)
  641. local raw=nwWld(tor,ram,Cn(1.5,0.5,0))
  642. raw.C1=CFrame.new(0,0.5,0)
  643. local hew=nwWld(tor,hed,Cn(0,1.5,0))
  644. local llw=nwWld(tor,llg,Cn(-0.5,-1,0))
  645. llw.C1=CFrame.new(0,1,0)
  646. local rlw=nwWld(tor,rlg,Cn(0.5,-1,0))
  647. rlw.C1=CFrame.new(0,1,0)
  648. local tow=nwWld(hrp,tor,Cn(0,-1,0))
  649. tow.C1=CFrame.new(0,-1,0)
  650.  
  651. local hrp2 = pchar.HumanoidRootPart
  652. local tor2 = torso
  653. local hed2 = pchar.Head
  654. local lam2=pchar["Left Arm"]
  655. local ram2=pchar["Right Arm"]
  656. local llg2=pchar["Left Leg"]
  657. local rlg2=pchar["Right Leg"]
  658.  
  659. local law2=nwWld(tor2,lam2,Cn(-1.5,0.5,0))
  660. law2.C1=CFrame.new(0,0.5,0)
  661. local raw2=nwWld(tor2,ram2,Cn(1.5,0.5,0))
  662. raw2.C1=CFrame.new(0,0.5,0)
  663. local hew2=nwWld(torso,hed2,Cn(0,1.5,0))
  664. local llw2=nwWld(torso,llg2,Cn(-0.5,-1,0))
  665. llw2.C1=CFrame.new(0,1,0)
  666. local rlw2=nwWld(tor2,rlg2,Cn(0.5,-1,0))
  667. rlw2.C1=CFrame.new(0,1,0)
  668. local tow2=nwWld(hrp2,tor2,Cn(0,-1,0))
  669. tow2.C1=CFrame.new(0,-1,0)
  670.  
  671.  
  672. local laD=CFrame.new(-1.5,0.5,0)
  673. local raD=CFrame.new(1.5,0.5,0)
  674. local hD=CFrame.new(0,1.5,0)
  675. local tD=CFrame.new(0,-1,0)
  676. local llD=CFrame.new(-0.5,-1,0)
  677. local rlD=CFrame.new(0.5,-1,0)
  678.  
  679. ---Build
  680.  
  681. ---Animations
  682.  
  683. --Idle
  684. local heid=newAnim(hew)
  685. newKF(heid,hD*CA(mr(-5.5),0,0),50,0.3)
  686. newKF(heid,hD*CA(mr(-4),0,0),40,0.3)
  687. local toid=newAnim(tow)
  688. newKF(toid,tD*Cn(0,2.0125,0)*CA(mr(6),0,0),50,0.3)
  689. newKF(toid,tD*Cn(0,3.0125,0)*CA(mr(5),0,0),40,0.3)
  690. local laid=newAnim(law)
  691. newKF(laid,laD*Cn(0,0.0125,0)*CA(mr(-20),0,mr(0)),10,0.2)
  692. newKF(laid,laD*Cn(0,-0.0125,0)*CA(mr(-20),0,mr(0)),10,0.2)
  693. newKF(laid,laD*Cn(0,0.0125,0)*CA(mr(-20),0,mr(0)),10,0.2)
  694. newKF(laid,laD*Cn(0,-0.0125,0)*CA(mr(-20),0,mr(0)),10,0.2)
  695. local raid=newAnim(raw)
  696. newKF(raid,raD*Cn(0,-0.0125,0)*CA(mr(20),0,mr(0)),50,0.3)
  697. newKF(raid,raD*Cn(0,0.0125,0)*CA(mr(0),0,mr(0)),40,0.3)
  698. local llid=newAnim(llw)
  699. newKF(llid,llD*Cn(0,0.0125,0)*CA(mr(-16),0,0),50,0.3)
  700. newKF(llid,llD*Cn(0,-0.0125,0)*CA(mr(-15),0,mr(0)),40,0.3)
  701. local rlid=newAnim(rlw)
  702. newKF(rlid,rlD*Cn(0,0.0125,0)*CA(mr(-6),0,0),50,0.3)
  703. newKF(rlid,rlD*Cn(0,-0.0125,0)*CA(mr(-5),0,mr(0)),40,0.3)
  704.  
  705. local heid2=newAnim(hew2)
  706. newKF(heid2,hD*CA(mr(16),0,0),40,0.3)
  707. newKF(heid2,hD*CA(mr(14),0,0),40,0.3)
  708. local toid2=newAnim(tow2)
  709. newKF(toid2,tD*Cn(0,0.5,3)*CA(mr(0),0,0),50,1)
  710. newKF(toid2,tD*Cn(0,1,3)*CA(mr(0),0,0),40,1)
  711. local laid2=newAnim(law2)
  712. newKF(laid2,laD*Cn(0.5,0.0125,-1)*CA(mr(20),mr(50),mr(20)),50,0.3)
  713. newKF(laid2,laD*Cn(0.5,-0.0125,-1)*CA(mr(20),mr(50),mr(20)),40,0.3)
  714. local raid2=newAnim(raw2)
  715. newKF(raid2,raD*Cn(-0.5,-0.0125,-1)*CA(mr(20),mr(-50),mr(-20)),50,0.3)
  716. newKF(raid2,raD*Cn(-0.5,0.0125,-1)*CA(mr(20),mr(-50),mr(-20)),40,0.3)
  717. local llid2=newAnim(llw2)
  718. newKF(llid2,llD*Cn(0,0.0125,0)*CA(mr(0),0,0),50,0.3)
  719. newKF(llid2,llD*Cn(0,-0.0125,0)*CA(mr(0),0,mr(0)),40,0.3)
  720. local rlid2=newAnim(rlw2)
  721. newKF(rlid2,rlD*Cn(0,0.0125,0)*CA(mr(0),0,0),50,0.3)
  722. newKF(rlid2,rlD*Cn(0,-0.0125,0)*CA(mr(0),0,mr(0)),40,0.3)
  723.  
  724. --Walk
  725. local hewk=newAnim(hew)
  726. newKF(hewk,hD*CA(mr(5),mr(0),0),10,0.2)
  727. newKF(hewk,hD*CA(mr(5),0,0),10,0.2)
  728. newKF(hewk,hD*CA(mr(5),mr(0),0),10,0.2)
  729. newKF(hewk,hD*CA(mr(5),0,0),10,0.2)
  730. local towk=newAnim(tow)
  731. newKF(towk,tD*Cn(0,2.0125,0)*CA(mr(-5),mr(0),0),50,0.4)
  732. newKF(towk,tD*Cn(0,3.0125,0)*CA(mr(-5),mr(0),0),40,0.4)
  733. local lawk=newAnim(law)
  734. newKF(lawk,laD*CA(mr(-40),0,0),20,0.4)
  735. local rawk=newAnim(raw)
  736. newKF(rawk,raD*CA(mr(-40),0,0),20,0.4)
  737. local llwk=newAnim(llw)
  738. newKF(llwk,llD*Cn(0,0.0125,0)*CA(mr(-16),0,0),50,0.3)
  739. newKF(llwk,llD*Cn(0,-0.0125,0)*CA(mr(-15),0,mr(0)),40,0.3)
  740. local rlwk=newAnim(rlw)
  741. newKF(rlwk,rlD*Cn(0,0.0125,0)*CA(mr(-6),0,0),50,0.3)
  742. newKF(rlwk,rlD*Cn(0,-0.0125,0)*CA(mr(-5),0,mr(0)),40,0.3)
  743.  
  744.  
  745. --Sprint
  746. local hesp=newAnim(hew)
  747. newKF(hesp,hD*CA(mr(5),mr(0),0),10,0.2)
  748. newKF(hesp,hD*CA(mr(5),0,0),10,0.2)
  749. newKF(hesp,hD*CA(mr(5),mr(0),0),10,0.2)
  750. newKF(hesp,hD*CA(mr(5),0,0),10,0.2)
  751. local tosp=newAnim(tow)
  752. newKF(tosp,tD*Cn(0,2.0125,0)*CA(mr(-5),mr(10),0),10,0.4)
  753. newKF(tosp,tD*Cn(0,3.0125,0)*CA(mr(-5),mr(-10),0),10,0.4)
  754. local lasp=newAnim(law)
  755. newKF(lasp,laD*Cn(0,-0.1,-0.2)*CA(mr(60),0,0),20,0.4)
  756. newKF(lasp,laD*CA(mr(-40),0,0),20,0.4)
  757. local rasp=newAnim(raw)
  758. newKF(rasp,raD*CA(mr(-40),0,0),20,0.4)
  759. newKF(rasp,raD*Cn(0,-0.1,-0.2)*CA(mr(60),0,0),20,0.4)
  760. local llsp=newAnim(llw)
  761. newKF(llsp,llD*Cn(0,0.0125,0)*CA(mr(-16),0,0),50,0.3)
  762. newKF(llsp,llD*Cn(0,-0.0125,0)*CA(mr(-15),0,mr(0)),40,0.3)
  763. local rlsp=newAnim(rlw)
  764. newKF(rlsp,rlD*Cn(0,0.0125,0)*CA(mr(-6),0,0),50,0.3)
  765. newKF(rlsp,rlD*Cn(0,-0.0125,0)*CA(mr(-5),0,mr(0)),40,0.3)
  766.  
  767. --Jump
  768. local hejp=newAnim(hew)
  769. newKF(hejp,hD*CA(mr(60),0,0),8,0.6)
  770. newKF(hejp,hD*CA(mr(60),0,0),8,0.6)
  771. local tojp=newAnim(tow)
  772. newKF(tojp,tD*CA(mr(0),0,0),8,0.6)
  773. newKF(tojp,tD*CA(mr(0),0,0),8,0.6)
  774. local lajp=newAnim(law)
  775. newKF(lajp,laD*CA(mr(0),0,mr(-5)),16,0.4)
  776. newKF(lajp,laD*CA(mr(0),0,mr(-5)),16,0.4)
  777. local rajp=newAnim(raw)
  778. newKF(rajp,raD*CA(mr(0),0,mr(5)),16,0.4)
  779. newKF(rajp,raD*CA(mr(0),0,mr(5)),16,0.4)
  780. local lljp=newAnim(llw)
  781. newKF(lljp,llD*CA(0,0,mr(-5)),16,0.4)
  782. newKF(lljp,llD*CA(0,0,mr(-5)),16,0.4)
  783. local rljp=newAnim(rlw)
  784. newKF(rljp,rlD*CA(0,0,mr(5)),16,0.4)
  785. newKF(rljp,rlD*CA(0,0,mr(5)),16,0.4)
  786.  
  787. --Freefall
  788. local heff=newAnim(hew)
  789. newKF(heff,hD*CA(mr(-5),0,0),8,0.6)
  790. newKF(heff,hD*CA(mr(-5),0,0),8,0.6)
  791. local toff=newAnim(tow)
  792. newKF(toff,tD*CA(mr(0),0,0),8,0.6)
  793. newKF(toff,tD*CA(mr(0),0,0),8,0.6)
  794. local laff=newAnim(law)
  795. newKF(laff,laD*CA(mr(140),0,0),16,0.4)
  796. newKF(laff,laD*CA(mr(140),0,0),16,0.4)
  797. local raff=newAnim(raw)
  798. newKF(raff,raD*CA(mr(140),0,0),16,0.4)
  799. newKF(raff,raD*CA(mr(140),0,0),16,0.4)
  800. local llff=newAnim(llw)
  801. newKF(llff,llD*CA(0,0,mr(-5)),16,0.4)
  802. newKF(llff,llD*CA(0,0,mr(-5)),16,0.4)
  803. local rlff=newAnim(rlw)
  804. newKF(rlff,rlD*CA(0,0,mr(5)),16,0.4)
  805. newKF(rlff,rlD*CA(0,0,mr(5)),16,0.4)
  806.  
  807. --Time Has Stopped
  808. local hesp2=newAnim(hew)
  809. newKF(hesp2,hD*CA(mr(-30),mr(0),mr(0)),10,0.5)
  810. local tosp2=newAnim(tow)
  811. newKF(tosp2,tD*Cn(0,0,0)*CA(mr(30),mr(0),mr(0)),10,0.5)
  812. local lasp2=newAnim(law)
  813. newKF(lasp2,laD*CA(mr(90),mr(0),mr(-60)),20,1.5)
  814. local rasp2=newAnim(raw)
  815. newKF(rasp2,raD*CA(mr(90),mr(0),mr(60)),20,1.5)
  816. local llsp2=newAnim(llw)
  817. newKF(llsp2,llD*Cn(0,0,0)*CA(mr(-30),mr(0),mr(0)),20,0.5)
  818. local rlsp2=newAnim(rlw)
  819. newKF(rlsp2,rlD*Cn(0,0,0)*CA(mr(-30),0,mr(0)),10,0.5)
  820.  
  821. local hesp3=newAnim(hew2)
  822. newKF(hesp3,hD*CA(mr(-15),mr(0),mr(0)),50,0.2)
  823. local tosp3=newAnim(tow2)
  824. newKF(tosp3,tD*Cn(0,1,3)*CA(mr(0),mr(0),mr(0)),50,0.4)
  825. local lasp3=newAnim(law2)
  826. newKF(lasp3,laD*CA(mr(80),mr(0),mr(65)),30,0.4)
  827. newKF(lasp3,laD*CA(mr(120),mr(0),mr(-60)),50,0.4)
  828. local rasp3=newAnim(raw2)
  829. newKF(rasp3,raD*CA(mr(80),mr(0),mr(-65)),30,0.4)
  830. newKF(rasp3,raD*CA(mr(120),mr(0),mr(60)),50,0.4)
  831. local llsp3=newAnim(llw2)
  832. newKF(llsp3,llD*CA(mr(0),mr(0),mr(1.5)),50,0.4)
  833. local rlsp3=newAnim(rlw2)
  834. newKF(rlsp3,rlD*CA(mr(0),mr(0),mr(-1.5)),50,0.4)
  835.  
  836. local hesp4=newAnim(hew2)
  837. newKF(hesp4,hD*CA(mr(-10),mr(0),mr(0)),10,0.2)
  838. local tosp4=newAnim(tow2)
  839. newKF(tosp4,tD*Cn(0,1,3)*CA(mr(0),mr(0),mr(0)),10,0.4)
  840. local lasp4=newAnim(law2)
  841. newKF(lasp4,laD*CA(mr(120),mr(0),mr(-60)),20,0.4)
  842. local rasp4=newAnim(raw2)
  843. newKF(rasp4,raD*CA(mr(120),mr(0),mr(60)),20,0.4)
  844. local llsp4=newAnim(llw2)
  845. newKF(llsp4,llD*CA(mr(0),mr(0),mr(1.5)),20,0.4)
  846. local rlsp4=newAnim(rlw2)
  847. newKF(rlsp4,rlD*CA(mr(0),mr(0),mr(-1.5)),10,0.4)
  848.  
  849. --Let time flow again
  850. local hetoki=newAnim(hew)
  851. newKF(hetoki,hD*CA(mr(0),mr(0),mr(0)),10,0.2)
  852. local totoki=newAnim(tow)
  853. newKF(totoki,tD*Cn(0,0,0)*CA(mr(0),mr(0),mr(0)),10,0.4)
  854. local latoki=newAnim(law)
  855. newKF(latoki,laD*Cn(0,-0.1,-0.2)*CA(mr(0),mr(0),mr(0)),20,0.4)
  856. local ratoki=newAnim(raw)
  857. newKF(ratoki,raD*CA(mr(0),mr(0),mr(0)),20,0.4)
  858. local lltoki=newAnim(llw)
  859. newKF(lltoki,llD*CA(mr(0),mr(0),mr(0)),20,0.4)
  860. local rltoki=newAnim(rlw)
  861. newKF(rltoki,rlD*Cn(0,0,0)*CA(mr(0),mr(0),mr(0)),10,0.4)
  862. --//Example of Keyframe
  863. --[[
  864. local hesp2=newAnim(hew)
  865. newKF(hesp2,hD*CA(mr(0),mr(0),mr(0)),10,0.2)
  866. local tosp2=newAnim(tow)
  867. newKF(tosp2,tD*CA(mr(0),mr(0),mr(0)),10,0.4)
  868. local lasp2=newAnim(law)
  869. newKF(lasp2,laD*CA(mr(0),mr(0),mr(0)),20,0.4)
  870. local rasp2=newAnim(raw)
  871. newKF(rasp2,raD*CA(mr(0),mr(0),mr(0)),20,0.4)
  872. local llsp2=newAnim(llw)
  873. newKF(llsp2,llD*CA(mr(0),mr(0),mr(0)),20,0.4)
  874. local rlsp2=newAnim(rlw)
  875. newKF(rlsp2,rlD*CA(mr(0),mr(0),mr(0)),10,0.4)
  876. ]]
  877. function onDamage(Part)
  878. if Part:findFirstChild("Humanoid") == nil and Part:findFirstChild("BodyVelocity") ~= nil or Part:findFirstChild("Humanoid") == nil and Part:findFirstChild("RocketPropulsion") ~= nil then
  879. Part.Anchored = true
  880. if Part:findFirstChild("Mesh") ~= nil then
  881. z = Part:findFirstChild("Mesh")
  882. for i = 1,5 do
  883. z.Scale = z.Scale + Vector3.new(1,1,1)
  884. wait(0.05)
  885. end
  886. end
  887. end
  888. end
  889.  
  890. function trappedTorsos:isTrapped(t)
  891. for nildata, index in next,self do
  892. if index==t then
  893. return true
  894. end
  895. end
  896. return false
  897. end
  898.  
  899. function trappedTorsos:Capture(hit)
  900. if hit:isA'BasePart' then
  901. if not trappedTorsos:isTrapped(hit) and not hit:IsDescendantOf(char) then
  902. table.insert(trappedTorsos, hit)
  903. hit.Anchored = true --trapped!
  904. --print'trapped!'
  905. end
  906. end
  907. end
  908.  
  909. function trappedTorsos:ReleasePart(hit)
  910. if hit:isA'BasePart' then
  911. if trappedTorsos:isTrapped(hit) and not hit:IsDescendantOf(char) then
  912. table.remove(trappedTorsos, hit)
  913. hit.Anchored = false --trapped!
  914. --print'trapped!'
  915. end
  916. end
  917. end
  918.  
  919. function trappedTorsos:Trip(hit)
  920. if hit:isA'BasePart' then
  921. if not hit:IsDescendantOf(char) then
  922. hit.Parent.Humanoid.PlatformStand = true
  923. end
  924. end
  925. end
  926.  
  927. function trappedTorsos:Repel(hit)
  928. if hit:isA'BasePart' then
  929. if not hit:IsDescendantOf(char) then
  930. Damagefunc(torso,hit,5,15,math.random(100,100),"Knockdown",RootPart,.2,1)
  931. end
  932. end
  933. end
  934.  
  935. function trappedTorsos:Attract(hit)
  936. if hit:isA'BasePart' then
  937. if not hit:IsDescendantOf(char) then
  938. Damagefunc(torso,hit,5,15,math.random(100,100),"Attact",RootPart,.2,1)
  939. end
  940. end
  941. end
  942.  
  943. function trappedTorsos:Target(hit)
  944. if hit:isA'BasePart' then
  945. if not hit:IsDescendantOf(char) then
  946. Target = hit
  947. end
  948. end
  949. end
  950.  
  951. function trappedTorsos:Release()
  952. for i,v in next, self do
  953. if type(v)=='userdata' then
  954. if v:isA('BasePart') then
  955. v.Anchored = false
  956. self[i] = nil
  957. end
  958. end
  959. end
  960. end
  961.  
  962. --Za Warudo
  963. Attacking = false
  964. WasOn = true
  965. function TheWorld(Mode)
  966. if Mode == "Time Stop" then
  967. if WasOn == true and StandOn == false then
  968. StandOn = true
  969. WasOn = false
  970. end
  971. wait()
  972. local TimeStop = Instance.new("Sound",tor)
  973. TimeStop.SoundId = "rbxassetid://520743795"
  974. TimeStop.Looped = false
  975. TimeStop.Volume = 1
  976. local AreaOfEffect = Instance.new("Part",char)
  977. AreaOfEffect.Position = tor.Position
  978. AreaOfEffect.Size = Vector3.new(0.01,0.01,0.01)
  979. AreaOfEffect.Anchored = true
  980. AreaOfEffect.CanCollide = false
  981. AreaOfEffect.BrickColor = BrickColor.new("Institutional white")
  982. AreaOfEffect.Transparency = 0.9
  983. AreaOfEffect.Shape = "Ball"
  984. AreaOfEffect.Material = "Neon"
  985. TimeStop:Play()
  986. for i = 1,10 do
  987. AreaOfEffect.Size = AreaOfEffect.Size + Vector3.new(4.1,4.1,4.1)
  988. AreaOfEffect.CFrame = char.Torso.CFrame
  989. wait()
  990. end
  991. coroutine.wrap(function()
  992. do local me={}
  993.  
  994. me.plrs = game:service'Workspace':children''
  995.  
  996. function me:getNear(mag)
  997. local rtn = {}
  998.  
  999. for k,v in next,me.plrs do
  1000. local chxr = v
  1001.  
  1002. if chxr then
  1003. if chxr:findFirstChild'Torso' then
  1004. local pos = (chxr.Torso.Position-tor.Position).magnitude
  1005.  
  1006. if pos<=mag then
  1007. for a,b in pairs(chxr:children()) do
  1008. if b:IsA("BasePart") then
  1009. table.insert(rtn, b)
  1010. end
  1011. end
  1012. end
  1013. end
  1014. end
  1015. end
  1016. return rtn
  1017. end
  1018.  
  1019. for no, torso in ipairs(me:getNear(25)) do
  1020. --print(torso:GetFullName())
  1021. --print(torso:GetFullName())
  1022. trappedTorsos:Capture(torso)
  1023. end
  1024.  
  1025.  
  1026. end
  1027. end)()
  1028. AreaOfEffect:Destroy()
  1029. workspace.Gravity = 70
  1030. for i,v in pairs(char:children()) do
  1031. if v:IsA("Part") then
  1032. v.Anchored = false
  1033. end
  1034. if v:IsA("Hat") then
  1035. v.Handle.Anchored = false
  1036. end
  1037. end
  1038. for i,v in pairs(pchar:children()) do
  1039. if v:IsA("Part") then
  1040. v.Anchored = false
  1041. end
  1042. if v:IsA("Hat") then
  1043. v.Handle.Anchored = false
  1044. end
  1045. end
  1046. if WasOn == false then
  1047. StandOn = false
  1048. WasOn = true
  1049. end
  1050. hum.WalkSpeed = 16
  1051. end
  1052. if Mode == "Light Gravity" then
  1053. LightGrav = true
  1054. if WasOn == true and StandOn == false then
  1055. StandOn = true
  1056. WasOn = false
  1057. end
  1058. wait()
  1059. local TimeStop = Instance.new("Sound",char)
  1060. TimeStop.SoundId = "rbxassetid://520743795"
  1061. TimeStop.Looped = false
  1062. TimeStop.Volume = 1
  1063. local AreaOfEffect = Instance.new("Part",char)
  1064. AreaOfEffect.Position = tor.Position
  1065. AreaOfEffect.Size = Vector3.new(0.01,0.01,0.01)
  1066. AreaOfEffect.Anchored = true
  1067. AreaOfEffect.CanCollide = false
  1068. AreaOfEffect.BrickColor = BrickColor.new("Institutional white")
  1069. AreaOfEffect.Transparency = 0.9
  1070. AreaOfEffect.Shape = "Ball"
  1071. AreaOfEffect.Material = "Neon"
  1072. TimeStop:Play()
  1073. for i = 1,10 do
  1074. AreaOfEffect.Size = AreaOfEffect.Size + Vector3.new(4.1,4.1,4.1)
  1075. AreaOfEffect.CFrame = char.Torso.CFrame
  1076. wait()
  1077. end
  1078. AreaOfEffect:Destroy()
  1079. workspace.Gravity = -196.2
  1080. for i,v in pairs(char:children()) do
  1081. if v:IsA("Part") then
  1082. v.Anchored = false
  1083. end
  1084. if v:IsA("Hat") then
  1085. v.Handle.Anchored = false
  1086. end
  1087. end
  1088. for i,v in pairs(pchar:children()) do
  1089. if v:IsA("Part") then
  1090. v.Anchored = false
  1091. end
  1092. if v:IsA("Hat") then
  1093. v.Handle.Anchored = false
  1094. end
  1095. end
  1096. if WasOn == false then
  1097. StandOn = false
  1098. WasOn = true
  1099. end
  1100. HeavyGrav = false
  1101. NormalGrav = false
  1102. hum.WalkSpeed = 16
  1103. end
  1104. if Mode == "Normal Gravity" then
  1105. NormalGrav = true
  1106. LightGrav = false
  1107. HeavyGrav = false
  1108. if WasOn == true and StandOn == false then
  1109. StandOn = true
  1110. WasOn = false
  1111. end
  1112. wait()
  1113. local TimeStop = Instance.new("Sound",char)
  1114. TimeStop.SoundId = "rbxassetid://520743795"
  1115. TimeStop.Looped = false
  1116. TimeStop.Volume = 1
  1117. local AreaOfEffect = Instance.new("Part",char)
  1118. AreaOfEffect.Position = tor.Position
  1119. AreaOfEffect.Size = Vector3.new(0.01,0.01,0.01)
  1120. AreaOfEffect.Anchored = true
  1121. AreaOfEffect.CanCollide = false
  1122. AreaOfEffect.BrickColor = BrickColor.new("Institutional white")
  1123. AreaOfEffect.Transparency = 0.9
  1124. AreaOfEffect.Shape = "Ball"
  1125. AreaOfEffect.Material = "Neon"
  1126. TimeStop:Play()
  1127. for i = 1,10 do
  1128. AreaOfEffect.Size = AreaOfEffect.Size + Vector3.new(4.1,4.1,4.1)
  1129. AreaOfEffect.CFrame = char.Torso.CFrame
  1130. wait()
  1131. end
  1132. AreaOfEffect:Destroy()
  1133. workspace.Gravity = 196.2
  1134. for i,v in pairs(char:children()) do
  1135. if v:IsA("Part") then
  1136. v.Anchored = false
  1137. end
  1138. if v:IsA("Hat") then
  1139. v.Handle.Anchored = false
  1140. end
  1141. end
  1142. for i,v in pairs(pchar:children()) do
  1143. if v:IsA("Part") then
  1144. v.Anchored = false
  1145. end
  1146. if v:IsA("Hat") then
  1147. v.Handle.Anchored = false
  1148. end
  1149. end
  1150. if WasOn == false then
  1151. StandOn = false
  1152. WasOn = true
  1153. end
  1154. hum.WalkSpeed = 16
  1155. end
  1156. if Mode == "Heavy Gravity" then
  1157. HeavyGrav = true
  1158. if WasOn == true and StandOn == false then
  1159. StandOn = true
  1160. WasOn = false
  1161. end
  1162. wait()
  1163. local TimeStop = Instance.new("Sound",char)
  1164. TimeStop.SoundId = "rbxassetid://520743795"
  1165. TimeStop.Looped = false
  1166. TimeStop.Volume = 1
  1167. local AreaOfEffect = Instance.new("Part",char)
  1168. AreaOfEffect.Position = tor.Position
  1169. AreaOfEffect.Size = Vector3.new(0.01,0.01,0.01)
  1170. AreaOfEffect.Anchored = true
  1171. AreaOfEffect.CanCollide = false
  1172. AreaOfEffect.BrickColor = BrickColor.new("Institutional white")
  1173. AreaOfEffect.Transparency = 0.9
  1174. AreaOfEffect.Shape = "Ball"
  1175. AreaOfEffect.Material = "Neon"
  1176. TimeStop:Play()
  1177. for i = 1,10 do
  1178. AreaOfEffect.Size = AreaOfEffect.Size + Vector3.new(4.1,4.1,4.1)
  1179. AreaOfEffect.CFrame = char.Torso.CFrame
  1180. wait()
  1181. end
  1182. coroutine.wrap(function()
  1183. do local me={}
  1184.  
  1185. me.plrs = game:service'Workspace':children''
  1186.  
  1187. function me:getNear(mag)
  1188. local rtn = {}
  1189.  
  1190. for k,v in next,me.plrs do
  1191. local chxr = v
  1192.  
  1193. if chxr then
  1194. if chxr:findFirstChild'Torso' then
  1195. local pos = (chxr.Torso.Position-tor.Position).magnitude
  1196.  
  1197. if pos<=mag then
  1198. for a,b in pairs(chxr:children()) do
  1199. if b:IsA("BasePart") then
  1200. table.insert(rtn, b)
  1201. end
  1202. end
  1203. end
  1204. end
  1205. end
  1206. end
  1207. return rtn
  1208. end
  1209.  
  1210. for no, torso in ipairs(me:getNear(5555)) do
  1211. --print(torso:GetFullName())
  1212. --print(torso:GetFullName())
  1213. trappedTorsos:Trip(torso)
  1214. end
  1215.  
  1216.  
  1217. end
  1218. end)()
  1219. AreaOfEffect:Destroy()
  1220. workspace.Gravity = math.huge
  1221. for i,v in pairs(char:children()) do
  1222. if v:IsA("Part") then
  1223. v.Anchored = false
  1224. end
  1225. if v:IsA("Hat") then
  1226. v.Handle.Anchored = false
  1227. end
  1228. end
  1229. for i,v in pairs(pchar:children()) do
  1230. if v:IsA("Part") then
  1231. v.Anchored = false
  1232. end
  1233. if v:IsA("Hat") then
  1234. v.Handle.Anchored = false
  1235. end
  1236. end
  1237. if WasOn == false then
  1238. StandOn = false
  1239. WasOn = true
  1240. end
  1241. NormalGrav = false
  1242. LightGrav = false
  1243. hum.WalkSpeed = 16
  1244. end
  1245. if Mode == "World Time Stop" then
  1246. if WasOn == true and StandOn == false then
  1247. StandOn = true
  1248. WasOn = false
  1249. end
  1250. wait()
  1251. local TimeStop = Instance.new("Sound",char)
  1252. TimeStop.SoundId = "rbxassetid://520743795"
  1253. TimeStop.Looped = false
  1254. TimeStop.Volume = 1
  1255. local AreaOfEffect = Instance.new("Part",char)
  1256. AreaOfEffect.Position = tor.Position
  1257. AreaOfEffect.Size = Vector3.new(0.01,0.01,0.01)
  1258. AreaOfEffect.Anchored = true
  1259. AreaOfEffect.CanCollide = false
  1260. AreaOfEffect.BrickColor = BrickColor.new("Institutional white")
  1261. AreaOfEffect.Transparency = 0.9
  1262. AreaOfEffect.Shape = "Ball"
  1263. AreaOfEffect.Material = "Neon"
  1264. TimeStop:Play()
  1265. for i = 1,10 do
  1266. AreaOfEffect.Size = AreaOfEffect.Size + Vector3.new(4.1,4.1,4.1)
  1267. AreaOfEffect.CFrame = char.Torso.CFrame
  1268. wait()
  1269. end
  1270. coroutine.wrap(function()
  1271. do local me={}
  1272.  
  1273. me.plrs = game:service'Workspace':children''
  1274.  
  1275. function me:getNear(mag)
  1276. local rtn = {}
  1277.  
  1278. for k,v in next,me.plrs do
  1279. local chxr = v
  1280.  
  1281. if chxr then
  1282. if chxr:findFirstChild'Torso' then
  1283. local pos = (chxr.Torso.Position-tor.Position).magnitude
  1284.  
  1285. if pos<=mag then
  1286. for a,b in pairs(chxr:children()) do
  1287. if b:IsA("BasePart") then
  1288. table.insert(rtn, b)
  1289. end
  1290. end
  1291. end
  1292. end
  1293. end
  1294. end
  1295. return rtn
  1296. end
  1297.  
  1298. for no, torso in ipairs(me:getNear(5555)) do
  1299. --print(torso:GetFullName())
  1300. --print(torso:GetFullName())
  1301. trappedTorsos:Capture(torso)
  1302. end
  1303.  
  1304.  
  1305. end
  1306. end)()
  1307. AreaOfEffect:Destroy()
  1308. workspace.Gravity = 70
  1309. for i,v in pairs(char:children()) do
  1310. if v:IsA("Part") then
  1311. v.Anchored = false
  1312. end
  1313. if v:IsA("Hat") then
  1314. v.Handle.Anchored = false
  1315. end
  1316. end
  1317. for i,v in pairs(pchar:children()) do
  1318. if v:IsA("Part") then
  1319. v.Anchored = false
  1320. end
  1321. if v:IsA("Hat") then
  1322. v.Handle.Anchored = false
  1323. end
  1324. end
  1325. if WasOn == false then
  1326. StandOn = false
  1327. WasOn = true
  1328. end
  1329. hum.WalkSpeed = 16
  1330. end
  1331. if Mode == "Time Start" then
  1332. local TimeStop = Instance.new("Sound",tor)
  1333. TimeStop.SoundId = "rbxassetid://520743795"
  1334. TimeStop.Looped = false
  1335. TimeStop.Volume = 1
  1336. TimeStop:Play()
  1337. local AreaOfEffect2 = Instance.new("Part",tor)
  1338. AreaOfEffect2.Position = tor.Position
  1339. AreaOfEffect2.Size = Vector3.new(0.01,0.01,0.01)
  1340. AreaOfEffect2.Anchored = true
  1341. AreaOfEffect2.CanCollide = false
  1342. AreaOfEffect2.Transparency = 1
  1343. AreaOfEffect2.BrickColor = BrickColor.new("Institutional white")
  1344. AreaOfEffect2.Transparency = 0.99
  1345. AreaOfEffect2.Shape = "Ball"
  1346. AreaOfEffect2.Material = "Neon"
  1347. AreaOfEffect2.Touched:connect(function(hit)
  1348. if hit ~= "Base" then
  1349. --hit.Anchored = false
  1350. end
  1351. end)
  1352. for i = 1,10 do
  1353. AreaOfEffect2.Size = AreaOfEffect2.Size + Vector3.new(4.1,4.1,4.1)
  1354. AreaOfEffect2.CFrame = char.Torso.CFrame
  1355. wait()
  1356. end
  1357. trappedTorsos:Release()
  1358. AreaOfEffect2:Destroy()
  1359. TfwTimeStopped = false
  1360. workspace.Gravity = 196.2
  1361. end
  1362. if Mode == "Repel" then
  1363. if WasOn == true and StandOn == false then
  1364. StandOn = true
  1365. WasOn = false
  1366. end
  1367. wait()
  1368. local TimeStop = Instance.new("Sound",char)
  1369. TimeStop.SoundId = "rbxassetid://520743795"
  1370. TimeStop.Looped = false
  1371. TimeStop.Volume = 1
  1372. local AreaOfEffect = Instance.new("Part",char)
  1373. AreaOfEffect.Position = tor.Position
  1374. AreaOfEffect.Size = Vector3.new(0.01,0.01,0.01)
  1375. AreaOfEffect.Anchored = true
  1376. AreaOfEffect.CanCollide = false
  1377. AreaOfEffect.BrickColor = BrickColor.new("Institutional white")
  1378. AreaOfEffect.Transparency = 0.9
  1379. AreaOfEffect.Shape = "Ball"
  1380. AreaOfEffect.Material = "Neon"
  1381. TimeStop:Play()
  1382. for i = 1,10 do
  1383. AreaOfEffect.Size = AreaOfEffect.Size + Vector3.new(4.1,4.1,4.1)
  1384. AreaOfEffect.CFrame = char.Torso.CFrame
  1385. wait()
  1386. end
  1387. coroutine.wrap(function()
  1388. do local me={}
  1389.  
  1390. me.plrs = game:service'Workspace':children''
  1391.  
  1392. function me:getNear(mag)
  1393. local rtn = {}
  1394.  
  1395. for k,v in next,me.plrs do
  1396. local chxr = v
  1397.  
  1398. if chxr then
  1399. if chxr:findFirstChild'Torso' then
  1400. local pos = (chxr.Torso.Position-tor.Position).magnitude
  1401.  
  1402. if pos<=mag then
  1403. for a,b in pairs(chxr:children()) do
  1404. if b:IsA("BasePart") then
  1405. table.insert(rtn, b)
  1406. end
  1407. end
  1408. end
  1409. end
  1410. end
  1411. end
  1412. return rtn
  1413. end
  1414.  
  1415. for no, torso in ipairs(me:getNear(5555)) do
  1416. --print(torso:GetFullName())
  1417. --print(torso:GetFullName())
  1418. trappedTorsos:Repel(torso)
  1419. end
  1420.  
  1421.  
  1422. end
  1423. end)()
  1424. AreaOfEffect:Destroy()
  1425. for i,v in pairs(char:children()) do
  1426. if v:IsA("Part") then
  1427. v.Anchored = false
  1428. end
  1429. if v:IsA("Hat") then
  1430. v.Handle.Anchored = false
  1431. end
  1432. end
  1433. for i,v in pairs(pchar:children()) do
  1434. if v:IsA("Part") then
  1435. v.Anchored = false
  1436. end
  1437. if v:IsA("Hat") then
  1438. v.Handle.Anchored = false
  1439. end
  1440. end
  1441. if WasOn == false then
  1442. StandOn = false
  1443. WasOn = true
  1444. end
  1445. end
  1446. if Mode == "Attract" then
  1447. if WasOn == true and StandOn == false then
  1448. StandOn = true
  1449. WasOn = false
  1450. end
  1451. wait()
  1452. local TimeStop = Instance.new("Sound",char)
  1453. TimeStop.SoundId = "rbxassetid://520743795"
  1454. TimeStop.Looped = false
  1455. TimeStop.Volume = 1
  1456. local AreaOfEffect = Instance.new("Part",char)
  1457. AreaOfEffect.Position = tor.Position
  1458. AreaOfEffect.Size = Vector3.new(0.01,0.01,0.01)
  1459. AreaOfEffect.Anchored = true
  1460. AreaOfEffect.CanCollide = false
  1461. AreaOfEffect.BrickColor = BrickColor.new("Institutional white")
  1462. AreaOfEffect.Transparency = 0.9
  1463. AreaOfEffect.Shape = "Ball"
  1464. AreaOfEffect.Material = "Neon"
  1465. TimeStop:Play()
  1466. for i = 1,10 do
  1467. AreaOfEffect.Size = AreaOfEffect.Size + Vector3.new(4.1,4.1,4.1)
  1468. AreaOfEffect.CFrame = char.Torso.CFrame
  1469. wait()
  1470. end
  1471. coroutine.wrap(function()
  1472. do local me={}
  1473.  
  1474. me.plrs = game:service'Workspace':children''
  1475.  
  1476. function me:getNear(mag)
  1477. local rtn = {}
  1478.  
  1479. for k,v in next,me.plrs do
  1480. local chxr = v
  1481.  
  1482. if chxr then
  1483. if chxr:findFirstChild'Torso' then
  1484. local pos = (chxr.Torso.Position-tor.Position).magnitude
  1485.  
  1486. if pos<=mag then
  1487. for a,b in pairs(chxr:children()) do
  1488. if b:IsA("BasePart") then
  1489. table.insert(rtn, b)
  1490. end
  1491. end
  1492. end
  1493. end
  1494. end
  1495. end
  1496. return rtn
  1497. end
  1498.  
  1499. for no, torso in ipairs(me:getNear(5555)) do
  1500. --print(torso:GetFullName())
  1501. --print(torso:GetFullName())
  1502. trappedTorsos:Attract(torso)
  1503. end
  1504.  
  1505.  
  1506. end
  1507. end)()
  1508. AreaOfEffect:Destroy()
  1509. for i,v in pairs(char:children()) do
  1510. if v:IsA("Part") then
  1511. v.Anchored = false
  1512. end
  1513. if v:IsA("Hat") then
  1514. v.Handle.Anchored = false
  1515. end
  1516. end
  1517. for i,v in pairs(pchar:children()) do
  1518. if v:IsA("Part") then
  1519. v.Anchored = false
  1520. end
  1521. if v:IsA("Hat") then
  1522. v.Handle.Anchored = false
  1523. end
  1524. end
  1525. if WasOn == false then
  1526. StandOn = false
  1527. WasOn = true
  1528. end
  1529. end
  1530. if Mode == "Target" then
  1531. hum.Health = AnotherOneBitesZaDusto
  1532. if WasOn == true and StandOn == false then
  1533. StandOn = true
  1534. WasOn = false
  1535. end
  1536. wait()
  1537. local TimeStop = Instance.new("Sound",char)
  1538. TimeStop.SoundId = "rbxassetid://520743795"
  1539. TimeStop.Looped = false
  1540. TimeStop.Volume = 1
  1541. local AreaOfEffect = Instance.new("Part",char)
  1542. AreaOfEffect.Position = tor.Position
  1543. AreaOfEffect.Size = Vector3.new(0.01,0.01,0.01)
  1544. AreaOfEffect.Anchored = true
  1545. AreaOfEffect.CanCollide = false
  1546. AreaOfEffect.BrickColor = BrickColor.new("Institutional white")
  1547. AreaOfEffect.Transparency = 0.9
  1548. AreaOfEffect.Shape = "Ball"
  1549. AreaOfEffect.Material = "Neon"
  1550. TimeStop:Play()
  1551. for i = 1,10 do
  1552. AreaOfEffect.Size = AreaOfEffect.Size + Vector3.new(4.1,4.1,4.1)
  1553. AreaOfEffect.CFrame = char.Torso.CFrame
  1554. wait()
  1555. end
  1556. coroutine.wrap(function()
  1557. do local me={}
  1558.  
  1559. me.plrs = game:service'Workspace':children''
  1560.  
  1561. function me:getNear(mag)
  1562. local rtn = {}
  1563.  
  1564. for k,v in next,me.plrs do
  1565. local chxr = v
  1566.  
  1567. if chxr then
  1568. if chxr:findFirstChild'Torso' then
  1569. local pos = (chxr.Torso.Position-tor.Position).magnitude
  1570.  
  1571. if pos<=mag then
  1572. for a,b in pairs(chxr:children()) do
  1573. if b:IsA("BasePart") then
  1574. table.insert(rtn, b)
  1575. end
  1576. end
  1577. end
  1578. end
  1579. end
  1580. end
  1581. return rtn
  1582. end
  1583.  
  1584. for no, torso in ipairs(me:getNear(5555)) do
  1585. --print(torso:GetFullName())
  1586. --print(torso:GetFullName())
  1587. trappedTorsos:Target(torso)
  1588. end
  1589. end
  1590. end)()
  1591. AreaOfEffect:Destroy()
  1592. for i,v in pairs(char:children()) do
  1593. if v:IsA("Part") then
  1594. v.Anchored = false
  1595. end
  1596. if v:IsA("Hat") then
  1597. v.Handle.Anchored = false
  1598. end
  1599. end
  1600. for i,v in pairs(pchar:children()) do
  1601. if v:IsA("Part") then
  1602. v.Anchored = false
  1603. end
  1604. if v:IsA("Hat") then
  1605. v.Handle.Anchored = false
  1606. end
  1607. end
  1608. if WasOn == false then
  1609. StandOn = false
  1610. WasOn = true
  1611. end
  1612. end
  1613. end
  1614.  
  1615. LightGrav = false
  1616. NormalGrav = true
  1617. HeavyGrav = false
  1618.  
  1619. Rapid = false
  1620. TimeStopped = false
  1621. OneSecond = false
  1622. Cha = char
  1623. Character = char
  1624. it=Instance.new
  1625. vt=Vector3.new
  1626. cn=CFrame.new
  1627. euler=CFrame.fromEulerAnglesXYZ
  1628. angles=CFrame.Angles
  1629. RootPart = hrp
  1630. mouse.KeyDown:connect(function(key)
  1631. if key == "q" then
  1632. if TimeStopped == false and Attacking == false then
  1633. TheWorld("Time Stop")
  1634. TimeStopped = true
  1635. TfwTimeStopped = true
  1636. elseif TimeStopped == true and Attacking == false then
  1637. TheWorld("Time Start")
  1638. TimeStopped = false
  1639. end
  1640. end
  1641. if key == "p" and TimeStopped == false and Attacking == false then
  1642. TheWorld("World Time Stop")
  1643. TimeStopped = true
  1644. TfwTimeStopped = true
  1645. end
  1646. if key == "z" then
  1647. TheWorld("Light Gravity")
  1648. end
  1649. if key == "x" then
  1650. TheWorld("Normal Gravity")
  1651. end
  1652. if key == "c" then
  1653. TheWorld("Heavy Gravity")
  1654. end
  1655. if key == "f" then
  1656. TheWorld("Repel")
  1657. end
  1658. if key == "g" then
  1659. TheWorld("Attract")
  1660. end
  1661. if key == "v" then
  1662. TheWorld("Target")
  1663. end
  1664. if key == "[" then
  1665. ControlledWorlds = false
  1666. end
  1667. if key == "]" then
  1668. ControlledWorlds = true
  1669. end
  1670. if key == "e" then
  1671. Rapid = true
  1672. Attacking = true
  1673. con1 = ram2.Touched:connect(function(hit) Damagefunc(torso,hit,1,2,math.random(0,0),"MUDA",RootPart,.2,1) end)
  1674. con2 = lam2.Touched:connect(function(hit) Damagefunc(torso,hit,1,2,math.random(0,0),"MUDA",RootPart,.2,1) end)
  1675. while Rapid == true do
  1676. for i = 1, 3 do
  1677. raw2.C0 = RLerp(raw2.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(math.random(60,90)),math.rad(math.random(-20,20)),math.rad(20)), 1.7)
  1678. law2.C0 = RLerp(law2.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 1.7)
  1679. hew2.C0 = RLerp(hew2.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 1.3)
  1680. tow2.C0 = RLerp(tow2.C0, CFrame.new(0, -1, -8) * CFrame.Angles(math.rad(0), math.rad(50), 0), 1.3)
  1681. llw2.C0 = RLerp(llw2.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 1.3)
  1682. rlw2.C0 = RLerp(rlw2.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 1.3)
  1683. wait()
  1684. end
  1685. for i = 1, 3 do
  1686. raw2.C0 = RLerp(raw2.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(math.random(60,90)),math.rad(0),math.rad(-50)), 1.7)
  1687. law2.C0 = RLerp(law2.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(math.random(-20,20)),math.rad(-20)), 1.7)
  1688. hew2.C0 = RLerp(hew2.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 1.3)
  1689. tow2.C0 = RLerp(tow2.C0, CFrame.new(0, -1, -8) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 1.3)
  1690. llw2.C0 = RLerp(llw2.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 1.3)
  1691. rlw2.C0 = RLerp(rlw2.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 1.3)
  1692. wait()
  1693. end
  1694. for i = 1, 3 do
  1695. raw2.C0 = RLerp(raw2.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(math.random(60,90)),math.rad(math.random(-20,20)),math.rad(20)), 1.7)
  1696. law2.C0 = RLerp(law2.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 1.7)
  1697. hew2.C0 = RLerp(hew2.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 1.3)
  1698. tow2.C0 = RLerp(tow2.C0, CFrame.new(0, -1, -8) * CFrame.Angles(math.rad(0), math.rad(50), 0), 1.3)
  1699. llw2.C0 = RLerp(llw2.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 1.3)
  1700. rlw2.C0 = RLerp(rlw2.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 1.3)
  1701. wait()
  1702. end
  1703. for i = 1, 3 do
  1704. raw2.C0 = RLerp(raw2.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(math.random(60,90)),math.rad(0),math.rad(-50)), 1.7)
  1705. law2.C0 = RLerp(law2.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(math.random(-20,20)),math.rad(-20)), 1.7)
  1706. hew2.C0 = RLerp(hew2.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 1.3)
  1707. tow2.C0 = RLerp(tow2.C0, CFrame.new(0, -1, -8) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 1.3)
  1708. llw2.C0 = RLerp(llw2.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 1.3)
  1709. rlw2.C0 = RLerp(rlw2.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 1.3)
  1710. wait()
  1711. end
  1712. end
  1713. con1:disconnect()
  1714. con2:disconnect()
  1715. Attacking = false
  1716. end
  1717. if key == "r" and Attacking == false then
  1718. con1 = ram2.Touched:connect(function(hit)
  1719. trappedTorsos:Capture(hit)
  1720. end)
  1721. ItsHot = false
  1722. Attacking = true
  1723. for i = 1, 3 do
  1724. raw2.C0 = RLerp(raw2.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(math.random(60,90)),math.rad(math.random(-20,20)),math.rad(20)), 1.7)
  1725. law2.C0 = RLerp(law2.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 1.7)
  1726. hew2.C0 = RLerp(hew2.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 1.3)
  1727. tow2.C0 = RLerp(tow2.C0, CFrame.new(0, -1, -8) * CFrame.Angles(math.rad(0), math.rad(50), 0), 1.3)
  1728. llw2.C0 = RLerp(llw2.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 1.3)
  1729. rlw2.C0 = RLerp(rlw2.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 1.3)
  1730. wait()
  1731. end
  1732. wait(1)
  1733. con1:disconnect()
  1734. Attacking = false
  1735. end
  1736. if key == "t" and Attacking == false then
  1737. con1 = ram2.Touched:connect(function(hit)
  1738. trappedTorsos:ReleasePart()
  1739. end)
  1740. ItsHot = false
  1741. Attacking = true
  1742. for i = 1, 3 do
  1743. raw2.C0 = RLerp(raw2.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(math.random(90,95)),math.rad(math.random(20,20)),math.rad(20)), 1.7)
  1744. law2.C0 = RLerp(law2.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 1.7)
  1745. hew2.C0 = RLerp(hew2.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 1.3)
  1746. tow2.C0 = RLerp(tow2.C0, CFrame.new(0, -1, -8) * CFrame.Angles(math.rad(0), math.rad(50), 0), 1.3)
  1747. llw2.C0 = RLerp(llw2.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 1.3)
  1748. rlw2.C0 = RLerp(rlw2.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 1.3)
  1749. wait()
  1750. end
  1751. wait(3)
  1752. Attacking = false
  1753. con1:disconnect()
  1754. end
  1755. end)
  1756.  
  1757. mouse.KeyUp:connect(function(key)
  1758. if key == "e" and Rapid == true or key == "v" and Rapid == true then
  1759. Rapid = false
  1760. end
  1761. end)
  1762.  
  1763. for i, v in pairs(pchar:GetChildren()) do
  1764. if v:IsA('Hat') then
  1765. v.Handle.Transparency=1
  1766. end
  1767. if v:IsA("Part") then
  1768. v.Material = "Neon"
  1769. v.BrickColor = BrickColor.new("Gold")
  1770. end
  1771. end
  1772.  
  1773. -------------------------------Sprint
  1774. mouse.KeyDown:connect(function(key)
  1775. if string.byte(key) == 48 then
  1776. hum.WalkSpeed = 48
  1777. end
  1778. end)
  1779. mouse.KeyUp:connect(function(key)
  1780. if string.byte(key) == 48 then
  1781. hum.WalkSpeed=16
  1782. end
  1783. end)
  1784. -------------------------------------
  1785. hum.FreeFalling:connect(function(f)
  1786. if f then
  1787. ffing=true
  1788. else
  1789. ffing=false
  1790. end
  1791. end)
  1792. hum.Jumping:connect(function(j)
  1793. if j then
  1794. jjing=true
  1795. else
  1796. jjing=false
  1797. end
  1798. end)
  1799. function Lerping(c1,c2,al)
  1800. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  1801. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  1802. for i,v in pairs(com1) do
  1803. com1[i] = v+(com2[i]-v)*al
  1804. end
  1805. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  1806. end
  1807.  
  1808. m = Instance.new("Model",char)
  1809.  
  1810. Handle = Instance.new("Part", m)
  1811. Handle:BreakJoints()
  1812. Handle.TopSurface = "Smooth"
  1813. Handle.Material = "SmoothPlastic"
  1814. Handle.Name = 'Handle'
  1815. Handle.Anchored = true
  1816. Handle.Transparency = 0 Handle.BottomSurface = "Smooth"
  1817. Handle.FormFactor = "Custom" Handle.CanCollide = false
  1818. Handle.BrickColor = BrickColor.new("Really black")
  1819. Handle.Size = Vector3.new(2.31999993, 0.34799999, 0.200000003)
  1820.  
  1821. Part = Instance.new("Part", m)
  1822. Part:BreakJoints()
  1823. Part.TopSurface = "Smooth"
  1824. Part.Material = "SmoothPlastic"
  1825. Part.Name = 'Part'
  1826. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  1827. Part.FormFactor = "Custom" Part.CanCollide = false
  1828. Part.BrickColor = BrickColor.new("Really black")
  1829. Part.Size = Vector3.new(0.34799999, 0.200000003, 0.34799999)
  1830. Partweld = Instance.new("Motor6D")
  1831. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1832. Partweld.C1 = CFrame.new(-0.697142124, -0.240707397, 0.697052002, 0.707106292, -6.45096577e-007, -0.707100093, 7.29660428e-007, 0.999991119, -4.4702773e-008, 0.707106292, -4.72456946e-007, 0.707100153)
  1833. Partweld.Parent = Part
  1834. PartMesh = Instance.new("BlockMesh",Part)
  1835. PartMesh.Name = "Mesh"
  1836. PartMesh.Offset = Vector3.new(0, 0, 0)
  1837. PartMesh.Scale = Vector3.new(1, 0.898999929, 1)
  1838.  
  1839. Part = Instance.new("Part", m)
  1840. Part:BreakJoints()
  1841. Part.TopSurface = "Smooth"
  1842. Part.Material = "SmoothPlastic"
  1843. Part.Name = 'Part'
  1844. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  1845. Part.FormFactor = "Custom" Part.CanCollide = false
  1846. Part.BrickColor = BrickColor.new("Really black")
  1847. Part.Size = Vector3.new(2.31999993, 0.200000003, 0.200000003)
  1848. Partweld = Instance.new("Motor6D")
  1849. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1850. Partweld.C1 = CFrame.new(3.81469727e-006, -0.232005119, 1.97199249, 0.999999762, -2.87769808e-013, 5.96046448e-008, 5.25801624e-013, 0.999991417, 2.84217094e-014, 0, -1.17239551e-013, 0.999991238)
  1851. Partweld.Parent = Part
  1852. PartMesh = Instance.new("BlockMesh",Part)
  1853. PartMesh.Name = "Mesh"
  1854. PartMesh.Offset = Vector3.new(0, 0, 0)
  1855. PartMesh.Scale = Vector3.new(1, 0.579999983, 0.579999983)
  1856.  
  1857. Part = Instance.new("Part", m)
  1858. Part:BreakJoints()
  1859. Part.TopSurface = "Smooth"
  1860. Part.Material = "SmoothPlastic"
  1861. Part.Name = 'Part'
  1862. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  1863. Part.FormFactor = "Custom" Part.CanCollide = false
  1864. Part.BrickColor = BrickColor.new("Really black")
  1865. Part.Size = Vector3.new(1.15999997, 0.200000003, 1.15999997)
  1866. Partweld = Instance.new("Motor6D")
  1867. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1868. Partweld.C1 = CFrame.new(-0.697060108, -0.237798691, 0.696979523, 0.707100153, -7.8854832e-008, -0.707074642, 6.79929997e-008, 0.999963224, -4.47018209e-008, 0.707100153, -2.54248249e-008, 0.707074702)
  1869. Partweld.Parent = Part
  1870. PartMesh = Instance.new("BlockMesh",Part)
  1871. PartMesh.Name = "Mesh"
  1872. PartMesh.Offset = Vector3.new(0, 0, 0)
  1873. PartMesh.Scale = Vector3.new(1, 0.696000099, 1)
  1874.  
  1875. Part = Instance.new("Part", m)
  1876. Part:BreakJoints()
  1877. Part.TopSurface = "Smooth"
  1878. Part.Material = "SmoothPlastic"
  1879. Part.Name = 'Part'
  1880. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  1881. Part.FormFactor = "Custom" Part.CanCollide = false
  1882. Part.BrickColor = BrickColor.new("Really black")
  1883. Part.Size = Vector3.new(0.200000003, 0.200000003, 2.0880003)
  1884. Partweld = Instance.new("Motor6D")
  1885. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1886. Partweld.C1 = CFrame.new(-1.21799088, -0.231980324, 0.985839844, 0.999999762, 5.87768056e-010, 1.80602074e-005, -5.86997118e-010, 0.999974251, -6.33293951e-009, -1.80006027e-005, 6.33261976e-009, 0.99997437)
  1887. Partweld.Parent = Part
  1888. PartMesh = Instance.new("BlockMesh",Part)
  1889. PartMesh.Name = "Mesh"
  1890. PartMesh.Offset = Vector3.new(0, 0, 0)
  1891. PartMesh.Scale = Vector3.new(0.579999983, 0.579999983, 1)
  1892.  
  1893. Part = Instance.new("Part", m)
  1894. Part:BreakJoints()
  1895. Part.TopSurface = "Smooth"
  1896. Part.Material = "SmoothPlastic"
  1897. Part.Name = 'Part'
  1898. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  1899. Part.FormFactor = "Custom" Part.CanCollide = false
  1900. Part.BrickColor = BrickColor.new("Really black")
  1901. Part.Size = Vector3.new(0.200000003, 0.34799999, 0.200000003)
  1902. Partweld = Instance.new("Motor6D")
  1903. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1904. Partweld.C1 = CFrame.new(0.000141143799, 1.8119812e-005, -1.21799469, 1.81794167e-005, -1.78968406e-007, -0.999964833, 6.0702348e-007, 0.999964714, -1.78957677e-007, 0.999999702, -6.06998185e-007, 1.82688236e-005)
  1905. Partweld.Parent = Part
  1906. PartMesh = Instance.new("BlockMesh",Part)
  1907. PartMesh.Name = "Mesh"
  1908. PartMesh.Offset = Vector3.new(0, 0, 0)
  1909. PartMesh.Scale = Vector3.new(0.579999983, 1, 0.579999983)
  1910.  
  1911. Part = Instance.new("Part", m)
  1912. Part:BreakJoints()
  1913. Part.TopSurface = "Smooth"
  1914. Part.Material = "SmoothPlastic"
  1915. Part.Name = 'Part'
  1916. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  1917. Part.FormFactor = "Custom" Part.CanCollide = false
  1918. Part.BrickColor = BrickColor.new("Really black")
  1919. Part.Size = Vector3.new(0.200000003, 0.200000003, 2.0880003)
  1920. Partweld = Instance.new("Motor6D")
  1921. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1922. Partweld.C1 = CFrame.new(-1.21799469, 0.232003212, 0.985847473, 0.999999762, 5.66021896e-010, 1.80602074e-005, -5.65410829e-010, 0.999973297, -6.33274055e-009, -1.80006027e-005, 6.3324741e-009, 0.999973238)
  1923. Partweld.Parent = Part
  1924. PartMesh = Instance.new("BlockMesh",Part)
  1925. PartMesh.Name = "Mesh"
  1926. PartMesh.Offset = Vector3.new(0, 0, 0)
  1927. PartMesh.Scale = Vector3.new(0.579999983, 0.579999983, 1)
  1928.  
  1929. Part = Instance.new("Part", m)
  1930. Part:BreakJoints()
  1931. Part.TopSurface = "Smooth"
  1932. Part.Material = "SmoothPlastic"
  1933. Part.Name = 'Part'
  1934. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  1935. Part.FormFactor = "Custom" Part.CanCollide = false
  1936. Part.BrickColor = BrickColor.new("Mid gray")
  1937. Part.Size = Vector3.new(2.31999969, 0.200000003, 1.8560003)
  1938. Partweld = Instance.new("Motor6D")
  1939. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1940. Partweld.C1 = CFrame.new(3.81469727e-006, -0.115989685, 0.985801697, 0.999999762, 6.05332673e-010, 1.80602074e-005, -6.04796213e-010, 0.999982834, -6.33284003e-009, -1.80006027e-005, 6.33262687e-009, 0.999982953)
  1941. Partweld.Parent = Part
  1942. PartMesh = Instance.new("BlockMesh",Part)
  1943. PartMesh.Name = "Mesh"
  1944. PartMesh.Offset = Vector3.new(0, 0, 0)
  1945. PartMesh.Scale = Vector3.new(1, 0.579999983, 1)
  1946.  
  1947. Part = Instance.new("Part", m)
  1948. Part:BreakJoints()
  1949. Part.TopSurface = "Smooth"
  1950. Part.Material = "SmoothPlastic"
  1951. Part.Name = 'Part'
  1952. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  1953. Part.FormFactor = "Custom" Part.CanCollide = false
  1954. Part.BrickColor = BrickColor.new("Institutional white")
  1955. Part.Size = Vector3.new(0.579999983, 0.200000003, 0.579999983)
  1956. Partweld = Instance.new("Motor6D")
  1957. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1958. Partweld.C1 = CFrame.new(1.52587891e-005, 0.226189613, 0.985958099, 0.99999094, -4.17435785e-007, -8.94069672e-008, 4.17436127e-007, 0.999991119, 2.08614694e-007, -2.98023224e-008, -2.83119846e-007, 0.999982476)
  1959. Partweld.Parent = Part
  1960. PartMesh = Instance.new("BlockMesh",Part)
  1961. PartMesh.Name = "Mesh"
  1962. PartMesh.Offset = Vector3.new(0, 0, 0)
  1963. PartMesh.Scale = Vector3.new(1, 0.811999977, 1)
  1964.  
  1965. Part = Instance.new("Part", m)
  1966. Part:BreakJoints()
  1967. Part.TopSurface = "Smooth"
  1968. Part.Material = "SmoothPlastic"
  1969. Part.Name = 'Part'
  1970. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  1971. Part.FormFactor = "Custom" Part.CanCollide = false
  1972. Part.BrickColor = BrickColor.new("Institutional white")
  1973. Part.Size = Vector3.new(0.579999983, 0.200000003, 0.579999983)
  1974. Partweld = Instance.new("Motor6D")
  1975. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1976. Partweld.C1 = CFrame.new(1.52587891e-005, -0.237810135, 0.985958099, 0.99999094, -4.17435785e-007, -8.94069672e-008, 4.17436127e-007, 0.999991119, 2.08614694e-007, -2.98023224e-008, -2.83119846e-007, 0.999982476)
  1977. Partweld.Parent = Part
  1978. PartMesh = Instance.new("BlockMesh",Part)
  1979. PartMesh.Name = "Mesh"
  1980. PartMesh.Offset = Vector3.new(0, 0, 0)
  1981. PartMesh.Scale = Vector3.new(1, 0.811999977, 1)
  1982.  
  1983. Part = Instance.new("Part", m)
  1984. Part:BreakJoints()
  1985. Part.TopSurface = "Smooth"
  1986. Part.Material = "SmoothPlastic"
  1987. Part.Name = 'Part'
  1988. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  1989. Part.FormFactor = "Custom" Part.CanCollide = false
  1990. Part.BrickColor = BrickColor.new("Really black")
  1991. Part.Size = Vector3.new(1.15999997, 0.200000003, 1.15999997)
  1992. Partweld = Instance.new("Motor6D")
  1993. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1994. Partweld.C1 = CFrame.new(-0.985813141, -0.237781525, 0, 1.80006027e-005, 1.57576963e-007, -0.999979973, 8.91885605e-008, 0.99998039, 2.61884452e-007, 0.999999166, -8.91910901e-008, 1.80602074e-005)
  1995. Partweld.Parent = Part
  1996. PartMesh = Instance.new("BlockMesh",Part)
  1997. PartMesh.Name = "Mesh"
  1998. PartMesh.Offset = Vector3.new(0, 0, 0)
  1999. PartMesh.Scale = Vector3.new(1, 0.69599998, 1)
  2000.  
  2001. Part = Instance.new("Part", m)
  2002. Part:BreakJoints()
  2003. Part.TopSurface = "Smooth"
  2004. Part.Material = "SmoothPlastic"
  2005. Part.Name = 'Part'
  2006. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2007. Part.FormFactor = "Custom" Part.CanCollide = false
  2008. Part.BrickColor = BrickColor.new("Really black")
  2009. Part.Size = Vector3.new(0.34799999, 0.200000003, 0.34799999)
  2010. Partweld = Instance.new("Motor6D")
  2011. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2012. Partweld.C1 = CFrame.new(-5.7220459e-005, 0.223287582, 0.985862732, 0.999999285, -4.17447836e-007, 5.96046448e-008, 4.17451417e-007, 0.999991119, 2.08614694e-007, 8.94069672e-008, -8.94065408e-008, 0.999990642)
  2013. Partweld.Parent = Part
  2014. PartMesh = Instance.new("BlockMesh",Part)
  2015. PartMesh.Name = "Mesh"
  2016. PartMesh.Offset = Vector3.new(0, 0, 0)
  2017. PartMesh.Scale = Vector3.new(1, 0.898999929, 1)
  2018.  
  2019. Part = Instance.new("Part", m)
  2020. Part:BreakJoints()
  2021. Part.TopSurface = "Smooth"
  2022. Part.Material = "SmoothPlastic"
  2023. Part.Name = 'Part'
  2024. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2025. Part.FormFactor = "Custom" Part.CanCollide = false
  2026. Part.BrickColor = BrickColor.new("Really black")
  2027. Part.Size = Vector3.new(1.15999997, 0.200000003, 1.15999997)
  2028. Partweld = Instance.new("Motor6D")
  2029. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2030. Partweld.C1 = CFrame.new(-0.985980988, 0.22618866, 0, -8.94069672e-008, 1.63911707e-007, -0.999990642, 8.97813663e-008, 0.999991119, 2.68218798e-007, 0.999999285, -8.97803574e-008, 5.96046448e-008)
  2031. Partweld.Parent = Part
  2032. PartMesh = Instance.new("BlockMesh",Part)
  2033. PartMesh.Name = "Mesh"
  2034. PartMesh.Offset = Vector3.new(0, 0, 0)
  2035. PartMesh.Scale = Vector3.new(1, 0.69599998, 1)
  2036.  
  2037. Part = Instance.new("Part", m)
  2038. Part:BreakJoints()
  2039. Part.TopSurface = "Smooth"
  2040. Part.Material = "SmoothPlastic"
  2041. Part.Name = 'Part'
  2042. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2043. Part.FormFactor = "Custom" Part.CanCollide = false
  2044. Part.BrickColor = BrickColor.new("Really black")
  2045. Part.Size = Vector3.new(1.15999997, 0.200000003, 1.15999997)
  2046. Partweld = Instance.new("Motor6D")
  2047. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2048. Partweld.C1 = CFrame.new(-0.697110176, 0.226187706, 0.697032928, 0.707100391, -7.8857461e-008, -0.707094431, 6.79927936e-008, 0.999991119, -4.4702837e-008, 0.707100332, -2.54258214e-008, 0.707094312)
  2049. Partweld.Parent = Part
  2050. PartMesh = Instance.new("BlockMesh",Part)
  2051. PartMesh.Name = "Mesh"
  2052. PartMesh.Offset = Vector3.new(0, 0, 0)
  2053. PartMesh.Scale = Vector3.new(1, 0.696000099, 1)
  2054.  
  2055. Part = Instance.new("Part", m)
  2056. Part:BreakJoints()
  2057. Part.TopSurface = "Smooth"
  2058. Part.Material = "SmoothPlastic"
  2059. Part.Name = 'Part'
  2060. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2061. Part.FormFactor = "Custom" Part.CanCollide = false
  2062. Part.BrickColor = BrickColor.new("Institutional white")
  2063. Part.Size = Vector3.new(0.579999983, 0.200000003, 0.579999983)
  2064. Partweld = Instance.new("Motor6D")
  2065. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2066. Partweld.C1 = CFrame.new(-0.697163582, 0.226187706, 0.697189331, 0.707100332, -7.88574468e-008, -0.707094491, 6.7967342e-008, 0.999991119, -4.47028512e-008, 0.707100451, 4.37624692e-009, 0.707094193)
  2067. Partweld.Parent = Part
  2068. PartMesh = Instance.new("BlockMesh",Part)
  2069. PartMesh.Name = "Mesh"
  2070. PartMesh.Offset = Vector3.new(0, 0, 0)
  2071. PartMesh.Scale = Vector3.new(1, 0.812000036, 1)
  2072.  
  2073. Part = Instance.new("Part", m)
  2074. Part:BreakJoints()
  2075. Part.TopSurface = "Smooth"
  2076. Part.Material = "SmoothPlastic"
  2077. Part.Name = 'Part'
  2078. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2079. Part.FormFactor = "Custom" Part.CanCollide = false
  2080. Part.BrickColor = BrickColor.new("Really black")
  2081. Part.Size = Vector3.new(0.34799999, 0.200000003, 0.34799999)
  2082. Partweld = Instance.new("Motor6D")
  2083. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2084. Partweld.C1 = CFrame.new(-5.7220459e-005, -0.240706444, 0.985862732, 0.999999285, -4.17447836e-007, 5.96046448e-008, 4.17451417e-007, 0.999991119, 2.08614694e-007, 8.94069672e-008, -8.94065408e-008, 0.999990642)
  2085. Partweld.Parent = Part
  2086. PartMesh = Instance.new("BlockMesh",Part)
  2087. PartMesh.Name = "Mesh"
  2088. PartMesh.Offset = Vector3.new(0, 0, 0)
  2089. PartMesh.Scale = Vector3.new(1, 0.898999929, 1)
  2090.  
  2091. Part = Instance.new("Part", m)
  2092. Part:BreakJoints()
  2093. Part.TopSurface = "Smooth"
  2094. Part.Material = "SmoothPlastic"
  2095. Part.Name = 'Part'
  2096. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2097. Part.FormFactor = "Custom" Part.CanCollide = false
  2098. Part.BrickColor = BrickColor.new("Really black")
  2099. Part.Size = Vector3.new(2.31999993, 0.200000003, 0.200000003)
  2100. Partweld = Instance.new("Motor6D")
  2101. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2102. Partweld.C1 = CFrame.new(3.81469727e-006, 0.23197937, -1.52587891e-005, 0.999999762, 2.23820962e-013, 5.96046448e-008, 7.10542736e-015, 0.999991417, -1.03028697e-013, 0, 1.0658141e-014, 0.999991238)
  2103. Partweld.Parent = Part
  2104. PartMesh = Instance.new("BlockMesh",Part)
  2105. PartMesh.Name = "Mesh"
  2106. PartMesh.Offset = Vector3.new(0, 0, 0)
  2107. PartMesh.Scale = Vector3.new(1, 0.579999983, 0.579999983)
  2108.  
  2109. Part = Instance.new("Part", m)
  2110. Part:BreakJoints()
  2111. Part.TopSurface = "Smooth"
  2112. Part.Material = "SmoothPlastic"
  2113. Part.Name = 'Part'
  2114. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2115. Part.FormFactor = "Custom" Part.CanCollide = false
  2116. Part.BrickColor = BrickColor.new("Institutional white")
  2117. Part.Size = Vector3.new(0.579999983, 0.200000003, 0.579999983)
  2118. Partweld = Instance.new("Motor6D")
  2119. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2120. Partweld.C1 = CFrame.new(-0.697163105, -0.237812042, 0.697189331, 0.707100332, -7.88574468e-008, -0.707094491, 6.7967342e-008, 0.999991119, -4.47028512e-008, 0.707100451, 4.37624692e-009, 0.707094193)
  2121. Partweld.Parent = Part
  2122. PartMesh = Instance.new("BlockMesh",Part)
  2123. PartMesh.Name = "Mesh"
  2124. PartMesh.Offset = Vector3.new(0, 0, 0)
  2125. PartMesh.Scale = Vector3.new(1, 0.812000036, 1)
  2126.  
  2127. Part = Instance.new("Part", m)
  2128. Part:BreakJoints()
  2129. Part.TopSurface = "Smooth"
  2130. Part.Material = "SmoothPlastic"
  2131. Part.Name = 'Part'
  2132. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2133. Part.FormFactor = "Custom" Part.CanCollide = false
  2134. Part.BrickColor = BrickColor.new("Institutional white")
  2135. Part.Size = Vector3.new(2.31999993, 0.200000003, 1.85600007)
  2136. Partweld = Instance.new("Motor6D")
  2137. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2138. Partweld.C1 = CFrame.new(0, 0.232005119, 0.985790253, 0.999999762, 6.06398487e-010, 1.80602074e-005, -6.05488992e-010, 0.999969959, -6.3331953e-009, -1.80006027e-005, 6.33281516e-009, 0.99996984)
  2139. Partweld.Parent = Part
  2140. PartMesh = Instance.new("BlockMesh",Part)
  2141. PartMesh.Name = "Mesh"
  2142. PartMesh.Offset = Vector3.new(0, 0, 0)
  2143. PartMesh.Scale = Vector3.new(1, 0.579999983, 1)
  2144.  
  2145. Part = Instance.new("Part", m)
  2146. Part:BreakJoints()
  2147. Part.TopSurface = "Smooth"
  2148. Part.Material = "SmoothPlastic"
  2149. Part.Name = 'Part'
  2150. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2151. Part.FormFactor = "Custom" Part.CanCollide = false
  2152. Part.BrickColor = BrickColor.new("Really black")
  2153. Part.Size = Vector3.new(0.34799999, 0.200000003, 0.34799999)
  2154. Partweld = Instance.new("Motor6D")
  2155. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2156. Partweld.C1 = CFrame.new(-0.697142363, 0.223291397, 0.697052002, 0.707106292, -6.45096577e-007, -0.707100093, 7.29660428e-007, 0.999991119, -4.4702773e-008, 0.707106292, -4.72456946e-007, 0.707100153)
  2157. Partweld.Parent = Part
  2158. PartMesh = Instance.new("BlockMesh",Part)
  2159. PartMesh.Name = "Mesh"
  2160. PartMesh.Offset = Vector3.new(0, 0, 0)
  2161. PartMesh.Scale = Vector3.new(1, 0.898999929, 1)
  2162.  
  2163. Part = Instance.new("Part", m)
  2164. Part:BreakJoints()
  2165. Part.TopSurface = "Smooth"
  2166. Part.Material = "SmoothPlastic"
  2167. Part.Name = 'Part'
  2168. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2169. Part.FormFactor = "Custom" Part.CanCollide = false
  2170. Part.BrickColor = BrickColor.new("Mid gray")
  2171. Part.Size = Vector3.new(2.31999969, 0.200000003, 1.8560003)
  2172. Partweld = Instance.new("Motor6D")
  2173. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2174. Partweld.C1 = CFrame.new(0, 0.115994453, 0.985679626, 0.999999762, 6.06839023e-010, 1.80602074e-005, -6.06164008e-010, 0.999978542, -6.33337294e-009, -1.79708004e-005, 6.33308517e-009, 0.999978423)
  2175. Partweld.Parent = Part
  2176. PartMesh = Instance.new("BlockMesh",Part)
  2177. PartMesh.Name = "Mesh"
  2178. PartMesh.Offset = Vector3.new(0, 0, 0)
  2179. PartMesh.Scale = Vector3.new(1, 0.579999983, 1)
  2180.  
  2181. Part = Instance.new("Part", m)
  2182. Part:BreakJoints()
  2183. Part.TopSurface = "Smooth"
  2184. Part.Material = "SmoothPlastic"
  2185. Part.Name = 'Part'
  2186. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2187. Part.FormFactor = "Custom" Part.CanCollide = false
  2188. Part.BrickColor = BrickColor.new("Mid gray")
  2189. Part.Size = Vector3.new(2.31999969, 0.200000003, 1.8560003)
  2190. Partweld = Instance.new("Motor6D")
  2191. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2192. Partweld.C1 = CFrame.new(0, -5.7220459e-006, 0.985614777, 0.999999762, 6.06938499e-010, 1.80602074e-005, -6.06267037e-010, 0.999978542, -6.33343333e-009, -1.79708004e-005, 6.33315622e-009, 0.999978423)
  2193. Partweld.Parent = Part
  2194. PartMesh = Instance.new("BlockMesh",Part)
  2195. PartMesh.Name = "Mesh"
  2196. PartMesh.Offset = Vector3.new(0, 0, 0)
  2197. PartMesh.Scale = Vector3.new(1, 0.579999983, 1)
  2198.  
  2199. Part = Instance.new("Part", m)
  2200. Part:BreakJoints()
  2201. Part.TopSurface = "Smooth"
  2202. Part.Material = "SmoothPlastic"
  2203. Part.Name = 'Part'
  2204. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2205. Part.FormFactor = "Custom" Part.CanCollide = false
  2206. Part.BrickColor = BrickColor.new("Institutional white")
  2207. Part.Size = Vector3.new(2.31999993, 0.200000003, 1.85600007)
  2208. Partweld = Instance.new("Motor6D")
  2209. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2210. Partweld.C1 = CFrame.new(-3.81469727e-006, -0.231994629, 0.98563385, 0.999999762, 5.88961768e-010, 1.80602074e-005, -5.88052274e-010, 0.999969959, -6.33351505e-009, -1.80006027e-005, 6.3331278e-009, 0.99996984)
  2211. Partweld.Parent = Part
  2212. PartMesh = Instance.new("BlockMesh",Part)
  2213. PartMesh.Name = "Mesh"
  2214. PartMesh.Offset = Vector3.new(0, 0, 0)
  2215. PartMesh.Scale = Vector3.new(1, 0.579999983, 1)
  2216.  
  2217. Part = Instance.new("Part", m)
  2218. Part:BreakJoints()
  2219. Part.TopSurface = "Smooth"
  2220. Part.Material = "SmoothPlastic"
  2221. Part.Name = 'Part'
  2222. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2223. Part.FormFactor = "Custom" Part.CanCollide = false
  2224. Part.BrickColor = BrickColor.new("Really black")
  2225. Part.Size = Vector3.new(2.31999993, 0.200000003, 0.200000003)
  2226. Partweld = Instance.new("Motor6D")
  2227. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2228. Partweld.C1 = CFrame.new(-7.62939453e-006, -0.231983185, -0.000392913818, 0.999999762, 5.89174931e-010, 1.80602074e-005, -5.88627813e-010, 0.999982834, -6.33369623e-009, -1.79708004e-005, 6.33347597e-009, 0.999982774)
  2229. Partweld.Parent = Part
  2230. PartMesh = Instance.new("BlockMesh",Part)
  2231. PartMesh.Name = "Mesh"
  2232. PartMesh.Offset = Vector3.new(0, 0, 0)
  2233. PartMesh.Scale = Vector3.new(1, 0.579999983, 0.579999983)
  2234.  
  2235. Part = Instance.new("Part", m)
  2236. Part:BreakJoints()
  2237. Part.TopSurface = "Smooth"
  2238. Part.Material = "SmoothPlastic"
  2239. Part.Name = 'Part'
  2240. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2241. Part.FormFactor = "Custom" Part.CanCollide = false
  2242. Part.BrickColor = BrickColor.new("Really black")
  2243. Part.Size = Vector3.new(0.200000003, 0.34799999, 0.200000003)
  2244. Partweld = Instance.new("Motor6D")
  2245. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2246. Partweld.C1 = CFrame.new(0.000408172607, 1.71661377e-005, 1.2179985, 1.81794167e-005, -1.78972357e-007, -0.999982238, 6.07028539e-007, 0.999982357, -1.78961514e-007, 0.999999702, -6.07014329e-007, 1.82688236e-005)
  2247. Partweld.Parent = Part
  2248. PartMesh = Instance.new("BlockMesh",Part)
  2249. PartMesh.Name = "Mesh"
  2250. PartMesh.Offset = Vector3.new(0, 0, 0)
  2251. PartMesh.Scale = Vector3.new(0.579999983, 1, 0.579999983)
  2252.  
  2253. Part = Instance.new("Part", m)
  2254. Part:BreakJoints()
  2255. Part.TopSurface = "Smooth"
  2256. Part.Material = "SmoothPlastic"
  2257. Part.Name = 'Part'
  2258. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2259. Part.FormFactor = "Custom" Part.CanCollide = false
  2260. Part.BrickColor = BrickColor.new("Really black")
  2261. Part.Size = Vector3.new(0.200000003, 0.200000003, 2.0880003)
  2262. Partweld = Instance.new("Motor6D")
  2263. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2264. Partweld.C1 = CFrame.new(1.21799469, -0.231983185, 0.985591888, 0.999999762, 5.89174931e-010, 1.80602074e-005, -5.88627813e-010, 0.999982834, -6.33369623e-009, -1.79708004e-005, 6.33347597e-009, 0.999982774)
  2265. Partweld.Parent = Part
  2266. PartMesh = Instance.new("BlockMesh",Part)
  2267. PartMesh.Name = "Mesh"
  2268. PartMesh.Offset = Vector3.new(0, 0, 0)
  2269. PartMesh.Scale = Vector3.new(0.579999983, 0.579999983, 1)
  2270.  
  2271. Part = Instance.new("Part", m)
  2272. Part:BreakJoints()
  2273. Part.TopSurface = "Smooth"
  2274. Part.Material = "SmoothPlastic"
  2275. Part.Name = 'Part'
  2276. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2277. Part.FormFactor = "Custom" Part.CanCollide = false
  2278. Part.BrickColor = BrickColor.new("Really black")
  2279. Part.Size = Vector3.new(0.200000003, 0.200000003, 2.0880003)
  2280. Partweld = Instance.new("Motor6D")
  2281. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2282. Partweld.C1 = CFrame.new(1.21799469, 0.232002258, 0.985588074, 0.999999762, 5.78641135e-010, 1.80602074e-005, -5.78168624e-010, 0.999980927, -6.33353991e-009, -1.79708004e-005, 6.33334807e-009, 0.999980807)
  2283. Partweld.Parent = Part
  2284. PartMesh = Instance.new("BlockMesh",Part)
  2285. PartMesh.Name = "Mesh"
  2286. PartMesh.Offset = Vector3.new(0, 0, 0)
  2287. PartMesh.Scale = Vector3.new(0.579999983, 0.579999983, 1)
  2288.  
  2289. Part = Instance.new("Part", m)
  2290. Part:BreakJoints()
  2291. Part.TopSurface = "Smooth"
  2292. Part.Material = "SmoothPlastic"
  2293. Part.Name = 'Part'
  2294. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2295. Part.FormFactor = "Custom" Part.CanCollide = false
  2296. Part.BrickColor = BrickColor.new("Really black")
  2297. Part.Size = Vector3.new(2.31999993, 0.200000003, 0.200000003)
  2298. Partweld = Instance.new("Motor6D")
  2299. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2300. Partweld.C1 = CFrame.new(3.81469727e-006, 0.231988907, 1.97200775, 0.999999762, 1.69357861e-011, 5.96046448e-008, -1.6701307e-011, 0.999991179, 2.27373675e-013, 2.98023224e-008, -3.23296945e-013, 0.99999094)
  2301. Partweld.Parent = Part
  2302. PartMesh = Instance.new("BlockMesh",Part)
  2303. PartMesh.Name = "Mesh"
  2304. PartMesh.Offset = Vector3.new(0, 0, 0)
  2305. PartMesh.Scale = Vector3.new(1, 0.579999983, 0.579999983)
  2306.  
  2307. HandleMesh = Instance.new("BlockMesh",Handle)
  2308. HandleMesh.Name = "Mesh"
  2309. HandleMesh.Offset = Vector3.new(0, 0, 0)
  2310. HandleMesh.Scale = Vector3.new(1, 1, 0.579999983)
  2311.  
  2312. m2 = Instance.new("Model",char)
  2313.  
  2314. Handle2 = Instance.new("Part", m2)
  2315. Handle2:BreakJoints()
  2316. Handle2.TopSurface = "Smooth"
  2317. Handle2.Material = "SmoothPlastic"
  2318. Handle2.Name = 'Handle2'
  2319. Handle2.Anchored = true
  2320. Handle2.Transparency = 0
  2321. Handle2.BottomSurface = "Smooth"
  2322. Handle2.FormFactor = "Custom"
  2323. Handle2.CanCollide = false
  2324. Handle2.BrickColor = BrickColor.new("Institutional white")
  2325. Handle2.Size = Vector3.new(2.31999993, 0.34799999, 0.200000003)
  2326.  
  2327. Part = Instance.new("Part", m2)
  2328. Part:BreakJoints()
  2329. Part.TopSurface = "Smooth"
  2330. Part.Material = "SmoothPlastic"
  2331. Part.Name = 'Part'
  2332. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2333. Part.FormFactor = "Custom" Part.CanCollide = false
  2334. Part.BrickColor = BrickColor.new("Institutional white")
  2335. Part.Size = Vector3.new(0.34799999, 0.200000003, 0.34799999)
  2336. Partweld = Instance.new("Motor6D")
  2337. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2338. Partweld.C1 = CFrame.new(-0.697142124, -0.240707397, 0.697052002, 0.707106292, -6.45096577e-007, -0.707100093, 7.29660428e-007, 0.999991119, -4.4702773e-008, 0.707106292, -4.72456946e-007, 0.707100153)
  2339. Partweld.Parent = Part
  2340. PartMesh = Instance.new("BlockMesh",Part)
  2341. PartMesh.Name = "Mesh"
  2342. PartMesh.Offset = Vector3.new(0, 0, 0)
  2343. PartMesh.Scale = Vector3.new(1, 0.898999929, 1)
  2344.  
  2345. Part = Instance.new("Part", m2)
  2346. Part:BreakJoints()
  2347. Part.TopSurface = "Smooth"
  2348. Part.Material = "SmoothPlastic"
  2349. Part.Name = 'Part'
  2350. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2351. Part.FormFactor = "Custom" Part.CanCollide = false
  2352. Part.BrickColor = BrickColor.new("Institutional white")
  2353. Part.Size = Vector3.new(2.31999993, 0.200000003, 0.200000003)
  2354. Partweld = Instance.new("Motor6D")
  2355. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2356. Partweld.C1 = CFrame.new(3.81469727e-006, -0.232005119, 1.97199249, 0.999999762, -2.87769808e-013, 5.96046448e-008, 5.25801624e-013, 0.999991417, 2.84217094e-014, 0, -1.17239551e-013, 0.999991238)
  2357. Partweld.Parent = Part
  2358. PartMesh = Instance.new("BlockMesh",Part)
  2359. PartMesh.Name = "Mesh"
  2360. PartMesh.Offset = Vector3.new(0, 0, 0)
  2361. PartMesh.Scale = Vector3.new(1, 0.579999983, 0.579999983)
  2362.  
  2363. Part = Instance.new("Part", m2)
  2364. Part:BreakJoints()
  2365. Part.TopSurface = "Smooth"
  2366. Part.Material = "SmoothPlastic"
  2367. Part.Name = 'Part'
  2368. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2369. Part.FormFactor = "Custom" Part.CanCollide = false
  2370. Part.BrickColor = BrickColor.new("Institutional white")
  2371. Part.Size = Vector3.new(1.15999997, 0.200000003, 1.15999997)
  2372. Partweld = Instance.new("Motor6D")
  2373. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2374. Partweld.C1 = CFrame.new(-0.697060108, -0.237798691, 0.696979523, 0.707100153, -7.8854832e-008, -0.707074642, 6.79929997e-008, 0.999963224, -4.47018209e-008, 0.707100153, -2.54248249e-008, 0.707074702)
  2375. Partweld.Parent = Part
  2376. PartMesh = Instance.new("BlockMesh",Part)
  2377. PartMesh.Name = "Mesh"
  2378. PartMesh.Offset = Vector3.new(0, 0, 0)
  2379. PartMesh.Scale = Vector3.new(1, 0.696000099, 1)
  2380.  
  2381. Part = Instance.new("Part", m2)
  2382. Part:BreakJoints()
  2383. Part.TopSurface = "Smooth"
  2384. Part.Material = "SmoothPlastic"
  2385. Part.Name = 'Part'
  2386. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2387. Part.FormFactor = "Custom" Part.CanCollide = false
  2388. Part.BrickColor = BrickColor.new("Institutional white")
  2389. Part.Size = Vector3.new(0.200000003, 0.200000003, 2.0880003)
  2390. Partweld = Instance.new("Motor6D")
  2391. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2392. Partweld.C1 = CFrame.new(-1.21799088, -0.231980324, 0.985839844, 0.999999762, 5.87768056e-010, 1.80602074e-005, -5.86997118e-010, 0.999974251, -6.33293951e-009, -1.80006027e-005, 6.33261976e-009, 0.99997437)
  2393. Partweld.Parent = Part
  2394. PartMesh = Instance.new("BlockMesh",Part)
  2395. PartMesh.Name = "Mesh"
  2396. PartMesh.Offset = Vector3.new(0, 0, 0)
  2397. PartMesh.Scale = Vector3.new(0.579999983, 0.579999983, 1)
  2398.  
  2399. Part = Instance.new("Part", m2)
  2400. Part:BreakJoints()
  2401. Part.TopSurface = "Smooth"
  2402. Part.Material = "SmoothPlastic"
  2403. Part.Name = 'Part'
  2404. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2405. Part.FormFactor = "Custom" Part.CanCollide = false
  2406. Part.BrickColor = BrickColor.new("Institutional white")
  2407. Part.Size = Vector3.new(0.200000003, 0.34799999, 0.200000003)
  2408. Partweld = Instance.new("Motor6D")
  2409. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2410. Partweld.C1 = CFrame.new(0.000141143799, 1.8119812e-005, -1.21799469, 1.81794167e-005, -1.78968406e-007, -0.999964833, 6.0702348e-007, 0.999964714, -1.78957677e-007, 0.999999702, -6.06998185e-007, 1.82688236e-005)
  2411. Partweld.Parent = Part
  2412. PartMesh = Instance.new("BlockMesh",Part)
  2413. PartMesh.Name = "Mesh"
  2414. PartMesh.Offset = Vector3.new(0, 0, 0)
  2415. PartMesh.Scale = Vector3.new(0.579999983, 1, 0.579999983)
  2416.  
  2417. Part = Instance.new("Part", m2)
  2418. Part:BreakJoints()
  2419. Part.TopSurface = "Smooth"
  2420. Part.Material = "SmoothPlastic"
  2421. Part.Name = 'Part'
  2422. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2423. Part.FormFactor = "Custom" Part.CanCollide = false
  2424. Part.BrickColor = BrickColor.new("Institutional white")
  2425. Part.Size = Vector3.new(0.200000003, 0.200000003, 2.0880003)
  2426. Partweld = Instance.new("Motor6D")
  2427. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2428. Partweld.C1 = CFrame.new(-1.21799469, 0.232003212, 0.985847473, 0.999999762, 5.66021896e-010, 1.80602074e-005, -5.65410829e-010, 0.999973297, -6.33274055e-009, -1.80006027e-005, 6.3324741e-009, 0.999973238)
  2429. Partweld.Parent = Part
  2430. PartMesh = Instance.new("BlockMesh",Part)
  2431. PartMesh.Name = "Mesh"
  2432. PartMesh.Offset = Vector3.new(0, 0, 0)
  2433. PartMesh.Scale = Vector3.new(0.579999983, 0.579999983, 1)
  2434.  
  2435. Part = Instance.new("Part", m2)
  2436. Part:BreakJoints()
  2437. Part.TopSurface = "Smooth"
  2438. Part.Material = "SmoothPlastic"
  2439. Part.Name = 'Part'
  2440. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2441. Part.FormFactor = "Custom" Part.CanCollide = false
  2442. Part.BrickColor = BrickColor.new("Mid gray")
  2443. Part.Size = Vector3.new(2.31999969, 0.200000003, 1.8560003)
  2444. Partweld = Instance.new("Motor6D")
  2445. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2446. Partweld.C1 = CFrame.new(3.81469727e-006, -0.115989685, 0.985801697, 0.999999762, 6.05332673e-010, 1.80602074e-005, -6.04796213e-010, 0.999982834, -6.33284003e-009, -1.80006027e-005, 6.33262687e-009, 0.999982953)
  2447. Partweld.Parent = Part
  2448. PartMesh = Instance.new("BlockMesh",Part)
  2449. PartMesh.Name = "Mesh"
  2450. PartMesh.Offset = Vector3.new(0, 0, 0)
  2451. PartMesh.Scale = Vector3.new(1, 0.579999983, 1)
  2452.  
  2453. Part = Instance.new("Part", m2)
  2454. Part:BreakJoints()
  2455. Part.TopSurface = "Smooth"
  2456. Part.Material = "SmoothPlastic"
  2457. Part.Name = 'Part'
  2458. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2459. Part.FormFactor = "Custom" Part.CanCollide = false
  2460. Part.BrickColor = BrickColor.new("Really black")
  2461. Part.Size = Vector3.new(0.579999983, 0.200000003, 0.579999983)
  2462. Partweld = Instance.new("Motor6D")
  2463. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2464. Partweld.C1 = CFrame.new(1.52587891e-005, 0.226189613, 0.985958099, 0.99999094, -4.17435785e-007, -8.94069672e-008, 4.17436127e-007, 0.999991119, 2.08614694e-007, -2.98023224e-008, -2.83119846e-007, 0.999982476)
  2465. Partweld.Parent = Part
  2466. PartMesh = Instance.new("BlockMesh",Part)
  2467. PartMesh.Name = "Mesh"
  2468. PartMesh.Offset = Vector3.new(0, 0, 0)
  2469. PartMesh.Scale = Vector3.new(1, 0.811999977, 1)
  2470.  
  2471. Part = Instance.new("Part", m2)
  2472. Part:BreakJoints()
  2473. Part.TopSurface = "Smooth"
  2474. Part.Material = "SmoothPlastic"
  2475. Part.Name = 'Part'
  2476. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2477. Part.FormFactor = "Custom" Part.CanCollide = false
  2478. Part.BrickColor = BrickColor.new("Really black")
  2479. Part.Size = Vector3.new(0.579999983, 0.200000003, 0.579999983)
  2480. Partweld = Instance.new("Motor6D")
  2481. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2482. Partweld.C1 = CFrame.new(1.52587891e-005, -0.237810135, 0.985958099, 0.99999094, -4.17435785e-007, -8.94069672e-008, 4.17436127e-007, 0.999991119, 2.08614694e-007, -2.98023224e-008, -2.83119846e-007, 0.999982476)
  2483. Partweld.Parent = Part
  2484. PartMesh = Instance.new("BlockMesh",Part)
  2485. PartMesh.Name = "Mesh"
  2486. PartMesh.Offset = Vector3.new(0, 0, 0)
  2487. PartMesh.Scale = Vector3.new(1, 0.811999977, 1)
  2488.  
  2489. Part = Instance.new("Part", m2)
  2490. Part:BreakJoints()
  2491. Part.TopSurface = "Smooth"
  2492. Part.Material = "SmoothPlastic"
  2493. Part.Name = 'Part'
  2494. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2495. Part.FormFactor = "Custom" Part.CanCollide = false
  2496. Part.BrickColor = BrickColor.new("Institutional white")
  2497. Part.Size = Vector3.new(1.15999997, 0.200000003, 1.15999997)
  2498. Partweld = Instance.new("Motor6D")
  2499. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2500. Partweld.C1 = CFrame.new(-0.985813141, -0.237781525, 0, 1.80006027e-005, 1.57576963e-007, -0.999979973, 8.91885605e-008, 0.99998039, 2.61884452e-007, 0.999999166, -8.91910901e-008, 1.80602074e-005)
  2501. Partweld.Parent = Part
  2502. PartMesh = Instance.new("BlockMesh",Part)
  2503. PartMesh.Name = "Mesh"
  2504. PartMesh.Offset = Vector3.new(0, 0, 0)
  2505. PartMesh.Scale = Vector3.new(1, 0.69599998, 1)
  2506.  
  2507. Part = Instance.new("Part", m2)
  2508. Part:BreakJoints()
  2509. Part.TopSurface = "Smooth"
  2510. Part.Material = "SmoothPlastic"
  2511. Part.Name = 'Part'
  2512. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2513. Part.FormFactor = "Custom" Part.CanCollide = false
  2514. Part.BrickColor = BrickColor.new("Institutional white")
  2515. Part.Size = Vector3.new(0.34799999, 0.200000003, 0.34799999)
  2516. Partweld = Instance.new("Motor6D")
  2517. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2518. Partweld.C1 = CFrame.new(-5.7220459e-005, 0.223287582, 0.985862732, 0.999999285, -4.17447836e-007, 5.96046448e-008, 4.17451417e-007, 0.999991119, 2.08614694e-007, 8.94069672e-008, -8.94065408e-008, 0.999990642)
  2519. Partweld.Parent = Part
  2520. PartMesh = Instance.new("BlockMesh",Part)
  2521. PartMesh.Name = "Mesh"
  2522. PartMesh.Offset = Vector3.new(0, 0, 0)
  2523. PartMesh.Scale = Vector3.new(1, 0.898999929, 1)
  2524.  
  2525. Part = Instance.new("Part", m2)
  2526. Part:BreakJoints()
  2527. Part.TopSurface = "Smooth"
  2528. Part.Material = "SmoothPlastic"
  2529. Part.Name = 'Part'
  2530. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2531. Part.FormFactor = "Custom" Part.CanCollide = false
  2532. Part.BrickColor = BrickColor.new("Institutional white")
  2533. Part.Size = Vector3.new(1.15999997, 0.200000003, 1.15999997)
  2534. Partweld = Instance.new("Motor6D")
  2535. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2536. Partweld.C1 = CFrame.new(-0.985980988, 0.22618866, 0, -8.94069672e-008, 1.63911707e-007, -0.999990642, 8.97813663e-008, 0.999991119, 2.68218798e-007, 0.999999285, -8.97803574e-008, 5.96046448e-008)
  2537. Partweld.Parent = Part
  2538. PartMesh = Instance.new("BlockMesh",Part)
  2539. PartMesh.Name = "Mesh"
  2540. PartMesh.Offset = Vector3.new(0, 0, 0)
  2541. PartMesh.Scale = Vector3.new(1, 0.69599998, 1)
  2542.  
  2543. Part = Instance.new("Part", m2)
  2544. Part:BreakJoints()
  2545. Part.TopSurface = "Smooth"
  2546. Part.Material = "SmoothPlastic"
  2547. Part.Name = 'Part'
  2548. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2549. Part.FormFactor = "Custom" Part.CanCollide = false
  2550. Part.BrickColor = BrickColor.new("Institutional white")
  2551. Part.Size = Vector3.new(1.15999997, 0.200000003, 1.15999997)
  2552. Partweld = Instance.new("Motor6D")
  2553. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2554. Partweld.C1 = CFrame.new(-0.697110176, 0.226187706, 0.697032928, 0.707100391, -7.8857461e-008, -0.707094431, 6.79927936e-008, 0.999991119, -4.4702837e-008, 0.707100332, -2.54258214e-008, 0.707094312)
  2555. Partweld.Parent = Part
  2556. PartMesh = Instance.new("BlockMesh",Part)
  2557. PartMesh.Name = "Mesh"
  2558. PartMesh.Offset = Vector3.new(0, 0, 0)
  2559. PartMesh.Scale = Vector3.new(1, 0.696000099, 1)
  2560.  
  2561. Part = Instance.new("Part", m2)
  2562. Part:BreakJoints()
  2563. Part.TopSurface = "Smooth"
  2564. Part.Material = "SmoothPlastic"
  2565. Part.Name = 'Part'
  2566. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2567. Part.FormFactor = "Custom" Part.CanCollide = false
  2568. Part.BrickColor = BrickColor.new("Really black")
  2569. Part.Size = Vector3.new(0.579999983, 0.200000003, 0.579999983)
  2570. Partweld = Instance.new("Motor6D")
  2571. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2572. Partweld.C1 = CFrame.new(-0.697163582, 0.226187706, 0.697189331, 0.707100332, -7.88574468e-008, -0.707094491, 6.7967342e-008, 0.999991119, -4.47028512e-008, 0.707100451, 4.37624692e-009, 0.707094193)
  2573. Partweld.Parent = Part
  2574. PartMesh = Instance.new("BlockMesh",Part)
  2575. PartMesh.Name = "Mesh"
  2576. PartMesh.Offset = Vector3.new(0, 0, 0)
  2577. PartMesh.Scale = Vector3.new(1, 0.812000036, 1)
  2578.  
  2579. Part = Instance.new("Part", m2)
  2580. Part:BreakJoints()
  2581. Part.TopSurface = "Smooth"
  2582. Part.Material = "SmoothPlastic"
  2583. Part.Name = 'Part'
  2584. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2585. Part.FormFactor = "Custom" Part.CanCollide = false
  2586. Part.BrickColor = BrickColor.new("Institutional white")
  2587. Part.Size = Vector3.new(0.34799999, 0.200000003, 0.34799999)
  2588. Partweld = Instance.new("Motor6D")
  2589. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2590. Partweld.C1 = CFrame.new(-5.7220459e-005, -0.240706444, 0.985862732, 0.999999285, -4.17447836e-007, 5.96046448e-008, 4.17451417e-007, 0.999991119, 2.08614694e-007, 8.94069672e-008, -8.94065408e-008, 0.999990642)
  2591. Partweld.Parent = Part
  2592. PartMesh = Instance.new("BlockMesh",Part)
  2593. PartMesh.Name = "Mesh"
  2594. PartMesh.Offset = Vector3.new(0, 0, 0)
  2595. PartMesh.Scale = Vector3.new(1, 0.898999929, 1)
  2596.  
  2597. Part = Instance.new("Part", m2)
  2598. Part:BreakJoints()
  2599. Part.TopSurface = "Smooth"
  2600. Part.Material = "SmoothPlastic"
  2601. Part.Name = 'Part'
  2602. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2603. Part.FormFactor = "Custom" Part.CanCollide = false
  2604. Part.BrickColor = BrickColor.new("Institutional white")
  2605. Part.Size = Vector3.new(2.31999993, 0.200000003, 0.200000003)
  2606. Partweld = Instance.new("Motor6D")
  2607. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2608. Partweld.C1 = CFrame.new(3.81469727e-006, 0.23197937, -1.52587891e-005, 0.999999762, 2.23820962e-013, 5.96046448e-008, 7.10542736e-015, 0.999991417, -1.03028697e-013, 0, 1.0658141e-014, 0.999991238)
  2609. Partweld.Parent = Part
  2610. PartMesh = Instance.new("BlockMesh",Part)
  2611. PartMesh.Name = "Mesh"
  2612. PartMesh.Offset = Vector3.new(0, 0, 0)
  2613. PartMesh.Scale = Vector3.new(1, 0.579999983, 0.579999983)
  2614.  
  2615. Part = Instance.new("Part", m2)
  2616. Part:BreakJoints()
  2617. Part.TopSurface = "Smooth"
  2618. Part.Material = "SmoothPlastic"
  2619. Part.Name = 'Part'
  2620. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2621. Part.FormFactor = "Custom" Part.CanCollide = false
  2622. Part.BrickColor = BrickColor.new("Really black")
  2623. Part.Size = Vector3.new(0.579999983, 0.200000003, 0.579999983)
  2624. Partweld = Instance.new("Motor6D")
  2625. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2626. Partweld.C1 = CFrame.new(-0.697163105, -0.237812042, 0.697189331, 0.707100332, -7.88574468e-008, -0.707094491, 6.7967342e-008, 0.999991119, -4.47028512e-008, 0.707100451, 4.37624692e-009, 0.707094193)
  2627. Partweld.Parent = Part
  2628. PartMesh = Instance.new("BlockMesh",Part)
  2629. PartMesh.Name = "Mesh"
  2630. PartMesh.Offset = Vector3.new(0, 0, 0)
  2631. PartMesh.Scale = Vector3.new(1, 0.812000036, 1)
  2632.  
  2633. Part = Instance.new("Part", m2)
  2634. Part:BreakJoints()
  2635. Part.TopSurface = "Smooth"
  2636. Part.Material = "SmoothPlastic"
  2637. Part.Name = 'Part'
  2638. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2639. Part.FormFactor = "Custom" Part.CanCollide = false
  2640. Part.BrickColor = BrickColor.new("Really black")
  2641. Part.Size = Vector3.new(2.31999993, 0.200000003, 1.85600007)
  2642. Partweld = Instance.new("Motor6D")
  2643. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2644. Partweld.C1 = CFrame.new(0, 0.232005119, 0.985790253, 0.999999762, 6.06398487e-010, 1.80602074e-005, -6.05488992e-010, 0.999969959, -6.3331953e-009, -1.80006027e-005, 6.33281516e-009, 0.99996984)
  2645. Partweld.Parent = Part
  2646. PartMesh = Instance.new("BlockMesh",Part)
  2647. PartMesh.Name = "Mesh"
  2648. PartMesh.Offset = Vector3.new(0, 0, 0)
  2649. PartMesh.Scale = Vector3.new(1, 0.579999983, 1)
  2650.  
  2651. Part = Instance.new("Part", m2)
  2652. Part:BreakJoints()
  2653. Part.TopSurface = "Smooth"
  2654. Part.Material = "SmoothPlastic"
  2655. Part.Name = 'Part'
  2656. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2657. Part.FormFactor = "Custom" Part.CanCollide = false
  2658. Part.BrickColor = BrickColor.new("Institutional white")
  2659. Part.Size = Vector3.new(0.34799999, 0.200000003, 0.34799999)
  2660. Partweld = Instance.new("Motor6D")
  2661. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2662. Partweld.C1 = CFrame.new(-0.697142363, 0.223291397, 0.697052002, 0.707106292, -6.45096577e-007, -0.707100093, 7.29660428e-007, 0.999991119, -4.4702773e-008, 0.707106292, -4.72456946e-007, 0.707100153)
  2663. Partweld.Parent = Part
  2664. PartMesh = Instance.new("BlockMesh",Part)
  2665. PartMesh.Name = "Mesh"
  2666. PartMesh.Offset = Vector3.new(0, 0, 0)
  2667. PartMesh.Scale = Vector3.new(1, 0.898999929, 1)
  2668.  
  2669. Part = Instance.new("Part", m2)
  2670. Part:BreakJoints()
  2671. Part.TopSurface = "Smooth"
  2672. Part.Material = "SmoothPlastic"
  2673. Part.Name = 'Part'
  2674. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2675. Part.FormFactor = "Custom" Part.CanCollide = false
  2676. Part.BrickColor = BrickColor.new("Mid gray")
  2677. Part.Size = Vector3.new(2.31999969, 0.200000003, 1.8560003)
  2678. Partweld = Instance.new("Motor6D")
  2679. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2680. Partweld.C1 = CFrame.new(0, 0.115994453, 0.985679626, 0.999999762, 6.06839023e-010, 1.80602074e-005, -6.06164008e-010, 0.999978542, -6.33337294e-009, -1.79708004e-005, 6.33308517e-009, 0.999978423)
  2681. Partweld.Parent = Part
  2682. PartMesh = Instance.new("BlockMesh",Part)
  2683. PartMesh.Name = "Mesh"
  2684. PartMesh.Offset = Vector3.new(0, 0, 0)
  2685. PartMesh.Scale = Vector3.new(1, 0.579999983, 1)
  2686.  
  2687. Part = Instance.new("Part", m2)
  2688. Part:BreakJoints()
  2689. Part.TopSurface = "Smooth"
  2690. Part.Material = "SmoothPlastic"
  2691. Part.Name = 'Part'
  2692. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2693. Part.FormFactor = "Custom" Part.CanCollide = false
  2694. Part.BrickColor = BrickColor.new("Mid gray")
  2695. Part.Size = Vector3.new(2.31999969, 0.200000003, 1.8560003)
  2696. Partweld = Instance.new("Motor6D")
  2697. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2698. Partweld.C1 = CFrame.new(0, -5.7220459e-006, 0.985614777, 0.999999762, 6.06938499e-010, 1.80602074e-005, -6.06267037e-010, 0.999978542, -6.33343333e-009, -1.79708004e-005, 6.33315622e-009, 0.999978423)
  2699. Partweld.Parent = Part
  2700. PartMesh = Instance.new("BlockMesh",Part)
  2701. PartMesh.Name = "Mesh"
  2702. PartMesh.Offset = Vector3.new(0, 0, 0)
  2703. PartMesh.Scale = Vector3.new(1, 0.579999983, 1)
  2704.  
  2705. Part = Instance.new("Part", m2)
  2706. Part:BreakJoints()
  2707. Part.TopSurface = "Smooth"
  2708. Part.Material = "SmoothPlastic"
  2709. Part.Name = 'Part'
  2710. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2711. Part.FormFactor = "Custom" Part.CanCollide = false
  2712. Part.BrickColor = BrickColor.new("Really black")
  2713. Part.Size = Vector3.new(2.31999993, 0.200000003, 1.85600007)
  2714. Partweld = Instance.new("Motor6D")
  2715. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2716. Partweld.C1 = CFrame.new(-3.81469727e-006, -0.231994629, 0.98563385, 0.999999762, 5.88961768e-010, 1.80602074e-005, -5.88052274e-010, 0.999969959, -6.33351505e-009, -1.80006027e-005, 6.3331278e-009, 0.99996984)
  2717. Partweld.Parent = Part
  2718. PartMesh = Instance.new("BlockMesh",Part)
  2719. PartMesh.Name = "Mesh"
  2720. PartMesh.Offset = Vector3.new(0, 0, 0)
  2721. PartMesh.Scale = Vector3.new(1, 0.579999983, 1)
  2722.  
  2723. Part = Instance.new("Part", m2)
  2724. Part:BreakJoints()
  2725. Part.TopSurface = "Smooth"
  2726. Part.Material = "SmoothPlastic"
  2727. Part.Name = 'Part'
  2728. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2729. Part.FormFactor = "Custom" Part.CanCollide = false
  2730. Part.BrickColor = BrickColor.new("Institutional white")
  2731. Part.Size = Vector3.new(2.31999993, 0.200000003, 0.200000003)
  2732. Partweld = Instance.new("Motor6D")
  2733. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2734. Partweld.C1 = CFrame.new(-7.62939453e-006, -0.231983185, -0.000392913818, 0.999999762, 5.89174931e-010, 1.80602074e-005, -5.88627813e-010, 0.999982834, -6.33369623e-009, -1.79708004e-005, 6.33347597e-009, 0.999982774)
  2735. Partweld.Parent = Part
  2736. PartMesh = Instance.new("BlockMesh",Part)
  2737. PartMesh.Name = "Mesh"
  2738. PartMesh.Offset = Vector3.new(0, 0, 0)
  2739. PartMesh.Scale = Vector3.new(1, 0.579999983, 0.579999983)
  2740.  
  2741. Part = Instance.new("Part", m2)
  2742. Part:BreakJoints()
  2743. Part.TopSurface = "Smooth"
  2744. Part.Material = "SmoothPlastic"
  2745. Part.Name = 'Part'
  2746. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2747. Part.FormFactor = "Custom" Part.CanCollide = false
  2748. Part.BrickColor = BrickColor.new("Institutional white")
  2749. Part.Size = Vector3.new(0.200000003, 0.34799999, 0.200000003)
  2750. Partweld = Instance.new("Motor6D")
  2751. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2752. Partweld.C1 = CFrame.new(0.000408172607, 1.71661377e-005, 1.2179985, 1.81794167e-005, -1.78972357e-007, -0.999982238, 6.07028539e-007, 0.999982357, -1.78961514e-007, 0.999999702, -6.07014329e-007, 1.82688236e-005)
  2753. Partweld.Parent = Part
  2754. PartMesh = Instance.new("BlockMesh",Part)
  2755. PartMesh.Name = "Mesh"
  2756. PartMesh.Offset = Vector3.new(0, 0, 0)
  2757. PartMesh.Scale = Vector3.new(0.579999983, 1, 0.579999983)
  2758.  
  2759. Part = Instance.new("Part", m2)
  2760. Part:BreakJoints()
  2761. Part.TopSurface = "Smooth"
  2762. Part.Material = "SmoothPlastic"
  2763. Part.Name = 'Part'
  2764. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2765. Part.FormFactor = "Custom" Part.CanCollide = false
  2766. Part.BrickColor = BrickColor.new("Institutional white")
  2767. Part.Size = Vector3.new(0.200000003, 0.200000003, 2.0880003)
  2768. Partweld = Instance.new("Motor6D")
  2769. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2770. Partweld.C1 = CFrame.new(1.21799469, -0.231983185, 0.985591888, 0.999999762, 5.89174931e-010, 1.80602074e-005, -5.88627813e-010, 0.999982834, -6.33369623e-009, -1.79708004e-005, 6.33347597e-009, 0.999982774)
  2771. Partweld.Parent = Part
  2772. PartMesh = Instance.new("BlockMesh",Part)
  2773. PartMesh.Name = "Mesh"
  2774. PartMesh.Offset = Vector3.new(0, 0, 0)
  2775. PartMesh.Scale = Vector3.new(0.579999983, 0.579999983, 1)
  2776.  
  2777. Part = Instance.new("Part", m2)
  2778. Part:BreakJoints()
  2779. Part.TopSurface = "Smooth"
  2780. Part.Material = "SmoothPlastic"
  2781. Part.Name = 'Part'
  2782. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2783. Part.FormFactor = "Custom" Part.CanCollide = false
  2784. Part.BrickColor = BrickColor.new("Institutional white")
  2785. Part.Size = Vector3.new(0.200000003, 0.200000003, 2.0880003)
  2786. Partweld = Instance.new("Motor6D")
  2787. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2788. Partweld.C1 = CFrame.new(1.21799469, 0.232002258, 0.985588074, 0.999999762, 5.78641135e-010, 1.80602074e-005, -5.78168624e-010, 0.999980927, -6.33353991e-009, -1.79708004e-005, 6.33334807e-009, 0.999980807)
  2789. Partweld.Parent = Part
  2790. PartMesh = Instance.new("BlockMesh",Part)
  2791. PartMesh.Name = "Mesh"
  2792. PartMesh.Offset = Vector3.new(0, 0, 0)
  2793. PartMesh.Scale = Vector3.new(0.579999983, 0.579999983, 1)
  2794.  
  2795. Part = Instance.new("Part", m2)
  2796. Part:BreakJoints()
  2797. Part.TopSurface = "Smooth"
  2798. Part.Material = "SmoothPlastic"
  2799. Part.Name = 'Part'
  2800. Part.Transparency = 0 Part.BottomSurface = "Smooth"
  2801. Part.FormFactor = "Custom" Part.CanCollide = false
  2802. Part.BrickColor = BrickColor.new("Institutional white")
  2803. Part.Size = Vector3.new(2.31999993, 0.200000003, 0.200000003)
  2804. Partweld = Instance.new("Motor6D")
  2805. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2806. Partweld.C1 = CFrame.new(3.81469727e-006, 0.231988907, 1.97200775, 0.999999762, 1.69357861e-011, 5.96046448e-008, -1.6701307e-011, 0.999991179, 2.27373675e-013, 2.98023224e-008, -3.23296945e-013, 0.99999094)
  2807. Partweld.Parent = Part
  2808. PartMesh = Instance.new("BlockMesh",Part)
  2809. PartMesh.Name = "Mesh"
  2810. PartMesh.Offset = Vector3.new(0, 0, 0)
  2811. PartMesh.Scale = Vector3.new(1, 0.579999983, 0.579999983)
  2812.  
  2813. HandleMesh = Instance.new("BlockMesh",Handle2)
  2814. HandleMesh.Name = "Mesh"
  2815. HandleMesh.Offset = Vector3.new(0, 0, 0)
  2816. HandleMesh.Scale = Vector3.new(1, 1, 0.579999983)
  2817.  
  2818.  
  2819. CubesOfPower = Instance.new("Model",Workspace.Terrain)
  2820.  
  2821. World = Instance.new("Part",CubesOfPower)
  2822. World.Size = Vector3.new(3,3,3)
  2823. World.Anchored = true
  2824. World.Position = workspace.Base.Position
  2825. World.Material = "SmoothPlastic"
  2826. World.Reflectance = 1
  2827.  
  2828. World2 = Instance.new("Part",CubesOfPower)
  2829. World2.Size = Vector3.new(3,3,3)
  2830. World2.Anchored = true
  2831. World2.Position = workspace.Base.Position
  2832. World2.Material = "SmoothPlastic"
  2833. World2.Reflectance = 1
  2834.  
  2835. World3 = Instance.new("Part",CubesOfPower)
  2836. World3.Size = Vector3.new(3,3,3)
  2837. World3.Anchored = true
  2838. World3.Position = workspace.Base.Position
  2839. World3.Material = "SmoothPlastic"
  2840. World3.Reflectance = 1
  2841.  
  2842. World4 = Instance.new("Part",CubesOfPower)
  2843. World4.Size = Vector3.new(3,3,3)
  2844. World4.Anchored = true
  2845. World4.Position = workspace.Base.Position
  2846. World4.Material = "SmoothPlastic"
  2847. World4.Reflectance = 1
  2848.  
  2849. WorldX = Instance.new("Part",CubesOfPower)
  2850. WorldX.Size = Vector3.new(3,3,3)
  2851. WorldX.Anchored = true
  2852. WorldX.Position = workspace.Base.Position
  2853. WorldX.Material = "SmoothPlastic"
  2854. WorldX.Reflectance = 1
  2855.  
  2856. World2X = Instance.new("Part",CubesOfPower)
  2857. World2X.Size = Vector3.new(3,3,3)
  2858. World2X.Anchored = true
  2859. World2X.Position = workspace.Base.Position
  2860. World2X.Material = "SmoothPlastic"
  2861. World2X.Reflectance = 1
  2862.  
  2863. World3X = Instance.new("Part",CubesOfPower)
  2864. World3X.Size = Vector3.new(3,3,3)
  2865. World3X.Anchored = true
  2866. World3X.Position = workspace.Base.Position
  2867. World3X.Material = "SmoothPlastic"
  2868. World3X.Reflectance = 1
  2869.  
  2870. World4X = Instance.new("Part",CubesOfPower)
  2871. World4X.Size = Vector3.new(3,3,3)
  2872. World4X.Anchored = true
  2873. World4X.Position = workspace.Base.Position
  2874. World4X.Material = "SmoothPlastic"
  2875. World4X.Reflectance = 1
  2876.  
  2877. Target = nil
  2878.  
  2879. World.Touched:connect(function(hit)
  2880. Damagefunc(torso,hit,0,0,math.random(100,100),"Knockdown",RootPart,.2,1)
  2881. end)
  2882. World2.Touched:connect(function(hit)
  2883. Damagefunc(torso,hit,0,0,math.random(100,100),"Knockdown",RootPart,.2,1)
  2884. end)
  2885. World3.Touched:connect(function(hit)
  2886. Damagefunc(torso,hit,0,0,math.random(100,100),"Knockdown",RootPart,.2,1)
  2887. end)
  2888. World4.Touched:connect(function(hit)
  2889. Damagefunc(torso,hit,0,0,math.random(100,100),"Knockdown",RootPart,.2,1)
  2890. end)
  2891. WorldX.Touched:connect(function(hit)
  2892. Damagefunc(torso,hit,0,0,math.random(100,100),"Knockdown",RootPart,.2,1)
  2893. end)
  2894. World2X.Touched:connect(function(hit)
  2895. Damagefunc(torso,hit,0,0,math.random(100,100),"Knockdown",RootPart,.2,1)
  2896. end)
  2897. World3X.Touched:connect(function(hit)
  2898. Damagefunc(torso,hit,0,0,math.random(100,100),"Knockdown",RootPart,.2,1)
  2899. end)
  2900. World4X.Touched:connect(function(hit)
  2901. Damagefunc(torso,hit,0,0,math.random(100,100),"Knockdown",RootPart,.2,1)
  2902. end)
  2903.  
  2904. StandOn = false
  2905. local hrprv=0
  2906. angle = 0
  2907. angle2 = 0
  2908. angle3 = 0
  2909. anglespeed = 2
  2910. anglespeed2 = 1
  2911. anglespeed3 = .4
  2912. MyHealth = hum.Health
  2913. MyMaxHealth = hum.MaxHealth
  2914. MyMaxHealth = humane.Health
  2915. MyHealth = humane.Health
  2916. humane.Name = "The Worldo"
  2917. ItsHot = true
  2918. ControlledWorlds = true
  2919. jjing=false
  2920. Light = false
  2921. Dark = true
  2922. game:GetService("RunService").Stepped:connect(function()
  2923. for i, v in pairs(pchar:GetChildren()) do
  2924. if v:IsA("Part") then
  2925. v.BrickColor = BrickColor.new("Really black")
  2926. end
  2927. end
  2928. for i,v in ipairs(m:children()) do
  2929. if v:isA'Part' then
  2930. v.CanCollide = false
  2931. v.Reflectance = 0
  2932. if Light == true then
  2933. v.Transparency = 0
  2934. else
  2935. v.Transparency = 1
  2936. end
  2937. end
  2938. end
  2939.  
  2940. for i,v in ipairs(m2:children()) do
  2941. if v:isA'Part' then
  2942. v.CanCollide = false
  2943. v.Reflectance = 0
  2944. if Dark == true then
  2945. v.Transparency = 0
  2946. else
  2947. v.Transparency = 1
  2948. end
  2949. end
  2950. end
  2951. angle = ((angle % 100) + anglespeed/10)
  2952. angle2 = ((angle2 % 100) + anglespeed2/10)
  2953. angle3 = ((angle3 % 100) + anglespeed3/10)
  2954. hrprv=Tween(hrprv,hrp.RotVelocity.Y,0.4)
  2955. sine=sine+1
  2956. if HeavyGrav == true then
  2957. hum.JumpPower = math.huge
  2958. else
  2959. hum.JumpPower = 50
  2960. end
  2961. if StandOn == false then
  2962. for i,v in pairs(pchar:children()) do
  2963. if v:IsA("Part") and v.Name ~= "HumanoidRootPart" then
  2964. v.Transparency = 1
  2965. end
  2966. end
  2967. elseif StandOn == true then
  2968. for i,v in pairs(pchar:children()) do
  2969. if v:IsA("Part") and v.Name ~= "HumanoidRootPart" then
  2970. v.Transparency = 1
  2971. end
  2972. end
  2973. end
  2974. MyHealth = humane.Health
  2975. humane.Health = MyHealth
  2976. if hum.Sit==true then
  2977. animpose="Sitting"
  2978. elseif hrp.Velocity.y > 1 then
  2979. animpose = "Jumping"
  2980. elseif ffing==true then
  2981. animpose="Freefalling"
  2982. elseif (hrp.Velocity*Vn(1,0,1)).magnitude<2 then
  2983. animpose="Idle"
  2984. elseif (hrp.Velocity*Vn(1,0,1)).magnitude<20 then
  2985. animpose="Walking"
  2986. elseif (hrp.Velocity*Vn(1,0,1)).magnitude>20 then
  2987. animpose="Sprinting"
  2988. end
  2989. if ControlledWorlds == true then
  2990. Handle.CFrame = RLerp(Handle.CFrame,tor.CFrame*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine))*CFrame.new(2,2+math.sin(angle3)*.2,-3)*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine)),.04)
  2991. Handle2.CFrame = RLerp(Handle2.CFrame,tor.CFrame*CFrame.Angles(math.rad(-sine),math.rad(-sine),math.rad(-sine))*CFrame.new(2,2+math.sin(-angle3)*.2,-3)*CFrame.Angles(math.rad(-sine),math.rad(-sine),math.rad(-sine)),.04)
  2992. World.CFrame = RLerp(World.CFrame,workspace.Base.CFrame*CFrame.new(100,10+math.sin(angle3)*.2,0)*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine))*CFrame.new(math.cos(angle3),math.sin(angle),math.sin(angle2)),.94)
  2993. World2.CFrame = RLerp(World2.CFrame,workspace.Base.CFrame*CFrame.new(-100,10+math.sin(angle3)*.2,0)*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine))*CFrame.new(math.cos(angle3),math.sin(angle),math.sin(angle2)),.59)
  2994. World3.CFrame = RLerp(World3.CFrame,workspace.Base.CFrame*CFrame.new(0,10+math.sin(angle3)*.2,100)*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine))*CFrame.new(math.cos(angle3),math.sin(angle),math.sin(angle2)),.04)
  2995. World4.CFrame = RLerp(World4.CFrame,workspace.Base.CFrame*CFrame.new(0,10+math.sin(angle3)*.2,-100)*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine))*CFrame.new(math.cos(angle3),math.sin(angle),math.sin(angle2)),.34)
  2996. WorldX.CFrame = RLerp(WorldX.CFrame,workspace.Base.CFrame*CFrame.new(50,10+math.sin(angle3)*.2,50)*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine))*CFrame.new(math.cos(angle3),math.sin(angle),math.sin(angle2)),.64)
  2997. World2X.CFrame = RLerp(World2X.CFrame,workspace.Base.CFrame*CFrame.new(-50,10+math.sin(angle3)*.2,50)*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine))*CFrame.new(math.cos(angle3),math.sin(angle),math.sin(angle2)),.742)
  2998. World3X.CFrame = RLerp(World3X.CFrame,workspace.Base.CFrame*CFrame.new(50,10+math.sin(angle3)*.2,-50)*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine))*CFrame.new(math.cos(angle3),math.sin(angle),math.sin(angle2)),.49)
  2999. World4X.CFrame = RLerp(World4X.CFrame,workspace.Base.CFrame*CFrame.new(-50,10+math.sin(angle3)*.2,-50)*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine))*CFrame.new(math.cos(angle3),math.sin(angle),math.sin(angle2)),.5)
  3000. elseif ControlledWorlds == false then
  3001. Handle.CFrame = RLerp(Handle.CFrame,Target.CFrame*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine))*CFrame.new(2,2+math.sin(angle3)*.2,-3)*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine)),.04)
  3002. Handle2.CFrame = RLerp(Handle2.CFrame,Target.CFrame*CFrame.Angles(math.rad(-sine),math.rad(-sine),math.rad(-sine))*CFrame.new(2,2+math.sin(-angle3)*.2,-3)*CFrame.Angles(math.rad(-sine),math.rad(-sine),math.rad(-sine)),.04)
  3003. World.CFrame = RLerp(World.CFrame,Target.CFrame*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine))*CFrame.new(2,2+math.sin(angle3)*.2,-3)*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine)),0.04)
  3004. World2.CFrame = RLerp(World2.CFrame,Target.CFrame*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine))*CFrame.new(2,2+math.sin(angle3)*.2,-3)*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine)),0.44)
  3005. World3.CFrame = RLerp(World3.CFrame,Target.CFrame*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine))*CFrame.new(2,2+math.sin(angle3)*.2,-3)*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine)),0.1)
  3006. World4.CFrame = RLerp(World4.CFrame,Target.CFrame*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine))*CFrame.new(2,2+math.sin(angle3)*.2,-3)*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine)),0.094)
  3007. WorldX.CFrame = RLerp(WorldX.CFrame,Target.CFrame*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine))*CFrame.new(2,2+math.sin(angle3)*.2,-3)*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine)),0.6)
  3008. World2X.CFrame = RLerp(World2X.CFrame,Target.CFrame*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine))*CFrame.new(2,2+math.sin(angle3)*.2,-3)*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine)),0.9)
  3009. World3X.CFrame = RLerp(World3X.CFrame,Target.CFrame*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine))*CFrame.new(2,2+math.sin(angle3)*.2,-3)*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine)),0.2)
  3010. World4X.CFrame = RLerp(World4X.CFrame,Target.CFrame*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine))*CFrame.new(2,2+math.sin(angle3)*.2,-3)*CFrame.Angles(math.rad(sine),math.rad(sine),math.rad(sine)),0.05)
  3011. end
  3012. if Attacking == false then
  3013. torso.CFrame = hrp.CFrame*CFrame.new(0,0,3)
  3014. runKF(heid2)
  3015. runKF(toid2)
  3016. runKF(laid2)
  3017. runKF(raid2)
  3018. runKF(llid2)
  3019. runKF(rlid2)
  3020. end
  3021. if noRig==false then
  3022. if animpose=="Idle" then
  3023. runKF(heid)
  3024. runKF(toid)
  3025. runKF(laid)
  3026. runKF(raid)
  3027. runKF(llid)
  3028. runKF(rlid)
  3029. elseif animpose=="Walking" then
  3030. runKF(hewk)
  3031. runKF(towk)
  3032. runKF(lawk)
  3033. runKF(rawk)
  3034. runKF(llwk)
  3035. runKF(rlwk)
  3036. --tow.C0=tow.C0:lerp(tow.C0*CA(0,0,hrprv/25),0.4)
  3037. --rlw.C0=rlw.C0:lerp(rlw.C0*CA(0,0,-hrprv/25),0.4)
  3038. ---llw.C0=llw.C0:lerp(llw.C0*CA(0,0,-hrprv/25),0.4)
  3039. elseif animpose=="Sprinting" then
  3040. runKF(hesp)
  3041. runKF(tosp)
  3042. runKF(lasp)
  3043. runKF(rasp)
  3044. runKF(llsp)
  3045. runKF(rlsp)
  3046. --tow.C0=tow.C0:lerp(tow.C0*CA(0,0,hrprv/10),0.4)
  3047. --rlw.C0=rlw.C0:lerp(rlw.C0*CA(0,0,-hrprv/10),0.4)
  3048. --llw.C0=llw.C0:lerp(llw.C0*CA(0,0,-hrprv/10),0.4)
  3049. elseif animpose=="Freefalling" then
  3050. runKF(heff)
  3051. runKF(toff)
  3052. runKF(laff)
  3053. runKF(raff)
  3054. runKF(llff)
  3055. runKF(rlff)
  3056. --tow.C0=tow.C0:lerp(tow.C0*CA(0,0,hrprv/10),0.4)
  3057. elseif animpose=="Jumping" then
  3058. runKF(hejp)
  3059. runKF(tojp)
  3060. runKF(lajp)
  3061. runKF(rajp)
  3062. runKF(lljp)
  3063. runKF(rljp)
  3064. end
  3065. end
  3066. end)
  3067.  
  3068. print(hum.JumpPower)
  3069.  
  3070. AnotherOneBitesZaDusto = 1000
  3071. hum.MaxHealth = 1000
  3072. wait()
  3073. hum.Health = 1000
  3074. function Switching()
  3075. if Light == true then
  3076. Light = false
  3077. Dark = true
  3078. elseif Dark == true then
  3079. Light = true
  3080. Dark = false
  3081. end
  3082. end
  3083. while wait(100) do
  3084. AnotherOneBitesZaDusto = hum.Health
  3085. print'Changed'
  3086. Switching()
  3087. end
  3088.  
  3089. local Player = game:service("Players").LocalPlayer
  3090.  
  3091. local Character = game.Players.LocalPlayer.Character --game.Workspace.fefio92142
  3092.  
  3093.  
  3094. -------------------------------------------------------------------------------------
  3095. -------------------------------------------------------------------------------------
  3096.  
  3097. local Color = ColorSequence.new(Color3.new(5,5,5), Color3.new(0,0,0))
  3098.  
  3099. local Num = 0.5
  3100.  
  3101. local Num2 = 4 -------------Mods:1,4,8,10,15,20-------------------------------------
  3102. local Size = 0.8
  3103. local Rate = 300
  3104. -------------------------------------------------------------------------------------
  3105. local Player = game:service'Players'.LocalPlayer
  3106. local Character = Player.Character
  3107. Torso = Character:WaitForChild'Torso'
  3108.  
  3109. local Wing1 = Instance.new("Part",Character)
  3110. Wing1.FormFactor = Enum.FormFactor.Custom
  3111. Wing1.Size = Vector3.new(.2, .2, .2)
  3112. Wing1.Name = "WIng_1"
  3113.  
  3114. local fire = Instance.new("ParticleEmitter", Wing1)
  3115. fire.VelocitySpread = 0
  3116. fire.Lifetime = NumberRange.new(2)
  3117. fire.Acceleration = Vector3.new(0, 2, 2)
  3118. fire.RotSpeed = NumberRange.new(10)
  3119. fire.Rate = Rate
  3120. fire.Rotation = NumberRange.new(151515)
  3121. fire.Name = "Fire"
  3122. fire.LightEmission = 0.78
  3123. fire.LockedToPart = true
  3124. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  3125. fire.Color = Color
  3126. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  3127.  
  3128. local Wing2 = Wing1:Clone()
  3129. Wing2.Parent = Torso
  3130. local x,y,z = 0,-1,-6
  3131.  
  3132. Wld = function(a,b,cf)
  3133. local Weld = Instance.new('Weld',a)
  3134. Weld.Part0 = a
  3135. Weld.Part1 = b
  3136. Weld.C1 = cf
  3137. return Weld
  3138. end
  3139.  
  3140. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
  3141. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
  3142.  
  3143.  
  3144. game:service'RunService'.Stepped:connect(function()
  3145. --z = 6+math.sin(tick()*2)
  3146. y = -1+math.sin(tick()*Num)*Num2
  3147. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  3148. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  3149. end)
  3150. ------------------------------------------------------------------------------------------------
  3151. local Player = game:service'Players'.LocalPlayer
  3152. local Character = Player.Character
  3153. Torso = Character:WaitForChild'Torso'
  3154.  
  3155. local Wing1 = Instance.new("Part",Character)
  3156. Wing1.FormFactor = Enum.FormFactor.Custom
  3157. Wing1.Size = Vector3.new(.2, .2, .2)
  3158. Wing1.Name = "WIng_1"
  3159.  
  3160. local fire = Instance.new("ParticleEmitter", Wing1)
  3161. fire.VelocitySpread = 0
  3162. fire.Lifetime = NumberRange.new(2.5)
  3163. fire.Acceleration = Vector3.new(0, 4, 4)
  3164. fire.RotSpeed = NumberRange.new(10)
  3165. fire.Rate = Rate
  3166. fire.Rotation = NumberRange.new(151515)
  3167. fire.Name = "Fire"
  3168. fire.LightEmission = 0.78
  3169. fire.LockedToPart = true
  3170. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  3171. fire.Color = Color
  3172. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  3173.  
  3174. local Wing2 = Wing1:Clone()
  3175. Wing2.Parent = Torso
  3176. local x,y,z = 0,-1,-6
  3177.  
  3178. Wld = function(a,b,cf)
  3179. local Weld = Instance.new('Weld',a)
  3180. Weld.Part0 = a
  3181. Weld.Part1 = b
  3182. Weld.C1 = cf
  3183. return Weld
  3184. end
  3185.  
  3186. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
  3187. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
  3188.  
  3189. print'Loaded'
  3190.  
  3191. game:service'RunService'.Stepped:connect(function()
  3192. --z = 6+math.sin(tick()*2)
  3193. y = -1+math.sin(tick()*Num)*Num2
  3194. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  3195. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  3196. end)
  3197.  
  3198. ------------------------------------------------------------------------------------------------
  3199. local Player = game:service'Players'.LocalPlayer
  3200. local Character = Player.Character
  3201. Torso = Character:WaitForChild'Torso'
  3202.  
  3203. local Wing1 = Instance.new("Part",Character)
  3204. Wing1.FormFactor = Enum.FormFactor.Custom
  3205. Wing1.Size = Vector3.new(.2, .2, .2)
  3206. Wing1.Name = "WIng_1"
  3207.  
  3208. local fire = Instance.new("ParticleEmitter", Wing1)
  3209. fire.VelocitySpread = 0
  3210. fire.Lifetime = NumberRange.new(2.8)
  3211. fire.Acceleration = Vector3.new(0, 4, 4)
  3212. fire.RotSpeed = NumberRange.new(10)
  3213. fire.Rate = Rate
  3214. fire.Rotation = NumberRange.new(151515)
  3215. fire.Name = "Fire"
  3216. fire.LightEmission = 0.78
  3217. fire.LockedToPart = true
  3218. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  3219. fire.Color = Color
  3220. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  3221.  
  3222. local Wing2 = Wing1:Clone()
  3223. Wing2.Parent = Torso
  3224. local x,y,z = 0,-1,-6
  3225.  
  3226. Wld = function(a,b,cf)
  3227. local Weld = Instance.new('Weld',a)
  3228. Weld.Part0 = a
  3229. Weld.Part1 = b
  3230. Weld.C1 = cf
  3231. return Weld
  3232. end
  3233.  
  3234. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
  3235. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
  3236.  
  3237. print'Loaded'
  3238.  
  3239. game:service'RunService'.Stepped:connect(function()
  3240. --z = 6+math.sin(tick()*2)
  3241. y = -1+math.sin(tick()*Num)*Num2
  3242. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  3243. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  3244. end)
  3245.  
  3246. ------------------------------------------------------------------------------------------------
  3247. local Player = game:service'Players'.LocalPlayer
  3248. local Character = Player.Character
  3249. Torso = Character:WaitForChild'Torso'
  3250.  
  3251. local Wing1 = Instance.new("Part",Character)
  3252. Wing1.FormFactor = Enum.FormFactor.Custom
  3253. Wing1.Size = Vector3.new(.2, .2, .2)
  3254. Wing1.Name = "WIng_1"
  3255.  
  3256. local fire = Instance.new("ParticleEmitter", Wing1)
  3257. fire.VelocitySpread = 0
  3258. fire.Lifetime = NumberRange.new(3)
  3259. fire.Acceleration = Vector3.new(0, 4, 4)
  3260. fire.RotSpeed = NumberRange.new(10)
  3261. fire.Rate = Rate
  3262. fire.Rotation = NumberRange.new(151515)
  3263. fire.Name = "Fire"
  3264. fire.LightEmission = 0.78
  3265. fire.LockedToPart = true
  3266. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  3267. fire.Color = Color
  3268. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  3269.  
  3270. local Wing2 = Wing1:Clone()
  3271. Wing2.Parent = Torso
  3272. local x,y,z = 0,-1,-6
  3273.  
  3274. Wld = function(a,b,cf)
  3275. local Weld = Instance.new('Weld',a)
  3276. Weld.Part0 = a
  3277. Weld.Part1 = b
  3278. Weld.C1 = cf
  3279. return Weld
  3280. end
  3281.  
  3282. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
  3283. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
  3284.  
  3285. print'Loaded'
  3286.  
  3287. game:service'RunService'.Stepped:connect(function()
  3288. --z = 6+math.sin(tick()*2)
  3289. y = -1+math.sin(tick()*Num)*Num2
  3290. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  3291. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  3292. end)
  3293.  
  3294. ------------------------------------------------------------------------------------------------
  3295. local Player = game:service'Players'.LocalPlayer
  3296. local Character = Player.Character
  3297. Torso = Character:WaitForChild'Torso'
  3298.  
  3299. local Wing1 = Instance.new("Part",Character)
  3300. Wing1.FormFactor = Enum.FormFactor.Custom
  3301. Wing1.Size = Vector3.new(.2, .2, .2)
  3302. Wing1.Name = "WIng_1"
  3303.  
  3304. local fire = Instance.new("ParticleEmitter", Wing1)
  3305. fire.VelocitySpread = 0
  3306. fire.Lifetime = NumberRange.new(3.1)
  3307. fire.Acceleration = Vector3.new(0, 4, 4)
  3308. fire.RotSpeed = NumberRange.new(10)
  3309. fire.Rate = Rate
  3310. fire.Rotation = NumberRange.new(151515)
  3311. fire.Name = "Fire"
  3312. fire.LightEmission = 0.78
  3313. fire.LockedToPart = true
  3314. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  3315. fire.Color = Color
  3316. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  3317.  
  3318. local Wing2 = Wing1:Clone()
  3319. Wing2.Parent = Torso
  3320. local x,y,z = 0,-1,-6
  3321.  
  3322. Wld = function(a,b,cf)
  3323. local Weld = Instance.new('Weld',a)
  3324. Weld.Part0 = a
  3325. Weld.Part1 = b
  3326. Weld.C1 = cf
  3327. return Weld
  3328. end
  3329.  
  3330. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
  3331. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
  3332.  
  3333. print'Loaded'
  3334.  
  3335. game:service'RunService'.Stepped:connect(function()
  3336. --z = 6+math.sin(tick()*2)
  3337. y = -1+math.sin(tick()*Num)*Num2
  3338. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  3339. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  3340. end)
  3341. --// Script made by Cronizete
  3342. --// edit by BonnieKunG1s
  3343.  
  3344. char = game.Players.LocalPlayer.Character
  3345. plr = game.Players.LocalPlayer
  3346. char.Archivable = true
  3347.  
  3348.  
  3349. nvm = Instance.new('NumberValue', game.Workspace.CurrentCamera)
  3350. nvm.Value = 0
  3351. nvm2 = Instance.new('NumberValue', game.Workspace.CurrentCamera)
  3352. nvm2.Value = 1
  3353. nvm3 = Instance.new('NumberValue', game.Workspace.CurrentCamera)
  3354. nvm3.Value = 0
  3355. nvm4 = Instance.new('NumberValue', game.Workspace.CurrentCamera)
  3356. nvm4.Value = 0
  3357.  
  3358. bg1 = char:Clone()
  3359. bg1.Archivable = false
  3360. bg1.Head.face.Texture = "http://www.roblox.com/asset/?id=996521543"
  3361.  
  3362. bgname1 = math.random(1, 10)
  3363. if bgname1 == 1 then
  3364. bg1.Name = "Refrop's girlfriend 1"
  3365. end
  3366. if bgname1 == 2 then
  3367. bg1.Name = "Refrop's girlfriend 2"
  3368. end
  3369. if bgname1 == 3 then
  3370. bg1.Name = "Refrop's girlfriend 3"
  3371. end
  3372. if bgname1 == 4 then
  3373. bg1.Name = "Refrop's girlfriend 4"
  3374. end
  3375. if bgname1 == 5 then
  3376. bg1.Name = "Refrop's girlfriend 5"
  3377. end
  3378. if bgname1 == 6 then
  3379. bg1.Name = "Refrop's girlfriend 6"
  3380. end
  3381. if bgname1 == 7 then
  3382. bg1.Name = "Refrop's girlfriend 7"
  3383. end
  3384. if bgname1 == 8 then
  3385. bg1.Name = "Refrop's girlfriend 8"
  3386. end
  3387. if bgname1 == 9 then
  3388. bg1.Name = "Refrop's girlfriend 9"
  3389. end
  3390. if bgname1 == 10 then
  3391. bg1.Name = "Refrop's girlfriend 10"
  3392. end
  3393.  
  3394. bgpoint1 = Instance.new('Part', char)
  3395. bgpoint1.Anchored = false
  3396. bgpoint1.CanCollide = false
  3397. bgpoint1.Transparency = 1
  3398. bgpoint1.Size = Vector3.new(0.2,0.2,0.2)
  3399.  
  3400. Weld = Instance.new("Weld",game.Players.LocalPlayer.Character)
  3401. Weld.Part0 = game.Players.LocalPlayer.Character["Torso"]
  3402. Weld.Part1 = bgpoint1
  3403. Weld.C1 = CFrame.new(10, 0, 0) * CFrame.fromEulerAnglesXYZ(0, 0, 0)
  3404.  
  3405. bg2 = char:Clone()
  3406. bg2.Head.face.Texture = "http://www.roblox.com/asset/?id=996521543"
  3407. bg2.Archivable = false
  3408. bgname2 = math.random(1, 10)
  3409. if bgname2 == 1 then
  3410. bg2.Name = "Refrop's girlfriend 1"
  3411. end
  3412. if bgname2 == 2 then
  3413. bg2.Name = "Refrop's girlfriend 2"
  3414. end
  3415. if bgname2 == 3 then
  3416. bg2.Name = "Refrop's girlfriend 3"
  3417. end
  3418. if bgname2 == 4 then
  3419. bg2.Name = "Refrop's girlfriend 4"
  3420. end
  3421. if bgname2 == 5 then
  3422. bg2.Name = "Refrop's girlfriend 5"
  3423. end
  3424. if bgname2 == 6 then
  3425. bg2.Name = "Refrop's girlfriend 6"
  3426. end
  3427. if bgname2 == 7 then
  3428. bg2.Name = "Refrop's girlfriend 7"
  3429. end
  3430. if bgname2 == 8 then
  3431. bg2.Name = "Refrop's girlfriend 8"
  3432. end
  3433. if bgname2 == 9 then
  3434. bg2.Name = "Refrop's girlfriend 9"
  3435. end
  3436. if bgname2 == 10 then
  3437. bg2.Name = "Refrop's girlfriend 10"
  3438. end
  3439.  
  3440. bgpoint2 = Instance.new('Part', char)
  3441. bgpoint2.Anchored = false
  3442. bgpoint2.CanCollide = false
  3443. bgpoint2.Transparency = 1
  3444. bgpoint2.Size = Vector3.new(0.2,0.2,0.2)
  3445.  
  3446. Weld = Instance.new("Weld",game.Players.LocalPlayer.Character)
  3447. Weld.Part0 = game.Players.LocalPlayer.Character["Torso"]
  3448. Weld.Part1 = bgpoint2
  3449. Weld.C1 = CFrame.new(-10, 0, 0) * CFrame.fromEulerAnglesXYZ(0, 0, 0)
  3450.  
  3451. for _,c in pairs(bg2:GetChildren()) do
  3452. if c:IsA('Accessory') then
  3453. c:Destroy()
  3454. end
  3455. end
  3456.  
  3457. for _,c in pairs(bg1:GetChildren()) do
  3458. if c:IsA('Accessory') then
  3459. c:Destroy()
  3460. end
  3461. end
  3462.  
  3463. for _,c in pairs(bg2:GetChildren()) do
  3464. if c:IsA('CharacterMesh') then
  3465. c:Destroy()
  3466. end
  3467. end
  3468.  
  3469. for _,c in pairs(bg1:GetChildren()) do
  3470. if c:IsA('CharacterMesh') then
  3471. c:Destroy()
  3472. end
  3473. end
  3474.  
  3475. for _,c in pairs(bg2:GetChildren()) do
  3476. if c:IsA('Shirt') then
  3477. c:Destroy()
  3478. shirt = Instance.new("Shirt", bg2)
  3479. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=457259912"
  3480. end
  3481. end
  3482.  
  3483. for _,c in pairs(bg1:GetChildren()) do
  3484. if c:IsA('Pants') then
  3485. c:Destroy()
  3486. pants = Instance.new("Pants", bg1)
  3487. pants.PantsTemplate = "http://www.roblox.com/asset/?id=609932389"
  3488. end
  3489. end
  3490.  
  3491. for _,c in pairs(bg2:GetChildren()) do
  3492. if c:IsA('Pants') then
  3493. c:Destroy()
  3494. pants = Instance.new("Pants", bg2)
  3495. pants.PantsTemplate = "http://www.roblox.com/asset/?id=609932389"
  3496. end
  3497. end
  3498.  
  3499. for _,c in pairs(bg1:GetChildren()) do
  3500. if c:IsA('Shirt') then
  3501. c:Destroy()
  3502. shirt = Instance.new("Shirt", bg1)
  3503. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=457259912"
  3504. end
  3505. end
  3506.  
  3507. bg2.Parent = char
  3508. bg1.Parent = char
  3509. bg2.Torso.CFrame = bgpoint2.CFrame
  3510. bg1.Torso.CFrame = bgpoint1.CFrame
  3511.  
  3512. health = game.Players.LocalPlayer.Character.Humanoid.Health
  3513. game.Players.LocalPlayer.Character.Humanoid.Changed:connect(function()
  3514. if game.Players.LocalPlayer.Character.Humanoid.Health < health then
  3515. bgheal = math.random(1, 2)
  3516. if bgheal == 1 then
  3517. bgpoint1.CFrame = char.Torso.CFrame
  3518. Weld = Instance.new("Weld",game.Players.LocalPlayer.Character)
  3519. Weld.Part0 = game.Players.LocalPlayer.Character["Torso"]
  3520. Weld.Part1 = bgpoint1
  3521. Weld.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0)
  3522. wait(3.5)
  3523. char.Humanoid.Health = char.Humanoid.Health + 50
  3524. bgpoint1.CFrame = char.Torso.CFrame * CFrame.new(0,0.1,0)
  3525. Weld = Instance.new("Weld",game.Players.LocalPlayer.Character)
  3526. Weld.Part0 = game.Players.LocalPlayer.Character["Torso"]
  3527. Weld.Part1 = bgpoint1
  3528. Weld.C1 = CFrame.new(10, 0, 0) * CFrame.fromEulerAnglesXYZ(0, 0, 0)
  3529. end
  3530. if bgheal == 2 then
  3531. bgpoint2.CFrame = char.Torso.CFrame
  3532. Weld = Instance.new("Weld",game.Players.LocalPlayer.Character)
  3533. Weld.Part0 = game.Players.LocalPlayer.Character["Torso"]
  3534. Weld.Part1 = bgpoint2
  3535. Weld.C1 = CFrame.fromEulerAnglesXYZ(0, 0, 0)
  3536. wait(3.5)
  3537. char.Humanoid.Health = char.Humanoid.Health + 50
  3538. bgpoint2.CFrame = char.Torso.CFrame * CFrame.new(0,0.1,0)
  3539. Weld = Instance.new("Weld",game.Players.LocalPlayer.Character)
  3540. Weld.Part0 = game.Players.LocalPlayer.Character["Torso"]
  3541. Weld.Part1 = bgpoint2
  3542. Weld.C1 = CFrame.new(-10, 0, 0) * CFrame.fromEulerAnglesXYZ(0, 0, 0)
  3543. end
  3544. end
  3545. health = game.Players.LocalPlayer.Character.Humanoid.Health
  3546. end)
  3547.  
  3548. bgskin = math.random(1, 2)
  3549. if bgskin == 1 then
  3550. r = bg1:getChildren()
  3551. for i = 1, #r do
  3552. if r[i].className == "Part" then
  3553. r[i].BrickColor = BrickColor.new('Cool yellow')
  3554. end
  3555. end
  3556. end
  3557. if bgskin == 1 then
  3558. a = bg2:getChildren()
  3559. for i = 1, #a do
  3560. if a[i].className == "Part" then
  3561. a[i].BrickColor = BrickColor.new('CGA brown')
  3562. end
  3563. end
  3564. end
  3565.  
  3566. game.Players.LocalPlayer.Chatted:connect(function(say)
  3567.  
  3568. if say == "bois" then
  3569. bg1["Head"].Transparency = 1
  3570. bg1["Left Arm"].Transparency = 1
  3571. bg1["Left Leg"].Transparency = 1
  3572. bg1["Right Leg"].Transparency = 1
  3573. bg1["Right Arm"].Transparency = 1
  3574. bg1["Torso"].Transparency = 1
  3575. bg1.Head.face.Transparency = 1
  3576.  
  3577. bg2["Head"].Transparency = 1
  3578. bg2["Left Arm"].Transparency = 1
  3579. bg2["Left Leg"].Transparency = 1
  3580. bg2["Right Leg"].Transparency = 1
  3581. bg2["Right Arm"].Transparency = 1
  3582. bg2["Torso"].Transparency = 1
  3583. bg2.Head.face.Transparency = 1
  3584.  
  3585. brick22 = Instance.new("Part")
  3586. brick22.CanCollide = false
  3587. brick22.Anchored = true
  3588. brick22.CFrame = bg1.Torso.CFrame
  3589. brick22.Transparency = 1
  3590. brick22.Parent = game.Workspace
  3591. brick222 = Instance.new("Part")
  3592. brick222.CanCollide = false
  3593. brick222.Anchored = true
  3594. brick222.CFrame = bg2.Torso.CFrame
  3595. brick222.Transparency = 1
  3596. brick222.Parent = game.Workspace
  3597. local sou2 = Instance.new("Sound")
  3598. sou2.Pitch = 1
  3599. sou2.Volume = 1
  3600. sou2.SoundId = "rbxassetid://722960601"
  3601. sou2.Parent = bg1.Torso
  3602. sou2:Play()
  3603. local pe2 = Instance.new("ParticleEmitter")
  3604. pe2.Acceleration = Vector3.new(0, 8, 0)
  3605. pe2.Lifetime = NumberRange.new(1, 1.5)
  3606. pe2.Rate = 20000
  3607. pe2.RotSpeed = NumberRange.new(-30, 30)
  3608. pe2.Rotation = NumberRange.new(0, 360)
  3609. pe2.Size = NumberSequence.new({
  3610. NumberSequenceKeypoint.new(0, 4.38, 0),
  3611. NumberSequenceKeypoint.new(0.672, 4.14, 0),
  3612. NumberSequenceKeypoint.new(1, 1.48, 0)
  3613. })
  3614. pe2.Texture = "rbxassetid://244221440"
  3615. pe2.Transparency = NumberSequence.new({
  3616. NumberSequenceKeypoint.new(0, 0, 0),
  3617. NumberSequenceKeypoint.new(0.529, 0.3, 0),
  3618. NumberSequenceKeypoint.new(1, 1, 1)
  3619. })
  3620. pe2.ZOffset = 5
  3621. pe2.VelocitySpread = 360
  3622. pe2.Parent = brick22
  3623. pe2.Enabled = true
  3624. clpe2 = pe2:Clone()
  3625. clpe2.Parent = brick222
  3626. wait(0.25)
  3627. pe2.Enabled = false
  3628. clpe2.Enabled = false
  3629. nvm4.Value = 1
  3630. bg1.Humanoid.HipHeight = 10000
  3631. bg2.Humanoid.HipHeight = 10000
  3632. end
  3633.  
  3634. if say == "hois" then
  3635. bg1.Humanoid.HipHeight = 0
  3636. bg2.Humanoid.HipHeight = 0
  3637. bg1.Torso.CFrame = bgpoint1.CFrame
  3638. bg2.Torso.CFrame = bgpoint2.CFrame
  3639.  
  3640. bg1["Head"].Transparency = 0
  3641. bg1["Left Arm"].Transparency = 0
  3642. bg1["Left Leg"].Transparency = 0
  3643. bg1["Right Leg"].Transparency = 0
  3644. bg1["Right Arm"].Transparency = 0
  3645. bg1["Torso"].Transparency = 0
  3646. bg1.Head.face.Transparency = 0
  3647.  
  3648. bg2["Head"].Transparency = 0
  3649. bg2["Left Arm"].Transparency = 0
  3650. bg2["Left Leg"].Transparency = 0
  3651. bg2["Right Leg"].Transparency = 0
  3652. bg2["Right Arm"].Transparency = 0
  3653. bg2["Torso"].Transparency = 0
  3654. bg2.Head.face.Transparency = 0
  3655.  
  3656. brick223 = Instance.new("Part")
  3657. brick223.CanCollide = false
  3658. brick223.Anchored = true
  3659. brick223.CFrame = bg1.Torso.CFrame
  3660. brick223.Transparency = 1
  3661. brick223.Parent = game.Workspace
  3662. brick2223 = Instance.new("Part")
  3663. brick2223.CanCollide = false
  3664. brick2223.Anchored = true
  3665. brick2223.CFrame = bg2.Torso.CFrame
  3666. brick2223.Transparency = 1
  3667. brick2223.Parent = game.Workspace
  3668. local sou23 = Instance.new("Sound")
  3669. sou23.Pitch = 1
  3670. sou23.Volume = 1
  3671. sou23.SoundId = "rbxassetid://722960601"
  3672. sou23.Parent = bg1.Torso
  3673. sou23:Play()
  3674. local pe2 = Instance.new("ParticleEmitter")
  3675. pe2.Acceleration = Vector3.new(0, 8, 0)
  3676. pe2.Lifetime = NumberRange.new(1, 1.5)
  3677. pe2.Rate = 20000
  3678. pe2.RotSpeed = NumberRange.new(-30, 30)
  3679. pe2.Rotation = NumberRange.new(0, 360)
  3680. pe2.Size = NumberSequence.new({
  3681. NumberSequenceKeypoint.new(0, 4.38, 0),
  3682. NumberSequenceKeypoint.new(0.672, 4.14, 0),
  3683. NumberSequenceKeypoint.new(1, 1.48, 0)
  3684. })
  3685. pe2.Texture = "rbxassetid://244221440"
  3686. pe2.Transparency = NumberSequence.new({
  3687. NumberSequenceKeypoint.new(0, 0, 0),
  3688. NumberSequenceKeypoint.new(0.529, 0.3, 0),
  3689. NumberSequenceKeypoint.new(1, 1, 1)
  3690. })
  3691. pe2.ZOffset = 5
  3692. pe2.VelocitySpread = 360
  3693. pe2.Parent = brick223
  3694. pe2.Enabled = true
  3695. clpe2 = pe2:Clone()
  3696. clpe2.Parent = brick2223
  3697. wait(0.25)
  3698. pe2.Enabled = false
  3699. clpe2.Enabled = false
  3700. nvm4.Value = 0
  3701. end
  3702.  
  3703. if say == "Package 8" then
  3704. bg1.Head.face.Texture = "http://www.roblox.com/asset/?id=996521543"
  3705. bg2.Head.face.Texture = "http://www.roblox.com/asset/?id=996521543"
  3706.  
  3707. a = bg1.Head:getChildren()
  3708. for i = 1, #a do
  3709. if a[i].className == "Part" then
  3710. a[i]:Destroy()
  3711. end
  3712. end
  3713.  
  3714. b = bg2.Head:getChildren()
  3715. for i = 1, #b do
  3716. if b[i].className == "Part" then
  3717. b[i]:Destroy()
  3718. end
  3719. end
  3720.  
  3721. for _,c in pairs(bg2:GetChildren()) do
  3722. if c:IsA('Shirt') then
  3723. c:Destroy()
  3724. shirt = Instance.new("Shirt", bg2)
  3725. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=11380099"
  3726. end
  3727. end
  3728.  
  3729. for _,c in pairs(bg1:GetChildren()) do
  3730. if c:IsA('Pants') then
  3731. c:Destroy()
  3732. pants = Instance.new("Pants", bg1)
  3733. pants.PantsTemplate = "http://www.roblox.com/asset/?id=784173314"
  3734. end
  3735. end
  3736.  
  3737. for _,c in pairs(bg2:GetChildren()) do
  3738. if c:IsA('Pants') then
  3739. c:Destroy()
  3740. pants = Instance.new("Pants", bg2)
  3741. pants.PantsTemplate = "http://www.roblox.com/asset/?id=609932389"
  3742. end
  3743. end
  3744.  
  3745. for _,c in pairs(bg1:GetChildren()) do
  3746. if c:IsA('Shirt') then
  3747. c:Destroy()
  3748. shirt = Instance.new("Shirt", bg1)
  3749. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=457259912"
  3750. end
  3751. end
  3752.  
  3753. hair = Instance.new("Part", bg1.Head)
  3754. hairmesh = Instance.new("SpecialMesh", hair)
  3755. hairmesh.MeshId = "http://www.roblox.com/asset/?id=164382853"
  3756. hairmesh.TextureId = "rbxassetid://255755050"
  3757. hair.BrickColor = BrickColor.new('Pearl')
  3758. hairmesh.Scale = Vector3.new(1.1, 1.1, 1.1)
  3759. hair.Transparency = 0
  3760. hair.CanCollide = false
  3761. hair.Name = "plrhair"
  3762. hair.Anchored = false
  3763. clhair = hair:Clone()
  3764. clhair.Parent = bg2.Head
  3765. Weld = Instance.new("Weld", bg1)
  3766. Weld.Part0 = bg1.Head
  3767. Weld.Part1 = hair
  3768. Weld.C1 = CFrame.new(0, -0.10, 0)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  3769. Weld = Instance.new("Weld", bg2)
  3770. Weld.Part0 = bg2.Head
  3771. Weld.Part1 = clhair
  3772. Weld.C1 = CFrame.new(0, -0.10, 0)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  3773.  
  3774. brick = Instance.new("Part")
  3775. brick.CanCollide = false
  3776. brick.Anchored = true
  3777. brick.CFrame = bg1.Torso.CFrame
  3778. brick.Transparency = 1
  3779. brick.Parent = game.Workspace
  3780. brick2 = Instance.new("Part")
  3781. brick2.CanCollide = false
  3782. brick2.Anchored = true
  3783. brick2.CFrame = bg2.Torso.CFrame
  3784. brick2.Transparency = 1
  3785. brick2.Parent = game.Workspace
  3786. local sou = Instance.new("Sound")
  3787. sou.Pitch = 1
  3788. sou.Volume = 1
  3789. sou.SoundId = "rbxassetid://722960601"
  3790. sou.Parent = bg1.Torso
  3791. sou:Play()
  3792. local pe = Instance.new("ParticleEmitter")
  3793. pe.Acceleration = Vector3.new(0, 8, 0)
  3794. pe.Lifetime = NumberRange.new(1, 1.5)
  3795. pe.Rate = 20000
  3796. pe.RotSpeed = NumberRange.new(-30, 30)
  3797. pe.Rotation = NumberRange.new(0, 360)
  3798. pe.Size = NumberSequence.new({
  3799. NumberSequenceKeypoint.new(0, 4.38, 0),
  3800. NumberSequenceKeypoint.new(0.672, 4.14, 0),
  3801. NumberSequenceKeypoint.new(1, 1.48, 0)
  3802. })
  3803. pe.Texture = "rbxassetid://244221440"
  3804. pe.Transparency = NumberSequence.new({
  3805. NumberSequenceKeypoint.new(0, 0, 0),
  3806. NumberSequenceKeypoint.new(0.529, 0.3, 0),
  3807. NumberSequenceKeypoint.new(1, 1, 1)
  3808. })
  3809. pe.ZOffset = 5
  3810. pe.VelocitySpread = 360
  3811. pe.Parent = brick
  3812. pe.Enabled = true
  3813. clpe = pe:Clone()
  3814. clpe.Parent = brick2
  3815. wait(0.25)
  3816. pe.Enabled = false
  3817. clpe.Enabled = false
  3818. while wait() do
  3819. if not sou.IsPlaying then
  3820. sou:Destroy()
  3821. end
  3822. end
  3823. end
  3824.  
  3825.  
  3826. if say == "Package 4" then
  3827.  
  3828. bg1.Head.face.Texture = "http://www.roblox.com/asset/?id=996521543"
  3829. bg2.Head.face.Texture = "http://www.roblox.com/asset/?id=996521543"
  3830.  
  3831. a = bg1.Head:getChildren()
  3832. for i = 1, #a do
  3833. if a[i].className == "Part" then
  3834. a[i]:Destroy()
  3835. end
  3836. end
  3837.  
  3838. b = bg2.Head:getChildren()
  3839. for i = 1, #b do
  3840. if b[i].className == "Part" then
  3841. b[i]:Destroy()
  3842. end
  3843. end
  3844.  
  3845. for _,c in pairs(bg2:GetChildren()) do
  3846. if c:IsA('Shirt') then
  3847. c:Destroy()
  3848. shirt = Instance.new("Shirt", bg2)
  3849. shirt.ShirtTemplate = "rbxassetid://457259912"
  3850. end
  3851. end
  3852.  
  3853. for _,c in pairs(bg1:GetChildren()) do
  3854. if c:IsA('Pants') then
  3855. c:Destroy()
  3856. pants = Instance.new("Pants", bg1)
  3857. pants.PantsTemplate = "rbxassetid://609932389"
  3858. end
  3859. end
  3860.  
  3861. for _,c in pairs(bg2:GetChildren()) do
  3862. if c:IsA('Pants') then
  3863. c:Destroy()
  3864. pants = Instance.new("Pants", bg2)
  3865. pants.PantsTemplate = "rbxassetid://609932389"
  3866. end
  3867. end
  3868.  
  3869. for _,c in pairs(bg1:GetChildren()) do
  3870. if c:IsA('Shirt') then
  3871. c:Destroy()
  3872. shirt = Instance.new("Shirt", bg1)
  3873. shirt.ShirtTemplate = "rbxassetid://457259912"
  3874. end
  3875. end
  3876.  
  3877. hair = Instance.new("Part", bg1.Head)
  3878. hairmesh = Instance.new("SpecialMesh", hair)
  3879. hairmesh.MeshId = "http://www.roblox.com/asset/?id=13070796"
  3880. hairmesh.TextureId = "http://www.roblox.com/asset/?id=14765363"
  3881. hairmesh.Scale = Vector3.new(1.1, 1.1, 1.1)
  3882. hair.Transparency = 0
  3883. hair.CanCollide = false
  3884. hair.Name = "plrhair"
  3885. hair.Anchored = false
  3886. clhair = hair:Clone()
  3887. clhair.Parent = bg2.Head
  3888. Weld = Instance.new("Weld", bg1)
  3889. Weld.Part0 = bg1.Head
  3890. Weld.Part1 = hair
  3891. Weld.C1 = CFrame.new(0, -0.10, 0)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  3892. Weld = Instance.new("Weld", bg2)
  3893. Weld.Part0 = bg2.Head
  3894. Weld.Part1 = clhair
  3895. Weld.C1 = CFrame.new(0, -0.10, 0)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  3896.  
  3897. brick = Instance.new("Part")
  3898. brick.CanCollide = false
  3899. brick.Anchored = true
  3900. brick.CFrame = bg1.Torso.CFrame
  3901. brick.Transparency = 1
  3902. brick.Parent = game.Workspace
  3903. brick2 = Instance.new("Part")
  3904. brick2.CanCollide = false
  3905. brick2.Anchored = true
  3906. brick2.CFrame = bg2.Torso.CFrame
  3907. brick2.Transparency = 1
  3908. brick2.Parent = game.Workspace
  3909. local sou = Instance.new("Sound")
  3910. sou.Pitch = 1
  3911. sou.Volume = 1
  3912. sou.SoundId = "rbxassetid://722960601"
  3913. sou.Parent = bg1.Torso
  3914. sou:Play()
  3915. local pe = Instance.new("ParticleEmitter")
  3916. pe.Acceleration = Vector3.new(0, 8, 0)
  3917. pe.Lifetime = NumberRange.new(1, 1.5)
  3918. pe.Rate = 20000
  3919. pe.RotSpeed = NumberRange.new(-30, 30)
  3920. pe.Rotation = NumberRange.new(0, 360)
  3921. pe.Size = NumberSequence.new({
  3922. NumberSequenceKeypoint.new(0, 4.38, 0),
  3923. NumberSequenceKeypoint.new(0.672, 4.14, 0),
  3924. NumberSequenceKeypoint.new(1, 1.48, 0)
  3925. })
  3926. pe.Texture = "rbxassetid://244221440"
  3927. pe.Transparency = NumberSequence.new({
  3928. NumberSequenceKeypoint.new(0, 0, 0),
  3929. NumberSequenceKeypoint.new(0.529, 0.3, 0),
  3930. NumberSequenceKeypoint.new(1, 1, 1)
  3931. })
  3932. pe.ZOffset = 5
  3933. pe.VelocitySpread = 360
  3934. pe.Parent = brick
  3935. pe.Enabled = true
  3936. clpe = pe:Clone()
  3937. clpe.Parent = brick2
  3938. wait(0.25)
  3939. pe.Enabled = false
  3940. clpe.Enabled = false
  3941. while wait() do
  3942. if not sou.IsPlaying then
  3943. sou:Destroy()
  3944. end
  3945. end
  3946. end
  3947.  
  3948. if say == "Package 3" then
  3949. bg1.Head.face.Texture = "http://www.roblox.com/asset/?id=20612916"
  3950. bg2.Head.face.Texture = "http://www.roblox.com/asset/?id=20612916"
  3951.  
  3952.  
  3953. a = bg1.Head:getChildren()
  3954. for i = 1, #a do
  3955. if a[i].className == "Part" then
  3956. a[i]:Destroy()
  3957. end
  3958. end
  3959.  
  3960. b = bg2.Head:getChildren()
  3961. for i = 1, #b do
  3962. if b[i].className == "Part" then
  3963. b[i]:Destroy()
  3964. end
  3965. end
  3966.  
  3967. for _,c in pairs(bg2:GetChildren()) do
  3968. if c:IsA('Shirt') then
  3969. c:Destroy()
  3970. shirt = Instance.new("Shirt", bg2)
  3971. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=4572599121"
  3972. end
  3973. end
  3974.  
  3975. for _,c in pairs(bg1:GetChildren()) do
  3976. if c:IsA('Pants') then
  3977. c:Destroy()
  3978. pants = Instance.new("Pants", bg1)
  3979. pants.PantsTemplate = "http://www.roblox.com/asset/?id=609932389"
  3980. end
  3981. end
  3982.  
  3983. for _,c in pairs(bg2:GetChildren()) do
  3984. if c:IsA('Pants') then
  3985. c:Destroy()
  3986. pants = Instance.new("Pants", bg2)
  3987. pants.PantsTemplate = "http://www.roblox.com/asset/?id=609932389"
  3988. end
  3989. end
  3990.  
  3991. for _,c in pairs(bg1:GetChildren()) do
  3992. if c:IsA('Shirt') then
  3993. c:Destroy()
  3994. shirt = Instance.new("Shirt", bg1)
  3995. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=457259912"
  3996.  
  3997. hair = Instance.new("Part", bg1.Head)
  3998. hairmesh = Instance.new("SpecialMesh", hair)
  3999. hairmesh.MeshId = "http://www.roblox.com/asset/?id=13070796"
  4000. hairmesh.TextureId = "http://www.roblox.com/asset/?id=14765363"
  4001. hairmesh.Scale = Vector3.new(1.1, 1.1, 1.1)
  4002. hair.Transparency = 0
  4003. hair.CanCollide = false
  4004. hair.Name = "plrhair"
  4005. hair.Anchored = false
  4006. clhair = hair:Clone()
  4007. clhair.Parent = bg2.Head
  4008. Weld = Instance.new("Weld", bg1)
  4009. Weld.Part0 = bg1.Head
  4010. Weld.Part1 = hair
  4011. Weld.C1 = CFrame.new(0, -0.50, 0)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4012. Weld = Instance.new("Weld", bg2)
  4013. Weld.Part0 = bg2.Head
  4014. Weld.Part1 = clhair
  4015. Weld.C1 = CFrame.new(0, -0.50, 0)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4016.  
  4017.  
  4018. hair3 = Instance.new("Part", bg1.Head)
  4019. hairmesh3 = Instance.new("SpecialMesh", hair3)
  4020. hairmesh3.MeshId = "http://www.roblox.com/asset/?id=13070796"
  4021. hairmesh3.TextureId = "http://www.roblox.com/asset/?id=14765363"
  4022. hairmesh3.Scale = Vector3.new(1, 1, 1)
  4023. hair3.Transparency = 0
  4024. hair3.CanCollide = false
  4025. hair3.Name = "plrhair"
  4026. hair3.Anchored = false
  4027. clhair3 = hair3:Clone()
  4028. clhair3.Parent = bg2.Head
  4029. Weld = Instance.new("Weld", bg1)
  4030. Weld.Part0 = bg1.Head
  4031. Weld.Part1 = hair3
  4032. Weld.C1 = CFrame.new(0, -0.10, 0.3)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4033. Weld = Instance.new("Weld", bg2)
  4034. Weld.Part0 = bg2.Head
  4035. Weld.Part1 = clhair3
  4036. Weld.C1 = CFrame.new(0, -0.10, 0.3)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4037.  
  4038. brick = Instance.new("Part")
  4039. brick.CanCollide = false
  4040. brick.Anchored = true
  4041. brick.CFrame = bg1.Torso.CFrame
  4042. brick.Transparency = 1
  4043. brick.Parent = game.Workspace
  4044. brick2 = Instance.new("Part")
  4045. brick2.CanCollide = false
  4046. brick2.Anchored = true
  4047. brick2.CFrame = bg2.Torso.CFrame
  4048. brick2.Transparency = 1
  4049. brick2.Parent = game.Workspace
  4050. local sou = Instance.new("Sound")
  4051. sou.Pitch = 1
  4052. sou.Volume = 1
  4053. sou.SoundId = "rbxassetid://722960601"
  4054. sou.Parent = bg1.Torso
  4055. sou:Play()
  4056. local pe = Instance.new("ParticleEmitter")
  4057. pe.Acceleration = Vector3.new(0, 8, 0)
  4058. pe.Lifetime = NumberRange.new(1, 1.5)
  4059. pe.Rate = 20000
  4060. pe.RotSpeed = NumberRange.new(-30, 30)
  4061. pe.Rotation = NumberRange.new(0, 360)
  4062. pe.Size = NumberSequence.new({
  4063. NumberSequenceKeypoint.new(0, 4.38, 0),
  4064. NumberSequenceKeypoint.new(0.672, 4.14, 0),
  4065. NumberSequenceKeypoint.new(1, 1.48, 0)
  4066. })
  4067. pe.Texture = "rbxassetid://244221440"
  4068. pe.Transparency = NumberSequence.new({
  4069. NumberSequenceKeypoint.new(0, 0, 0),
  4070. NumberSequenceKeypoint.new(0.529, 0.3, 0),
  4071. NumberSequenceKeypoint.new(1, 1, 1)
  4072. })
  4073. pe.ZOffset = 5
  4074. pe.VelocitySpread = 360
  4075. pe.Parent = brick
  4076. pe.Enabled = true
  4077. clpe = pe:Clone()
  4078. clpe.Parent = brick2
  4079. wait(0.25)
  4080. pe.Enabled = false
  4081. clpe.Enabled = false
  4082. while wait() do
  4083. if not sou.IsPlaying then
  4084. sou:Destroy()
  4085. end
  4086. end
  4087. end
  4088. end
  4089. end
  4090.  
  4091. if say == "Normal" then
  4092. bg1.Head.face.Texture = "http://www.roblox.com/asset/?id=20612916"
  4093. bg2.Head.face.Texture = "http://www.roblox.com/asset/?id=20612916"
  4094.  
  4095.  
  4096. a = bg1.Head:getChildren()
  4097. for i = 1, #a do
  4098. if a[i].className == "Part" then
  4099. a[i]:Destroy()
  4100. end
  4101. end
  4102.  
  4103. b = bg2.Head:getChildren()
  4104. for i = 1, #b do
  4105. if b[i].className == "Part" then
  4106. b[i]:Destroy()
  4107. end
  4108. end
  4109.  
  4110. for _,c in pairs(bg2:GetChildren()) do
  4111. if c:IsA('Shirt') then
  4112. c:Destroy()
  4113. shirt = Instance.new("Shirt", bg2)
  4114. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=0"
  4115. end
  4116. end
  4117.  
  4118. for _,c in pairs(bg1:GetChildren()) do
  4119. if c:IsA('Pants') then
  4120. c:Destroy()
  4121. pants = Instance.new("Pants", bg1)
  4122. pants.PantsTemplate = "http://www.roblox.com/asset/?id=609932389"
  4123. end
  4124. end
  4125.  
  4126. for _,c in pairs(bg2:GetChildren()) do
  4127. if c:IsA('Pants') then
  4128. c:Destroy()
  4129. pants = Instance.new("Pants", bg2)
  4130. pants.PantsTemplate = "http://www.roblox.com/asset/?id=609932389"
  4131. end
  4132. end
  4133.  
  4134. for _,c in pairs(bg1:GetChildren()) do
  4135. if c:IsA('Shirt') then
  4136. c:Destroy()
  4137. shirt = Instance.new("Shirt", bg1)
  4138. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=457259912"
  4139. end
  4140. end
  4141.  
  4142.  
  4143. brick = Instance.new("Part")
  4144. brick.CanCollide = false
  4145. brick.Anchored = true
  4146. brick.CFrame = bg1.Torso.CFrame
  4147. brick.Transparency = 1
  4148. brick.Parent = game.Workspace
  4149. brick2 = Instance.new("Part")
  4150. brick2.CanCollide = false
  4151. brick2.Anchored = true
  4152. brick2.CFrame = bg2.Torso.CFrame
  4153. brick2.Transparency = 1
  4154. brick2.Parent = game.Workspace
  4155. local sou = Instance.new("Sound")
  4156. sou.Pitch = 1
  4157. sou.Volume = 1
  4158. sou.SoundId = "rbxassetid://722960601"
  4159. sou.Parent = bg1.Torso
  4160. sou:Play()
  4161. local pe = Instance.new("ParticleEmitter")
  4162. pe.Acceleration = Vector3.new(0, 8, 0)
  4163. pe.Lifetime = NumberRange.new(1, 1.5)
  4164. pe.Rate = 20000
  4165. pe.RotSpeed = NumberRange.new(-30, 30)
  4166. pe.Rotation = NumberRange.new(0, 360)
  4167. pe.Size = NumberSequence.new({
  4168. NumberSequenceKeypoint.new(0, 4.38, 0),
  4169. NumberSequenceKeypoint.new(0.672, 4.14, 0),
  4170. NumberSequenceKeypoint.new(1, 1.48, 0)
  4171. })
  4172. pe.Texture = "rbxassetid://244221440"
  4173. pe.Transparency = NumberSequence.new({
  4174. NumberSequenceKeypoint.new(0, 0, 0),
  4175. NumberSequenceKeypoint.new(0.529, 0.3, 0),
  4176. NumberSequenceKeypoint.new(1, 1, 1)
  4177. })
  4178. pe.ZOffset = 5
  4179. pe.VelocitySpread = 360
  4180. pe.Parent = brick
  4181. pe.Enabled = true
  4182. clpe = pe:Clone()
  4183. clpe.Parent = brick2
  4184. wait(0.25)
  4185. pe.Enabled = false
  4186. clpe.Enabled = false
  4187. while wait() do
  4188. if not sou.IsPlaying then
  4189. sou:Destroy()
  4190. end
  4191. end
  4192. end
  4193.  
  4194. if say == "Package 7" then
  4195. bg1.Head.face.Texture = "http://www.roblox.com/asset/?id=20612916"
  4196. bg2.Head.face.Texture = "http://www.roblox.com/asset/?id=20612916"
  4197.  
  4198. a = bg1.Head:getChildren()
  4199. for i = 1, #a do
  4200. if a[i].className == "Part" then
  4201. a[i]:Destroy()
  4202. end
  4203. end
  4204.  
  4205. b = bg2.Head:getChildren()
  4206. for i = 1, #b do
  4207. if b[i].className == "Part" then
  4208. b[i]:Destroy()
  4209. end
  4210. end
  4211.  
  4212. for _,c in pairs(bg2:GetChildren()) do
  4213. if c:IsA('Shirt') then
  4214. c:Destroy()
  4215. shirt = Instance.new("Shirt", bg2)
  4216. shirt.ShirtTemplate = "rbxassetid://457259912"
  4217. end
  4218. end
  4219.  
  4220. for _,c in pairs(bg1:GetChildren()) do
  4221. if c:IsA('Pants') then
  4222. c:Destroy()
  4223. pants = Instance.new("Pants", bg1)
  4224. pants.PantsTemplate = "rbxassetid://609932389"
  4225. end
  4226. end
  4227.  
  4228. for _,c in pairs(bg2:GetChildren()) do
  4229. if c:IsA('Pants') then
  4230. c:Destroy()
  4231. pants = Instance.new("Pants", bg2)
  4232. pants.PantsTemplate = "rbxassetid://609932389"
  4233. end
  4234. end
  4235.  
  4236. for _,c in pairs(bg1:GetChildren()) do
  4237. if c:IsA('Shirt') then
  4238. c:Destroy()
  4239. shirt = Instance.new("Shirt", bg1)
  4240. shirt.ShirtTemplate = "rbxassetid://457259912"
  4241. end
  4242. end
  4243.  
  4244. hair = Instance.new("Part", bg1.Head)
  4245. hairmesh = Instance.new("SpecialMesh", hair)
  4246. hairmesh.MeshId = "http://www.roblox.com/asset/?id=13070796"
  4247. hairmesh.TextureId = "http://www.roblox.com/asset/?id=14765363"
  4248. hairmesh.Scale = Vector3.new(1, 0.95, 0.85)
  4249. hair.Transparency = 0
  4250. hair.CanCollide = false
  4251. hair.Name = "plrhair"
  4252. hair.Anchored = false
  4253. clhair = hair:Clone()
  4254. clhair.Parent = bg2.Head
  4255. Weld = Instance.new("Weld", bg1)
  4256. Weld.Part0 = bg1.Head
  4257. Weld.Part1 = hair
  4258. Weld.C1 = CFrame.new(0, -0.50, 0)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4259. Weld = Instance.new("Weld", bg2)
  4260. Weld.Part0 = bg2.Head
  4261. Weld.Part1 = clhair
  4262. Weld.C1 = CFrame.new(0, -0.50, 0)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4263.  
  4264. brick = Instance.new("Part")
  4265. brick.CanCollide = false
  4266. brick.Anchored = true
  4267. brick.CFrame = bg1.Torso.CFrame
  4268. brick.Transparency = 1
  4269. brick.Parent = game.Workspace
  4270. brick2 = Instance.new("Part")
  4271. brick2.CanCollide = false
  4272. brick2.Anchored = true
  4273. brick2.CFrame = bg2.Torso.CFrame
  4274. brick2.Transparency = 1
  4275. brick2.Parent = game.Workspace
  4276. local sou = Instance.new("Sound")
  4277. sou.Pitch = 1
  4278. sou.Volume = 1
  4279. sou.SoundId = "rbxassetid://722960601"
  4280. sou.Parent = bg1.Torso
  4281. sou:Play()
  4282. local pe = Instance.new("ParticleEmitter")
  4283. pe.Acceleration = Vector3.new(0, 8, 0)
  4284. pe.Lifetime = NumberRange.new(1, 1.5)
  4285. pe.Rate = 20000
  4286. pe.RotSpeed = NumberRange.new(-30, 30)
  4287. pe.Rotation = NumberRange.new(0, 360)
  4288. pe.Size = NumberSequence.new({
  4289. NumberSequenceKeypoint.new(0, 4.38, 0),
  4290. NumberSequenceKeypoint.new(0.672, 4.14, 0),
  4291. NumberSequenceKeypoint.new(1, 1.48, 0)
  4292. })
  4293. pe.Texture = "rbxassetid://244221440"
  4294. pe.Transparency = NumberSequence.new({
  4295. NumberSequenceKeypoint.new(0, 0, 0),
  4296. NumberSequenceKeypoint.new(0.529, 0.3, 0),
  4297. NumberSequenceKeypoint.new(1, 1, 1)
  4298. })
  4299. pe.ZOffset = 5
  4300. pe.VelocitySpread = 360
  4301. pe.Parent = brick
  4302. pe.Enabled = true
  4303. clpe = pe:Clone()
  4304. clpe.Parent = brick2
  4305. wait(0.25)
  4306. pe.Enabled = false
  4307. clpe.Enabled = false
  4308. while wait() do
  4309. if not sou.IsPlaying then
  4310. sou:Destroy()
  4311. end
  4312. end
  4313. end
  4314.  
  4315. if say == "Package 6" then
  4316. bg1.Head.face.Texture = "http://www.roblox.com/asset/?id=20612916"
  4317. bg2.Head.face.Texture = "http://www.roblox.com/asset/?id=20612916"
  4318.  
  4319. a = bg1.Head:getChildren()
  4320. for i = 1, #a do
  4321. if a[i].className == "Part" then
  4322. a[i]:Destroy()
  4323. end
  4324. end
  4325.  
  4326. b = bg2.Head:getChildren()
  4327. for i = 1, #b do
  4328. if b[i].className == "Part" then
  4329. b[i]:Destroy()
  4330. end
  4331. end
  4332.  
  4333. for _,c in pairs(bg2:GetChildren()) do
  4334. if c:IsA('Shirt') then
  4335. c:Destroy()
  4336. shirt = Instance.new("Shirt", bg2)
  4337. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=457259912"
  4338. end
  4339. end
  4340.  
  4341. for _,c in pairs(bg1:GetChildren()) do
  4342. if c:IsA('Pants') then
  4343. c:Destroy()
  4344. pants = Instance.new("Pants", bg1)
  4345. pants.PantsTemplate = "http://www.roblox.com/asset/?id=609932389"
  4346. end
  4347. end
  4348.  
  4349. for _,c in pairs(bg2:GetChildren()) do
  4350. if c:IsA('Pants') then
  4351. c:Destroy()
  4352. pants = Instance.new("Pants", bg2)
  4353. pants.PantsTemplate = "http://www.roblox.com/asset/?id=609932389"
  4354. end
  4355. end
  4356.  
  4357. for _,c in pairs(bg1:GetChildren()) do
  4358. if c:IsA('Shirt') then
  4359. c:Destroy()
  4360. shirt = Instance.new("Shirt", bg1)
  4361. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=457259912"
  4362. end
  4363. end
  4364.  
  4365.  
  4366. hair = Instance.new("Part", bg1.Head)
  4367. hairmesh = Instance.new("SpecialMesh", hair)
  4368. hairmesh.MeshId = "http://www.roblox.com/asset/?id=164382853"
  4369. hairmesh.TextureId = "http://www.roblox.com/asset/?id=255755050"
  4370. hairmesh.Scale = Vector3.new(1.1, 1.1, 1.1)
  4371. hair.Transparency = 0
  4372. hair.CanCollide = false
  4373. hair.Name = "plrhair"
  4374. hair.Anchored = false
  4375. clhair = hair:Clone()
  4376. clhair.Parent = bg2.Head
  4377. Weld = Instance.new("Weld", bg1)
  4378. Weld.Part0 = bg1.Head
  4379. Weld.Part1 = hair
  4380. Weld.C1 = CFrame.new(0, -0.10, 0)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4381. Weld = Instance.new("Weld", bg2)
  4382. Weld.Part0 = bg2.Head
  4383. Weld.Part1 = clhair
  4384. Weld.C1 = CFrame.new(0, -0.10, 0)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4385.  
  4386.  
  4387. hair = Instance.new("Part", bg1.Head)
  4388. hairmesh = Instance.new("SpecialMesh", hair)
  4389. hairmesh.MeshId = "http://www.roblox.com/asset/?id=164382853"
  4390. hairmesh.TextureId = "http://www.roblox.com/asset/?id=255755050"
  4391. hairmesh.Scale = Vector3.new(1.3, 1.35, 1.3)
  4392. hair.Transparency = 0
  4393. hair.CanCollide = false
  4394. hair.Name = "plrhair"
  4395. hair.Anchored = false
  4396. clhair = hair:Clone()
  4397. clhair.Parent = bg2.Head
  4398. Weld = Instance.new("Weld", bg1)
  4399. Weld.Part0 = bg1.Head
  4400. Weld.Part1 = hair
  4401. Weld.C1 = CFrame.new(0, -0.60, 0)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4402. Weld = Instance.new("Weld", bg2)
  4403. Weld.Part0 = bg2.Head
  4404. Weld.Part1 = clhair
  4405. Weld.C1 = CFrame.new(0, -0.60, 0)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4406.  
  4407. brick = Instance.new("Part")
  4408. brick.CanCollide = false
  4409. brick.Anchored = true
  4410. brick.CFrame = bg1.Torso.CFrame
  4411. brick.Transparency = 1
  4412. brick.Parent = game.Workspace
  4413. brick2 = Instance.new("Part")
  4414. brick2.CanCollide = false
  4415. brick2.Anchored = true
  4416. brick2.CFrame = bg2.Torso.CFrame
  4417. brick2.Transparency = 1
  4418. brick2.Parent = game.Workspace
  4419. local sou = Instance.new("Sound")
  4420. sou.Pitch = 1
  4421. sou.Volume = 1
  4422. sou.SoundId = "rbxassetid://722960601"
  4423. sou.Parent = bg1.Torso
  4424. sou:Play()
  4425. local pe = Instance.new("ParticleEmitter")
  4426. pe.Acceleration = Vector3.new(0, 8, 0)
  4427. pe.Lifetime = NumberRange.new(1, 1.5)
  4428. pe.Rate = 20000
  4429. pe.RotSpeed = NumberRange.new(-30, 30)
  4430. pe.Rotation = NumberRange.new(0, 360)
  4431. pe.Size = NumberSequence.new({
  4432. NumberSequenceKeypoint.new(0, 4.38, 0),
  4433. NumberSequenceKeypoint.new(0.672, 4.14, 0),
  4434. NumberSequenceKeypoint.new(1, 1.48, 0)
  4435. })
  4436. pe.Texture = "rbxassetid://244221440"
  4437. pe.Transparency = NumberSequence.new({
  4438. NumberSequenceKeypoint.new(0, 0, 0),
  4439. NumberSequenceKeypoint.new(0.529, 0.3, 0),
  4440. NumberSequenceKeypoint.new(1, 1, 1)
  4441. })
  4442. pe.ZOffset = 5
  4443. pe.VelocitySpread = 360
  4444. pe.Parent = brick
  4445. pe.Enabled = true
  4446. clpe = pe:Clone()
  4447. clpe.Parent = brick2
  4448. wait(0.25)
  4449. pe.Enabled = false
  4450. clpe.Enabled = false
  4451. while wait() do
  4452. if not sou.IsPlaying then
  4453. sou:Destroy()
  4454. end
  4455. end
  4456. end
  4457.  
  4458. if say == "Package 5" then
  4459. bg1.Head.face.Texture = "http://www.roblox.com/asset/?id=996521543"
  4460. bg2.Head.face.Texture = "http://www.roblox.com/asset/?id=996521543"
  4461.  
  4462. a = bg1.Head:getChildren()
  4463. for i = 1, #a do
  4464. if a[i].className == "Part" then
  4465. a[i]:Destroy()
  4466. end
  4467. end
  4468.  
  4469. b = bg2.Head:getChildren()
  4470. for i = 1, #b do
  4471. if b[i].className == "Part" then
  4472. b[i]:Destroy()
  4473. end
  4474. end
  4475.  
  4476. for _,c in pairs(bg2:GetChildren()) do
  4477. if c:IsA('Shirt') then
  4478. c:Destroy()
  4479. shirt = Instance.new("Shirt", bg2)
  4480. shirt.ShirtTemplate = "rbxassetid://457259912"
  4481. end
  4482. end
  4483.  
  4484. for _,c in pairs(bg1:GetChildren()) do
  4485. if c:IsA('Pants') then
  4486. c:Destroy()
  4487. pants = Instance.new("Pants", bg1)
  4488. pants.PantsTemplate = "rbxassetid://609932389"
  4489. end
  4490. end
  4491.  
  4492. for _,c in pairs(bg2:GetChildren()) do
  4493. if c:IsA('Pants') then
  4494. c:Destroy()
  4495. pants = Instance.new("Pants", bg2)
  4496. pants.PantsTemplate = "rbxassetid://609932389"
  4497. end
  4498. end
  4499.  
  4500. for _,c in pairs(bg1:GetChildren()) do
  4501. if c:IsA('Shirt') then
  4502. c:Destroy()
  4503. shirt = Instance.new("Shirt", bg1)
  4504. shirt.ShirtTemplate = "rbxassetid://457259912"
  4505. end
  4506. end
  4507.  
  4508. hair = Instance.new("Part", bg1.Head)
  4509. hairmesh = Instance.new("SpecialMesh", hair)
  4510. hairmesh.MeshId = "http://www.roblox.com/asset/?id=164382853"
  4511. hairmesh.TextureId = "http://www.roblox.com/asset/?id=255755050"
  4512. hairmesh.Scale = Vector3.new(1.1, 1.1, 1.1)
  4513. hair.Transparency = 0
  4514. hair.CanCollide = false
  4515. hair.Name = "plrhair"
  4516. hair.Anchored = false
  4517. clhair = hair:Clone()
  4518. clhair.Parent = bg2.Head
  4519. clhair.Mesh.TextureId = "http://www.roblox.com/asset/?id=164382853"
  4520. clhair.Mesh.MeshId = "http://www.roblox.com/asset/?id=255755050"
  4521. clhair.Mesh.Scale = Vector3.new(1.02,1.02,1.02)
  4522. Weld = Instance.new("Weld", bg1)
  4523. Weld.Part0 = bg1.Head
  4524. Weld.Part1 = hair
  4525. Weld.C1 = CFrame.new(0, -0.50, 0)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4526. Weld = Instance.new("Weld", bg2)
  4527. Weld.Part0 = bg2.Head
  4528. Weld.Part1 = clhair
  4529. Weld.C1 = CFrame.new(0, -0.14, 0)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4530.  
  4531. hair3 = Instance.new("Part", bg1.Head)
  4532. hairmesh3 = Instance.new("SpecialMesh", hair3)
  4533. hairmesh3.MeshId = "http://www.roblox.com/asset/?id=164382853"
  4534. hairmesh3.TextureId = "http://www.roblox.com/asset/?id=255755050"
  4535. hairmesh3.Scale = Vector3.new(1, 1, 1)
  4536. hair3.Transparency = 0
  4537. hair3.CanCollide = false
  4538. hair3.Name = "plrhair"
  4539. hair3.Anchored = false
  4540. clhair3 = hair3:Clone()
  4541. clhair3.Parent = bg2.Head
  4542. Weld = Instance.new("Weld", bg1)
  4543. Weld.Part0 = bg1.Head
  4544. Weld.Part1 = hair3
  4545. Weld.C1 = CFrame.new(0, -0.10, 0.3)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4546. Weld = Instance.new("Weld", bg2)
  4547. Weld.Part0 = bg2.Head
  4548. Weld.Part1 = clhair3
  4549. Weld.C1 = CFrame.new(0, -0.10, 0.3)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4550.  
  4551. brick = Instance.new("Part")
  4552. brick.CanCollide = false
  4553. brick.Anchored = true
  4554. brick.CFrame = bg1.Torso.CFrame
  4555. brick.Transparency = 1
  4556. brick.Parent = game.Workspace
  4557. brick2 = Instance.new("Part")
  4558. brick2.CanCollide = false
  4559. brick2.Anchored = true
  4560. brick2.CFrame = bg2.Torso.CFrame
  4561. brick2.Transparency = 1
  4562. brick2.Parent = game.Workspace
  4563. local sou = Instance.new("Sound")
  4564. sou.Pitch = 1
  4565. sou.Volume = 1
  4566. sou.SoundId = "rbxassetid://722960601"
  4567. sou.Parent = bg1.Torso
  4568. sou:Play()
  4569. local pe = Instance.new("ParticleEmitter")
  4570. pe.Acceleration = Vector3.new(0, 8, 0)
  4571. pe.Lifetime = NumberRange.new(1, 1.5)
  4572. pe.Rate = 20000
  4573. pe.RotSpeed = NumberRange.new(-30, 30)
  4574. pe.Rotation = NumberRange.new(0, 360)
  4575. pe.Size = NumberSequence.new({
  4576. NumberSequenceKeypoint.new(0, 4.38, 0),
  4577. NumberSequenceKeypoint.new(0.672, 4.14, 0),
  4578. NumberSequenceKeypoint.new(1, 1.48, 0)
  4579. })
  4580. pe.Texture = "rbxassetid://244221440"
  4581. pe.Transparency = NumberSequence.new({
  4582. NumberSequenceKeypoint.new(0, 0, 0),
  4583. NumberSequenceKeypoint.new(0.529, 0.3, 0),
  4584. NumberSequenceKeypoint.new(1, 1, 1)
  4585. })
  4586. pe.ZOffset = 5
  4587. pe.VelocitySpread = 360
  4588. pe.Parent = brick
  4589. pe.Enabled = true
  4590. clpe = pe:Clone()
  4591. clpe.Parent = brick2
  4592. wait(0.25)
  4593. pe.Enabled = false
  4594. clpe.Enabled = false
  4595. while wait() do
  4596. if not sou.IsPlaying then
  4597. sou:Destroy()
  4598. end
  4599. end
  4600. end
  4601.  
  4602.  
  4603. if say == "Package 2" then
  4604. bg1.Head.face.Texture = "http://www.roblox.com/asset/?id=996521543"
  4605. bg2.Head.face.Texture = "http://www.roblox.com/asset/?id=996521543"
  4606.  
  4607. a = bg1.Head:getChildren()
  4608. for i = 1, #a do
  4609. if a[i].className == "Part" then
  4610. a[i]:Destroy()
  4611. end
  4612. end
  4613.  
  4614. b = bg2.Head:getChildren()
  4615. for i = 1, #b do
  4616. if b[i].className == "Part" then
  4617. b[i]:Destroy()
  4618. end
  4619. end
  4620. hair = Instance.new("Part", bg1.Head)
  4621. hairmesh = Instance.new("SpecialMesh", hair)
  4622. hairmesh.MeshId = "http://www.roblox.com/asset/?id=164382853"
  4623. hairmesh.TextureId = "http://www.roblox.com/asset/?id=255755050"
  4624. hairmesh.Scale = Vector3.new(1.03, 1.03, 0.98)
  4625. hair.Transparency = 0
  4626. hair.CanCollide = false
  4627. hair.Name = "plrhair"
  4628. hair.Anchored = false
  4629. clhair = hair:Clone()
  4630. clhair.Parent = bg2.Head
  4631. Weld = Instance.new("Weld", bg1)
  4632. Weld.Part0 = bg1.Head
  4633. Weld.Part1 = hair
  4634. Weld.C1 = CFrame.new(0, -0.50, 0)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4635. Weld = Instance.new("Weld", bg2)
  4636. Weld.Part0 = bg2.Head
  4637. Weld.Part1 = clhair
  4638. Weld.C1 = CFrame.new(0, -0.50, 0)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4639.  
  4640. hair3 = Instance.new("Part", bg1.Head)
  4641. hairmesh3 = Instance.new("SpecialMesh", hair3)
  4642. hairmesh3.MeshId = "http://www.roblox.com/asset/?id=164382853"
  4643. hairmesh3.TextureId = "http://www.roblox.com/asset/?id=255755050"
  4644. hairmesh3.Scale = Vector3.new(1, 1, 1)
  4645. hair3.Transparency = 0
  4646. hair3.CanCollide = false
  4647. hair3.Name = "plrhair"
  4648. hair3.Anchored = false
  4649. clhair3 = hair3:Clone()
  4650. clhair3.Parent = bg2.Head
  4651. Weld = Instance.new("Weld", bg1)
  4652. Weld.Part0 = bg1.Head
  4653. Weld.Part1 = hair3
  4654. Weld.C1 = CFrame.new(0, -0.10, 0.3)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4655. Weld = Instance.new("Weld", bg2)
  4656. Weld.Part0 = bg2.Head
  4657. Weld.Part1 = clhair3
  4658. Weld.C1 = CFrame.new(0, -0.10, 0.3)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4659.  
  4660. for _,c in pairs(bg1:GetChildren()) do
  4661. if c:IsA('Pants') then
  4662. c:Destroy()
  4663. pants = Instance.new("Pants", bg1)
  4664. pants.PantsTemplate = "http://www.roblox.com/asset/?id=747111515"
  4665. end
  4666. end
  4667.  
  4668. for _,c in pairs(bg1:GetChildren()) do
  4669. if c:IsA('Shirt') then
  4670. c:Destroy()
  4671. shirt = Instance.new("Shirt", bg1)
  4672. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=153259531"
  4673. end
  4674. end
  4675.  
  4676. for _,c in pairs(bg2:GetChildren()) do
  4677. if c:IsA('Pants') then
  4678. c:Destroy()
  4679. pants = Instance.new("Pants", bg2)
  4680. pants.PantsTemplate = "http://www.roblox.com/asset/?id=747111515"
  4681. end
  4682. end
  4683.  
  4684. for _,c in pairs(bg2:GetChildren()) do
  4685. if c:IsA('Shirt') then
  4686. c:Destroy()
  4687. shirt = Instance.new("Shirt", bg2)
  4688. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=153259531"
  4689. end
  4690. end
  4691.  
  4692. brick = Instance.new("Part")
  4693. brick.CanCollide = false
  4694. brick.Anchored = true
  4695. brick.CFrame = bg1.Torso.CFrame
  4696. brick.Transparency = 1
  4697. brick.Parent = game.Workspace
  4698. brick2 = Instance.new("Part")
  4699. brick2.CanCollide = false
  4700. brick2.Anchored = true
  4701. brick2.CFrame = bg2.Torso.CFrame
  4702. brick2.Transparency = 1
  4703. brick2.Parent = game.Workspace
  4704. local sou = Instance.new("Sound")
  4705. sou.Pitch = 1
  4706. sou.Volume = 1
  4707. sou.SoundId = "rbxassetid://722960601"
  4708. sou.Parent = bg1.Torso
  4709. sou:Play()
  4710. local pe = Instance.new("ParticleEmitter")
  4711. pe.Acceleration = Vector3.new(0, 8, 0)
  4712. pe.Lifetime = NumberRange.new(1, 1.5)
  4713. pe.Rate = 20000
  4714. pe.RotSpeed = NumberRange.new(-30, 30)
  4715. pe.Rotation = NumberRange.new(0, 360)
  4716. pe.Size = NumberSequence.new({
  4717. NumberSequenceKeypoint.new(0, 4.38, 0),
  4718. NumberSequenceKeypoint.new(0.672, 4.14, 0),
  4719. NumberSequenceKeypoint.new(1, 1.48, 0)
  4720. })
  4721. pe.Texture = "rbxassetid://244221440"
  4722. pe.Transparency = NumberSequence.new({
  4723. NumberSequenceKeypoint.new(0, 0, 0),
  4724. NumberSequenceKeypoint.new(0.529, 0.3, 0),
  4725. NumberSequenceKeypoint.new(1, 1, 1)
  4726. })
  4727. pe.ZOffset = 5
  4728. pe.VelocitySpread = 360
  4729. pe.Parent = brick
  4730. pe.Enabled = true
  4731. clpe = pe:Clone()
  4732. clpe.Parent = brick2
  4733. wait(0.25)
  4734. pe.Enabled = false
  4735. clpe.Enabled = false
  4736. while wait() do
  4737. if not sou.IsPlaying then
  4738. sou:Destroy()
  4739. end
  4740. end
  4741. end
  4742.  
  4743. if say == "guns" then
  4744. nvm.Value = 1
  4745. Mouse = plr:GetMouse()
  4746.  
  4747. Mouse.Button1Down:connect(function()
  4748. if nvm.Value == 1 then
  4749. randomg = math.random(1,2)
  4750. if randomg == 1 then
  4751. bullet = Instance.new('Part', game.Workspace)
  4752. bullet.Touched:connect(function(hit)
  4753. if hit.Parent:FindFirstChild("Humanoid") then
  4754. hit.Parent:BreakJoints()
  4755. end
  4756. end)
  4757. bullet.Anchored = false
  4758. bullet.CanCollide = false
  4759. bullet.Size = Vector3.new(0.2,0.2,0.2)
  4760. bullet.BrickColor = BrickColor.new('Really black')
  4761. bullet.CFrame = Mouse.Hit
  4762. bullet.Name = 'Bullet'
  4763. game.Debris:AddItem(bullet, 1)
  4764. local shoot=Instance.new("Sound", bg1["Right Arm"])
  4765. shoot.SoundId="rbxassetid://180955656"
  4766. shoot:Play()
  4767. bg1.Torso.CFrame = CFrame.new(bg1.Torso.Position, Mouse.Hit.p)
  4768. end
  4769. if randomg == 2 then
  4770. bullet = Instance.new('Part', game.Workspace)
  4771. bullet.Touched:connect(function(hit)
  4772. if hit.Parent:FindFirstChild("Humanoid") then
  4773. hit.Parent:BreakJoints()
  4774. end
  4775. end)
  4776. bullet.Anchored = false
  4777. bullet.CanCollide = false
  4778. bullet.Size = Vector3.new(0.2,0.2,0.2)
  4779. bullet.BrickColor = BrickColor.new('Really black')
  4780. bullet.CFrame = Mouse.Hit
  4781. bullet.Name = 'Bullet'
  4782. game.Debris:AddItem(bullet2, 1)
  4783. local shoot2 = Instance.new("Sound", bg2["Right Arm"])
  4784. shoot2.SoundId="rbxassetid://180955656"
  4785. shoot2:Play()
  4786. bg2.Torso.CFrame = CFrame.new(bg2.Torso.Position, Mouse.Hit.p)
  4787. end
  4788. end
  4789. end)
  4790.  
  4791. part1 = Instance.new("Part")
  4792. part1.Parent = char
  4793. part1.Transparency = 0
  4794. part1.BrickColor = BrickColor.new('Really black')
  4795. part1.TopSurface = 0
  4796. part1.BottomSurface = 0
  4797. part1.CanCollide = false
  4798. part1.Anchored = false
  4799. gun = Instance.new("SpecialMesh", part1)
  4800. gun.MeshId = "rbxassetid://4372594"
  4801. gun.Scale = Vector3.new(1, 1, 1)
  4802. part1.CFrame = bg1["Right Arm"].CFrame * CFrame.new(0, 1, 1.75)
  4803. Weld5 = Instance.new("Weld", bg1)
  4804. Weld5.Part0 = bg1["Right Arm"]
  4805. Weld5.Part1 = part1
  4806. Weld5.C1 = CFrame.Angles(math.rad(-83),math.rad(180),math.rad(180)) * CFrame.new(0, 1.50, 0.2) * CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4807.  
  4808. part2 = Instance.new("Part")
  4809. part2.Parent = char
  4810. part2.Transparency = 0
  4811. part2.BrickColor = BrickColor.new('Really black')
  4812. part2.TopSurface = 0
  4813. part2.BottomSurface = 0
  4814. part2.CanCollide = false
  4815. part2.Anchored = false
  4816. gun2 = Instance.new("SpecialMesh", part2)
  4817. gun2.MeshId = "rbxassetid://4372594"
  4818. gun2.Scale = Vector3.new(1, 1, 1)
  4819. part2.CFrame = bg2["Right Arm"].CFrame * CFrame.new(0, 1, 1.75)
  4820. Weld10 = Instance.new("Weld", bg1)
  4821. Weld10.Part0 = bg2["Right Arm"]
  4822. Weld10.Part1 = part2
  4823. Weld10.C1 = CFrame.Angles(math.rad(-83),math.rad(180),math.rad(180)) * CFrame.new(0, 1.50, 0.2) * CFrame.fromEulerAnglesXYZ(0, 0, 0)
  4824.  
  4825. charbg1 = bg1
  4826. arm = {charbg1["Right Arm"]}
  4827. charbg1.Torso["Right Shoulder"].Archivable = true
  4828. mc = charbg1.Torso["Right Shoulder"]:Clone()
  4829. weld = Instance.new("Weld", arm[1])
  4830. weld.Part0 = charbg1.Torso
  4831. weld.Part1 = weld.Parent
  4832. weld.C1 = CFrame.new(-1.5,.5,.5)*CFrame.Angles(math.rad(-90),0,0)
  4833.  
  4834. charbg2 = bg2
  4835. arm = {charbg2["Right Arm"]}
  4836. charbg2.Torso["Right Shoulder"].Archivable = true
  4837. mc3 = charbg2.Torso["Right Shoulder"]:Clone()
  4838. weld12 = Instance.new("Weld", arm[1])
  4839. weld12.Part0 = charbg2.Torso
  4840. weld12.Part1 = weld12.Parent
  4841. weld12.C1 = CFrame.new(-1.5,.5,.5)*CFrame.Angles(math.rad(-90),0,0)
  4842. end
  4843.  
  4844. if say == "Ren dance" then
  4845. dance1 = math.random(1,7)
  4846. if dance1 == 1 then
  4847. local animation = Instance.new("Animation")
  4848. animation.AnimationId = "rbxassetid://27789359"
  4849. local animTrack = bg1.Humanoid:LoadAnimation(animation)
  4850. animTrack:Play()
  4851. end
  4852. if dance1 == 2 then
  4853. local animation = Instance.new("Animation")
  4854. animation.AnimationId = "rbxassetid://30196114"
  4855. local animTrack = bg1.Humanoid:LoadAnimation(animation)
  4856. animTrack:Play()
  4857. end
  4858. if dance1 == 3 then
  4859. local animation = Instance.new("Animation")
  4860. animation.AnimationId = "rbxassetid://248263260"
  4861. local animTrack = bg1.Humanoid:LoadAnimation(animation)
  4862. animTrack:Play()
  4863. end
  4864. if dance1 == 4 then
  4865. local animation = Instance.new("Animation")
  4866. animation.AnimationId = "rbxassetid://45834924"
  4867. local animTrack = bg1.Humanoid:LoadAnimation(animation)
  4868. animTrack:Play()
  4869. end
  4870. if dance1 == 5 then
  4871. local animation = Instance.new("Animation")
  4872. animation.AnimationId = "rbxassetid://33796059"
  4873. local animTrack = bg1.Humanoid:LoadAnimation(animation)
  4874. animTrack:Play()
  4875. end
  4876. if dance1 == 6 then
  4877. local animation = Instance.new("Animation")
  4878. animation.AnimationId = "rbxassetid://28488254"
  4879. local animTrack = bg1.Humanoid:LoadAnimation(animation)
  4880. animTrack:Play()
  4881. end
  4882. if dance1 == 7 then
  4883. local animation = Instance.new("Animation")
  4884. animation.AnimationId = "rbxassetid://52155728"
  4885. local animTrack = bg1.Humanoid:LoadAnimation(animation)
  4886. animTrack:Play()
  4887. end
  4888.  
  4889. dance2 = math.random(1,7)
  4890. if dance2 == 1 then
  4891. local animation = Instance.new("Animation")
  4892. animation.AnimationId = "rbxassetid://27789359"
  4893. local animTrack = bg2.Humanoid:LoadAnimation(animation)
  4894. animTrack:Play()
  4895. end
  4896. if dance2 == 2 then
  4897. local animation = Instance.new("Animation")
  4898. animation.AnimationId = "rbxassetid://30196114"
  4899. local animTrack = bg2.Humanoid:LoadAnimation(animation)
  4900. animTrack:Play()
  4901. end
  4902. if dance2 == 3 then
  4903. local animation = Instance.new("Animation")
  4904. animation.AnimationId = "rbxassetid://248263260"
  4905. local animTrack = bg2.Humanoid:LoadAnimation(animation)
  4906. animTrack:Play()
  4907. end
  4908. if dance2 == 4 then
  4909. local animation = Instance.new("Animation")
  4910. animation.AnimationId = "rbxassetid://45834924"
  4911. local animTrack = bg2.Humanoid:LoadAnimation(animation)
  4912. animTrack:Play()
  4913. end
  4914. if dance2 == 5 then
  4915. local animation = Instance.new("Animation")
  4916. animation.AnimationId = "rbxassetid://33796059"
  4917. local animTrack = bg2.Humanoid:LoadAnimation(animation)
  4918. animTrack:Play()
  4919. end
  4920. if dance2 == 6 then
  4921. local animation = Instance.new("Animation")
  4922. animation.AnimationId = "rbxassetid://28488254"
  4923. local animTrack = bg2.Humanoid:LoadAnimation(animation)
  4924. animTrack:Play()
  4925. end
  4926. if dance2 == 7 then
  4927. local animation = Instance.new("Animation")
  4928. animation.AnimationId = "rbxassetid://52155728"
  4929. local animTrack = bg2.Humanoid:LoadAnimation(animation)
  4930. animTrack:Play()
  4931. end
  4932. end
  4933.  
  4934. if say == "ani" then
  4935. local animation = Instance.new("Animation")
  4936. animation.AnimationId = "rbxassetid://0"
  4937. local animTrack = bg1.Humanoid:LoadAnimation(animation)
  4938. animTrack:Play()
  4939.  
  4940. local animation = Instance.new("Animation")
  4941. animation.AnimationId = "rbxassetid://0"
  4942. local animTrack = bg2.Humanoid:LoadAnimation(animation)
  4943. animTrack:Play()
  4944. end
  4945.  
  4946. if say == "Ren in" then
  4947. nvm.Value = 0
  4948. weld:Destroy()
  4949. mc.Parent = charbg1.Torso
  4950.  
  4951. Weld10:Destroy()
  4952. Weld5:Destroy()
  4953. part1:Destroy()
  4954. part2:Destroy()
  4955.  
  4956. weld12:Destroy()
  4957. mc3.Parent = charbg2.Torso
  4958. end
  4959.  
  4960. if say == "Ren unride" then
  4961. nvm3.Value = 0
  4962. nvm2.Value = 1
  4963. if bg1.Head:FindFirstChild('noobweld') then
  4964. bg1.Head.noobweld:Destroy()
  4965. end
  4966. if char.Head:FindFirstChild('firstweld') then
  4967. char.Head.firstweld:Destroy()
  4968. end
  4969. bg2.Humanoid.WalkSpeed = 16
  4970. bg1.Humanoid.Sit = false
  4971. bg2.Humanoid.Sit = false
  4972. char.Humanoid.Sit = false
  4973. end
  4974.  
  4975. if say == "Ren ride" then
  4976. Mouse = plr:GetMouse()
  4977. nvm2.Value = 0
  4978. nvm3.Value = 1
  4979. p = Instance.new('Weld', plr.Character.Head)
  4980. p.Part0 = plr.Character:FindFirstChild("Torso") or plr.Character:FindFirstChild("UpperTorso")
  4981. p.Part1 = bg1:FindFirstChild("Torso") or bg1:FindFirstChild("UpperTorso")
  4982. p.Name = 'firstweld'
  4983. p.C0 = CFrame.new(0,-2.2,-.50)
  4984. a = Instance.new('Weld', bg1.Head)
  4985. a.Part0 = bg1:FindFirstChild("Torso") or bg1:FindFirstChild("UpperTorso")
  4986. a.Part1 = bg2:FindFirstChild("Torso") or bg2:FindFirstChild("UpperTorso")
  4987. a.C0 = CFrame.new(0,-2.2,-.50)
  4988. a.Name = 'noobweld'
  4989. plr.Character.Humanoid.Sit = true
  4990. bg1.Humanoid.Sit = true
  4991. while wait() do
  4992. if nvm3.Value == 1 then
  4993. bg2.Humanoid:MoveTo(Mouse.Hit.p)
  4994. plr.Character.Humanoid.Sit = true
  4995. bg1.Humanoid.Sit = true
  4996. bg1.Humanoid.Health = bg1.Humanoid.Health + 100
  4997. bg2.Humanoid.Health = bg2.Humanoid.Health + 100
  4998. bg2.Humanoid.WalkSpeed = 65
  4999. end
  5000. end
  5001.  
  5002. if say == "Ren Spy" then
  5003. signal = Instance.new('Part', game.ReplicatedStorage)
  5004. local ply = game.Players:GetPlayers()[math.random(game.Players.NumPlayers)]
  5005. bgchoose = math.random(1, 2)
  5006. if bgchoose == 1 then
  5007.  
  5008. bg1.Head.face.Texture = "http://www.roblox.com/asset/?id=20722053"
  5009.  
  5010. for _,c in pairs(bg1:GetChildren()) do
  5011. if c:IsA('Pants') then
  5012. c:Destroy()
  5013. pants = Instance.new("Pants", bg1)
  5014. pants.PantsTemplate = "http://www.roblox.com/asset/?id=609932389"
  5015. end
  5016. end
  5017.  
  5018. for _,c in pairs(bg1:GetChildren()) do
  5019. if c:IsA('Shirt') then
  5020. c:Destroy()
  5021. shirt = Instance.new("Shirt", bg1)
  5022. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=457259912"
  5023. end
  5024. end
  5025.  
  5026. hair = Instance.new("Part", bg1.Head)
  5027. hairmesh = Instance.new("SpecialMesh", hair)
  5028. hairmesh.MeshId = "rbxassetid://494950128"
  5029. hairmesh.Scale = Vector3.new(1, 1, 1)
  5030. hair.Transparency = 0
  5031. hair.CanCollide = false
  5032. hair.Name = "plrhair"
  5033. hair.Anchored = false
  5034. hair.BrickColor = BrickColor.new("Really red")
  5035. Weld = Instance.new("Weld", bg1)
  5036. Weld.Part0 = bg1.Head
  5037. Weld.Part1 = hair
  5038. Weld.C1 = CFrame.new(0, -0.50, 0)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  5039. while wait() do
  5040. if game.ReplicatedStorage:FindFirstChild('Part') then
  5041. bg1.Torso.CFrame = CFrame.new(bg1.Torso.Position, ply.Character.Torso.Position)
  5042. end
  5043. end
  5044.  
  5045. if bgchoose == 2 then
  5046.  
  5047. bg2.Head.face.Texture = "http://www.roblox.com/asset/?id=20418518"
  5048.  
  5049. for _,c in pairs(bg2:GetChildren()) do
  5050. if c:IsA('Pants') then
  5051. c:Destroy()
  5052. pants = Instance.new("Pants", bg2)
  5053. pants.PantsTemplate = "http://www.roblox.com/asset/?id=609932389"
  5054. end
  5055. end
  5056.  
  5057. for _,c in pairs(bg2:GetChildren()) do
  5058. if c:IsA('Shirt') then
  5059. c:Destroy()
  5060. shirt = Instance.new("Shirt", bg2)
  5061. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=457259912"
  5062. end
  5063. end
  5064.  
  5065. hair1 = Instance.new("Part", bg2.Head)
  5066. hairmesh1 = Instance.new("SpecialMesh", hair1)
  5067. hairmesh1.MeshId = "rbxassetid://494950128"
  5068. hairmesh1.Scale = Vector3.new(1, 1, 1)
  5069. hair1.Transparency = 0
  5070. hair1.CanCollide = false
  5071. hair1.Name = "plrhair"
  5072. hair1.Anchored = false
  5073. hair1.BrickColor = BrickColor.new("Really black")
  5074. Weld1 = Instance.new("Weld", bg2)
  5075. Weld1.Part0 = bg2.Head
  5076. Weld1.Part1 = hair1
  5077. Weld1.C1 = CFrame.new(0, -0.50, 0)*CFrame.fromEulerAnglesXYZ(0, 0, 0)
  5078. signal2 = Instance.new('Part', game.ReplicatedStorage)
  5079. signal2.Name = "Part2"
  5080. while wait() do
  5081. if game.ReplicatedStorage:FindFirstChild('Part2') then
  5082. bg2.Torso.CFrame = CFrame.new(bg2.Torso.Position, ply.Character.Torso.Position)
  5083. end
  5084. end
  5085. end
  5086. end
  5087. end
  5088. end
  5089. end)
  5090.  
  5091. game:GetService('RunService').RenderStepped:connect(function()
  5092. if nvm2.Value == 1 then
  5093. bg1.Humanoid.Health = bg1.Humanoid.Health + 5000
  5094. bg2.Humanoid.Health = bg2.Humanoid.Health + 5000
  5095. bg1.Humanoid:MoveTo(bgpoint1.Position)
  5096. bg2.Humanoid:MoveTo(bgpoint2.Position)
  5097. if bg1.Humanoid.PlatformStand == true then
  5098. bg1.Humanoid.PlatformStand = false
  5099. end
  5100. if bg2.Humanoid.PlatformStand == true then
  5101. bg2.Humanoid.PlatformStand = false
  5102. end
  5103. if bg1.Humanoid.Sit == true then
  5104. bg1.Humanoid.Sit = false
  5105. end
  5106. if bg2.Humanoid.Sit == true then
  5107. bg2.Humanoid.Sit = false
  5108. end
  5109. for _,v in pairs(workspace:children()) do
  5110. if v:IsA('Model') and v:FindFirstChild("HumanoidRootPart") and v:FindFirstChildOfClass("Humanoid") then
  5111. if (v.HumanoidRootPart.Position-bg1.Torso.Position).magnitude <=2 then
  5112. bg1.Humanoid.Jump=true
  5113. end
  5114. end
  5115. end
  5116. for _,v in pairs(workspace:children()) do
  5117. if v:IsA('Model') and v:FindFirstChild("HumanoidRootPart") and v:FindFirstChildOfClass("Humanoid") then
  5118. if (v.HumanoidRootPart.Position-bg2.Torso.Position).magnitude <=2 then
  5119. bg2.Humanoid.Jump=true
  5120. end
  5121. end
  5122. end
  5123. if (game.Players.LocalPlayer.Character.Torso.Position - bg2.Torso.Position).magnitude <= 20 then
  5124. bg2.Humanoid.WalkSpeed = 16
  5125. else
  5126. bg2.Humanoid.WalkSpeed = 55
  5127. end
  5128. if (game.Players.LocalPlayer.Character.Torso.Position - bg1.Torso.Position).magnitude <= 20 then
  5129. bg1.Humanoid.WalkSpeed = 16
  5130. else
  5131. bg1.Humanoid.WalkSpeed = 55
  5132. end
  5133. end
  5134. end)
  5135. local Player = game.Players.LocalPlayer
  5136. local PetName = "Charizard"
  5137. local MeshId = "rbxassetid://557067172"-----you can change the mesh to change the pokemon
  5138. local TextureId = "rbxassetid://557067180"
  5139.  
  5140. local PetModel = Instance.new("Model")
  5141. PetModel.Parent = Player.Character
  5142. PetModel.Name = ""..Player.Name.."'s "..PetName
  5143.  
  5144. local Humanoid = Instance.new("Humanoid")
  5145. Humanoid.Parent = PetModel
  5146. Humanoid.MaxHealth = 0
  5147. Humanoid.Health = 0
  5148.  
  5149. local Pet = Instance.new("Part")
  5150. Pet.Parent = PetModel
  5151. Pet.Name = "Head"
  5152. Pet.Size = Vector3.new(0.50,0.50,0.50)
  5153. Pet.Anchored = true
  5154. Pet.CanCollide = true
  5155.  
  5156. local Mesh = Instance.new("FileMesh")
  5157. Mesh.Parent = Pet
  5158. Mesh.Name = "PetMesh"
  5159. Mesh.MeshId = MeshId
  5160. Mesh.TextureId = TextureId
  5161.  
  5162. while wait() do
  5163. Pet.CFrame = Player.Character.Head.CFrame + Vector3.new(0.50,0.50,0.50)
  5164. end
Add Comment
Please, Sign In to add comment