Advertisement
ROBLOXLua

Untitled

Jun 14th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.05 KB | None | 0 0
  1.  
  2. math.randomseed(tick()
  3.  
  4.  
  5. 2.local pwn = game:service('Players').LocalPlayer
  6.  
  7.  
  8. 3.local char = pwn.Character
  9.  
  10.  
  11. 4.local pk = pwn.Backpack
  12.  
  13.  
  14. 5.local Human = char.Humanoid
  15.  
  16.  
  17. 6.local Torso = char.Torso
  18.  
  19.  
  20. 7.local Head = char.Head
  21.  
  22.  
  23. 8.local LeftArm = char["Left Arm"]
  24.  
  25.  
  26. 9.local RightArm = char["Right Arm"]
  27.  
  28.  
  29. 10.local LeftLeg = char["Left Leg"]
  30.  
  31.  
  32. 11.local RightLeg = char["Right Leg"]
  33.  
  34.  
  35. 12.local Neck = char.Torso["Neck"]
  36.  
  37.  
  38. 13.local RightShoulder = char.Torso["Right Shoulder"]
  39.  
  40.  
  41. 14.local LeftShoulder = char.Torso["Left Shoulder"]
  42.  
  43.  
  44. 15.local RightHip = char.Torso["Right Hip"]
  45.  
  46.  
  47. 16.local LeftHip = char.Torso["Left Hip"]
  48.  
  49.  
  50. 17.local NeckC0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  51.  
  52.  
  53. 18.local NeckC1 = CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  54.  
  55.  
  56. 19.local LeftShoulderC0 = CFrame.new(-1, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  57.  
  58.  
  59. 20.local LeftShoulderC1 = CFrame.new(0.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  60.  
  61.  
  62. 21.local RightShoulderC0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  63.  
  64.  
  65. 22.local RightShoulderC1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  66.  
  67.  
  68. 23.local LeftHipC0 = CFrame.new(-1, -1, 0, 0, 0, -1,0,1, 0, 1, 0, 0)
  69.  
  70.  
  71. 24.local LeftHipC1 = CFrame.new(-0.5,1,0,0,0,-1,0,1,0,1, 0, 0)
  72.  
  73.  
  74. 25.local RightHipC0 = CFrame.new(1,-1,0,0,0,1,0,1,0,-1,0,0)
  75.  
  76.  
  77. 26.local RightHipC1 = CFrame.new(0.5,1,0,0,0,1,0,1,0,-1,0,0)
  78.  
  79.  
  80. 27.local Tewl = Instance.new("HopperBin",pk)
  81.  
  82.  
  83. 28.local Nim = "Time Blast"
  84.  
  85.  
  86. 29.local disabled = false
  87.  
  88.  
  89. 30.function ChargeWelds()
  90.  
  91.  
  92. 31.if Torso.Anchored then
  93.  
  94.  
  95. 32.Torso.CFrame = Torso.CFrame * CFrame.new(0,5,0)
  96.  
  97.  
  98. 33.else
  99.  
  100.  
  101. 34.Torso.Anchored = true
  102.  
  103.  
  104. 35.Torso.CFrame = Torso.CFrame * CFrame.new(0,5,0)
  105.  
  106.  
  107. 36.end
  108.  
  109.  
  110. 37.coroutine.resume(meshInsertion)
  111.  
  112.  
  113. 38.TiltX = 2
  114.  
  115.  
  116. 39.TiltY = 0
  117.  
  118.  
  119. 40.TiltZ = 2
  120.  
  121.  
  122. 41.RightShoulder.C0 = RightShoulderC0 * CFrame.Angles(TiltX, TiltY, TiltZ)
  123.  
  124.  
  125. 42.LeftShoulder.C0 = LeftShoulderC0 * CFrame.Angles(TiltX, TiltY, TiltZ)
  126.  
  127.  
  128. 43.TiltX = 2
  129.  
  130.  
  131. 44.TiltY = 0
  132.  
  133.  
  134. 45.TiltZ = 2
  135.  
  136.  
  137. 46.MoveX = 0
  138.  
  139.  
  140. 47.MoveY = 0
  141.  
  142.  
  143. 48.MoveZ = 0
  144.  
  145.  
  146. 49.RightShoulder.C0 = RightShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  147.  
  148.  
  149. 50.LeftShoulder.C0 = LeftShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX,MoveY,MoveZ)
  150.  
  151.  
  152. 51.TiltX = 0.3
  153.  
  154.  
  155. 52.TiltY = 0
  156.  
  157.  
  158. 53.TiltZ = 0.3
  159.  
  160.  
  161. 54.MoveX = 0
  162.  
  163.  
  164. 55.MoveY = 0
  165.  
  166.  
  167. 56.MoveZ = 0
  168.  
  169.  
  170. 57.RightHip.C0 = RightHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  171.  
  172.  
  173. 58.LeftHip.C0 = LeftHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  174.  
  175.  
  176. 59.end
  177.  
  178.  
  179. 60.function RefreshWelds()
  180.  
  181.  
  182. 61.Neck.C0 = NeckC0
  183.  
  184.  
  185. 62.Neck.C1 = NeckC1
  186.  
  187.  
  188. 63.RightShoulder.C0 = RightShoulderC0
  189.  
  190.  
  191. 64.RightShoulder.C1 = RightShoulderC1
  192.  
  193.  
  194. 65.LeftShoulder.C0 = LeftShoulderC0
  195.  
  196.  
  197. 66.LeftShoulder.C1 = LeftShoulderC1
  198.  
  199.  
  200. 67.RightHip.C0 = RightHipC0
  201.  
  202.  
  203. 68.RightHip.C1 = RightHipC1
  204.  
  205.  
  206. 69.LeftHip.C0 = LeftHipC0
  207.  
  208.  
  209. 70.LeftHip.C1 = LeftHipC1
  210.  
  211.  
  212. 71.end
  213.  
  214.  
  215. 72.function Welds1()
  216.  
  217.  
  218. 73.TiltX = 0
  219.  
  220.  
  221. 74.TiltY = 0
  222.  
  223.  
  224. 75.TiltZ = 1.57
  225.  
  226.  
  227. 76.RightShoulder.C0 = RightShoulderC0 * CFrame.Angles(TiltX, TiltY, TiltZ)
  228.  
  229.  
  230. 77.LeftShoulder.C0 = LeftShoulderC0 * CFrame.Angles(TiltX, TiltY, -TiltZ)
  231.  
  232.  
  233. 78.TiltX = 0.6
  234.  
  235.  
  236. 79.TiltY = 0
  237.  
  238.  
  239. 80.TiltZ = 0
  240.  
  241.  
  242. 81.MoveX = 0
  243.  
  244.  
  245. 82.MoveY = 0
  246.  
  247.  
  248. 83.MoveZ = -0.3
  249.  
  250.  
  251. 84.RightShoulder.C0 = RightShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  252.  
  253.  
  254. 85.LeftShoulder.C0 = LeftShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  255.  
  256.  
  257. 86.TiltX = -0.05
  258.  
  259.  
  260. 87.TiltY = 0
  261.  
  262.  
  263. 88.TiltZ = 0
  264.  
  265.  
  266. 89.MoveX = 0
  267.  
  268.  
  269. 90.MoveY = 0.1
  270.  
  271.  
  272. 91.MoveZ = 0
  273.  
  274.  
  275. 92.RightHip.C0 = RightHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  276.  
  277.  
  278. 93.LeftHip.C0 = LeftHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  279.  
  280.  
  281. 94.end
  282.  
  283.  
  284. 95.function Welds2()
  285.  
  286.  
  287. 96.TiltX = 100
  288.  
  289.  
  290. 97.TiltY = 20
  291.  
  292.  
  293. 98.TiltZ = -20
  294.  
  295.  
  296. 99.RightShoulder.C0 = RightShoulderC0 * CFrame.Angles(TiltX, TiltY, TiltZ)
  297.  
  298.  
  299. 100.LeftShoulder.C0 = LeftShoulderC0 * CFrame.Angles(TiltX, TiltY, TiltZ)
  300.  
  301.  
  302. 101.TiltX = 0.6
  303.  
  304.  
  305. 102.TiltY = 0
  306.  
  307.  
  308. 103.TiltZ = 0
  309.  
  310.  
  311. 104.MoveX = 0
  312.  
  313.  
  314. 105.MoveY = 0
  315.  
  316.  
  317. 106.MoveZ = -0.3
  318.  
  319.  
  320. 107.RightShoulder.C0 = RightShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  321.  
  322.  
  323. 108.LeftShoulder.C0 = LeftShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  324.  
  325.  
  326. 109.TiltX = 0
  327.  
  328.  
  329. 110.TiltY = 0
  330.  
  331.  
  332. 111.TiltZ = 0
  333.  
  334.  
  335. 112.MoveX = 0
  336.  
  337.  
  338. 113.MoveY = 0
  339.  
  340.  
  341. 114.MoveZ = 0
  342.  
  343.  
  344. 115.RightHip.C0 = RightHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  345.  
  346.  
  347. 116.LeftHip.C0 = LeftHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  348.  
  349.  
  350. 117.end
  351.  
  352.  
  353. 118.function onButton1Down(mouse)
  354.  
  355.  
  356. 119.if disabled == true then
  357.  
  358.  
  359. 120.return
  360.  
  361.  
  362. 121.end
  363.  
  364.  
  365. 122.Torso.Anchored = true
  366.  
  367.  
  368. 123.Human.PlatformStand = true
  369.  
  370.  
  371. 124.Human.WalkSpeed = 0
  372.  
  373.  
  374. 125.disabled = true
  375.  
  376.  
  377. 126.narb = Instance.new("ForceField",char)
  378.  
  379.  
  380. 127.noob = narb:clone()
  381.  
  382.  
  383. 128.noobz = narb:clone()
  384.  
  385.  
  386. 129.nubz = narb:clone()
  387.  
  388.  
  389. 130.coroutine.resume(coroutine.create(function()
  390.  
  391.  
  392. 131.for x = 1,150 do
  393.  
  394.  
  395. 132.Torso.CFrame = Torso.CFrame * CFrame.fromEulerAnglesXYZ(0,math.random(-100,100),0)
  396.  
  397.  
  398. 133.wait()
  399.  
  400.  
  401. 134.end
  402.  
  403.  
  404. 135.end))
  405.  
  406.  
  407. 136.chargeup()
  408.  
  409.  
  410. 137.local wow = Instance.new("Part",workspace)
  411.  
  412.  
  413. 138.wow.Anchored = true
  414.  
  415.  
  416. 139.wow.CanCollide = false
  417.  
  418.  
  419. 140.wow.Reflectance = 0.32
  420.  
  421.  
  422. 141.wow.formFactor = "Custom"
  423.  
  424.  
  425. 142.wow.Size = Vector3.new(0.2,0.2,0.2)
  426.  
  427.  
  428. 143.wow.TopSurface = "Smooth"
  429.  
  430.  
  431. 144.wow.Transparency = 0
  432.  
  433.  
  434. 145.wow.BottomSurface = "Smooth"
  435.  
  436.  
  437. 146.wow.CFrame = Torso.CFrame
  438.  
  439.  
  440. 147.wow.BrickColor = BrickColor.new("Really black")
  441.  
  442.  
  443. 148.local Mesh2 = Instance.new("SpecialMesh",wow)
  444.  
  445.  
  446. 149.Mesh2.MeshType = "FileMesh"
  447.  
  448.  
  449. 150.Mesh2.Scale = Vector3.new(4.5,0.5,4.5)
  450.  
  451.  
  452. 151.Mesh2.MeshId = "http://www.roblox.com/asset/?id=20329976"
  453.  
  454.  
  455. 152.Mesh2.TextureId = ""
  456.  
  457.  
  458. 153.for i = 1,30 do
  459.  
  460.  
  461. 154.wow.CFrame = Torso.CFrame * CFrame.new(0,-7.5,0)
  462.  
  463.  
  464. 155.wait()
  465.  
  466.  
  467. 156.wow.CFrame = wow.CFrame * CFrame.fromEulerAnglesXYZ(0,-6,0)
  468.  
  469.  
  470. 157.wow.Transparency = wow.Transparency + 0.1
  471.  
  472.  
  473. 158.end
  474.  
  475.  
  476. 159.local p = Instance.new("Part",char)
  477.  
  478.  
  479. 160.p.Anchored = true
  480.  
  481.  
  482. 161.p.CanCollide = false
  483.  
  484.  
  485. 162.p.Transparency = 0
  486.  
  487.  
  488. 163.p.Reflectance = 0.3
  489.  
  490.  
  491. 164.p.formFactor = "Symmetric"
  492.  
  493.  
  494. 165.p.Size = Vector3.new(12, 12, 12)
  495.  
  496.  
  497. 166.p.TopSurface = "Smooth"
  498.  
  499.  
  500. 167.p.BottomSurface = "Smooth"
  501.  
  502.  
  503. 168.p.Name = "Sharingan"
  504.  
  505.  
  506. 169.p.Shape = "Ball"
  507.  
  508.  
  509. 170.p.CFrame = Torso.CFrame
  510.  
  511.  
  512. 171.p.BrickColor = BrickColor.new("Lime green")
  513.  
  514.  
  515. 172.local lol = Instance.new("Explosion",workspace)
  516.  
  517.  
  518. 173.lol.Position = Torso.Position
  519.  
  520.  
  521. 174.lol.BlastRadius = 450
  522.  
  523.  
  524. 175.lol.BlastPressure = 0
  525.  
  526.  
  527. 176.for i = 1,10 do
  528.  
  529.  
  530. 177.wait()
  531.  
  532.  
  533. 178.p.Size = p.Size + Vector3.new(3,3,3)
  534.  
  535.  
  536. 179.p.CFrame = Torso.CFrame
  537.  
  538.  
  539. 180.p.Transparency = p.Transparency + 0.1
  540.  
  541.  
  542. 181.end
  543.  
  544.  
  545. 182.game.Lighting.TimeOfDay = 6
  546.  
  547.  
  548. 183.p:remove()
  549.  
  550.  
  551. 184.wow:remove()
  552.  
  553.  
  554. 185.Welds2()
  555.  
  556.  
  557. 186.wait(0.5)
  558.  
  559.  
  560. 187.Welds1()
  561.  
  562.  
  563. 188.wait(0.5)
  564.  
  565.  
  566. 189.RightShoulder.C0 = RightShoulderC0 * CFrame.Angles(0.1, 0, 2)
  567.  
  568.  
  569. 190.LeftShoulder.C0 = LeftShoulderC0 * CFrame.Angles(0.1, 0, -2)
  570.  
  571.  
  572. 191.wait(1)
  573.  
  574.  
  575. 192.for i = 1,20 do
  576.  
  577.  
  578. 193.game.Lighting.Ambient = Color3.new(math.random(),math.random(),math.random())
  579.  
  580.  
  581. 194.wait()
  582.  
  583.  
  584. 195.end
  585.  
  586.  
  587. 196.game.Lighting.Ambient = Color3.new(1,1,1)
  588.  
  589.  
  590. 197.local model = Instance.new("Model",char)
  591.  
  592.  
  593. 198.local fer = Instance.new("Fire",Torso)
  594.  
  595.  
  596. 199.fer.Size = 30
  597.  
  598.  
  599. 200.fer.Heat = 18
  600.  
  601.  
  602. 201.fer.Color = BrickColor.new("Really red").Color
  603.  
  604.  
  605. 202.fer.SecondaryColor = BrickColor.new("Really black").Color
  606.  
  607.  
  608. 203.local smk = Instance.new("Smoke",Torso)
  609.  
  610.  
  611. 204.smk.Opacity = 1
  612.  
  613.  
  614. 205.smk.RiseVelocity = 25
  615.  
  616.  
  617. 206.smk.Size = 12
  618.  
  619.  
  620. 207.smk.Color = BrickColor.new("Really red").Color
  621.  
  622.  
  623. 208.local O = Instance.new("Part",model)
  624.  
  625.  
  626. 209.O.Anchored = true
  627.  
  628.  
  629. 210.O.CanCollide = false
  630.  
  631.  
  632. 211.O.Transparency = 0
  633.  
  634.  
  635. 212.O.Reflectance = 0.3
  636.  
  637.  
  638. 213.O.formFactor = "Symmetric"
  639.  
  640.  
  641. 214.O.Size = Vector3.new(0, 0, 0)
  642.  
  643.  
  644. 215.O.TopSurface = "Smooth"
  645.  
  646.  
  647. 216.O.BottomSurface = "Smooth"
  648.  
  649.  
  650. 217.O.Name = "Sharingan"
  651.  
  652.  
  653. 218.O.Shape = "Ball"
  654.  
  655.  
  656. 219.O.CFrame = Torso.CFrame*CFrame.fromEulerAnglesXYZ(1.5, 0, 0)
  657.  
  658.  
  659. 220.O.BrickColor = BrickColor.new("Really red")
  660.  
  661.  
  662. 221.local Mesh = Instance.new("SpecialMesh")
  663.  
  664.  
  665. 222.Mesh.Parent = O
  666.  
  667.  
  668. 223.Mesh.MeshType = "FileMesh"
  669.  
  670.  
  671. 224.Mesh.Scale = Vector3.new(1.3, 1.3, 1.3)
  672.  
  673.  
  674. 225.Mesh.MeshId = "http://www.roblox.com/asset/?id=3270017"
  675.  
  676.  
  677. 226.Mesh.TextureId = ""
  678.  
  679.  
  680. 227.local O2 = Instance.new("Part",model)
  681.  
  682.  
  683. 228.O2.Anchored = true
  684.  
  685.  
  686. 229.O2.CanCollide = false
  687.  
  688.  
  689. 230.O2.Transparency = 0
  690.  
  691.  
  692. 231.O2.Reflectance = 0.3
  693.  
  694.  
  695. 232.O2.formFactor = "Symmetric"
  696.  
  697.  
  698. 233.O2.Size = Vector3.new(0, 0, 0)
  699.  
  700.  
  701. 234.O2.TopSurface = "Smooth"
  702.  
  703.  
  704. 235.O2.BottomSurface = "Smooth"
  705.  
  706.  
  707. 236.O2.Name = "Sharingan"
  708.  
  709.  
  710. 237.O2.Shape = "Ball"
  711.  
  712.  
  713. 238.O2.CFrame = Torso.CFrame
  714.  
  715.  
  716. 239.O2.BrickColor = BrickColor.new("Really red")
  717.  
  718.  
  719. 240.local Mesh3 = Instance.new("SpecialMesh")
  720.  
  721.  
  722. 241.Mesh3.Parent = O2
  723.  
  724.  
  725. 242.Mesh3.MeshType = "FileMesh"
  726.  
  727.  
  728. 243.Mesh3.Scale = Vector3.new(1, 1, 1)
  729.  
  730.  
  731. 244.Mesh3.MeshId = "http://www.roblox.com/asset/?id=3270017"
  732.  
  733.  
  734. 245.Mesh3.TextureId = ""
  735.  
  736.  
  737. 246.local O3 = Instance.new("Part",model)
  738.  
  739.  
  740. 247.O3.Anchored = true
  741.  
  742.  
  743. 248.O3.CanCollide = false
  744.  
  745.  
  746. 249.O3.Transparency = 0
  747.  
  748.  
  749. 250.O3.Reflectance = 0.3
  750.  
  751.  
  752. 251.O3.formFactor = "Symmetric"
  753.  
  754.  
  755. 252.O3.Size = Vector3.new(0, 0, 0)
  756.  
  757.  
  758. 253.O3.TopSurface = "Smooth"
  759.  
  760.  
  761. 254.O3.BottomSurface = "Smooth"
  762.  
  763.  
  764. 255.O3.Name = "Sharingan"
  765.  
  766.  
  767. 256.O3.Shape = "Ball"
  768.  
  769.  
  770. 257.O3.CFrame = Torso.CFrame*CFrame.fromEulerAnglesXYZ(1.5, 0, 0)
  771.  
  772.  
  773. 258.O3.BrickColor = BrickColor.new("Really red")
  774.  
  775.  
  776. 259.local Mesh4 = Instance.new("SpecialMesh")
  777.  
  778.  
  779. 260.Mesh4.Parent = O3
  780.  
  781.  
  782. 261.Mesh4.MeshType = "FileMesh"
  783.  
  784.  
  785. 262.Mesh4.Scale = Vector3.new(1.3, 1.3, 1.3)
  786.  
  787.  
  788. 263.Mesh4.MeshId = "http://www.roblox.com/asset/?id=3270017"
  789.  
  790.  
  791. 264.Mesh4.TextureId = ""
  792.  
  793.  
  794. 265.local O4 = Instance.new("Part",model)
  795.  
  796.  
  797. 266.O4.Anchored = true
  798.  
  799.  
  800. 267.O4.CanCollide = false
  801.  
  802.  
  803. 268.O4.Transparency = 0
  804.  
  805.  
  806. 269.O4.Reflectance = 0.3
  807.  
  808.  
  809. 270.O4.formFactor = "Symmetric"
  810.  
  811.  
  812. 271.O4.Size = Vector3.new(0, 0, 0)
  813.  
  814.  
  815. 272.O4.TopSurface = "Smooth"
  816.  
  817.  
  818. 273.O4.BottomSurface = "Smooth"
  819.  
  820.  
  821. 274.O4.Name = "Sharingan"
  822.  
  823.  
  824. 275.O4.Shape = "Ball"
  825.  
  826.  
  827. 276.O4.CFrame = Torso.CFrame
  828.  
  829.  
  830. 277.O4.BrickColor = BrickColor.new("Really red")
  831.  
  832.  
  833. 278.local Mesh5 = Instance.new("SpecialMesh")
  834.  
  835.  
  836. 279.Mesh5.Parent = O4
  837.  
  838.  
  839. 280.Mesh5.MeshType = "FileMesh"
  840.  
  841.  
  842. 281.Mesh5.Scale = Vector3.new(1, 1, 1)
  843.  
  844.  
  845. 282.Mesh5.MeshId = "http://www.roblox.com/asset/?id=3270017"
  846.  
  847.  
  848. 283.Mesh5.TextureId = ""
  849.  
  850.  
  851. 284.local pro = Instance.new("Part",char)
  852.  
  853.  
  854. 285.pro.Anchored = true
  855.  
  856.  
  857. 286.pro.CanCollide = true
  858.  
  859.  
  860. 287.pro.Transparency = 0.2
  861.  
  862.  
  863. 288.pro.Reflectance = 0.3
  864.  
  865.  
  866. 289.pro.formFactor = "Symmetric"
  867.  
  868.  
  869. 290.pro.Size = Vector3.new(1, 1, 1)
  870.  
  871.  
  872. 291.pro.TopSurface = "Smooth"
  873.  
  874.  
  875. 292.pro.BottomSurface = "Smooth"
  876.  
  877.  
  878. 293.pro.Name = "Sharingan"
  879.  
  880.  
  881. 294.pro.Shape = "Ball"
  882.  
  883.  
  884. 295.pro.BrickColor = BrickColor.new("White")
  885.  
  886.  
  887. 296.pro.CFrame = Torso.CFrame
  888.  
  889.  
  890. 297.pro.Touched:connect(onTouched)
  891.  
  892.  
  893. 298.local lol = Instance.new("Explosion",workspace)
  894.  
  895.  
  896. 299.lol.Position = Torso.Position
  897.  
  898.  
  899. 300.lol.BlastRadius = 65
  900.  
  901.  
  902. 301.lol.BlastPressure = 900000
  903.  
  904.  
  905. 302.lol.Hit:connect(explhit)
  906.  
  907.  
  908. 303.local Effect = Instance.new("Part",pro)
  909.  
  910.  
  911. 304.Effect.Anchored = true
  912.  
  913.  
  914. 305.Effect.CanCollide = false
  915.  
  916.  
  917. 306.Effect.Size = Vector3.new(1, 1, 1)
  918.  
  919.  
  920. 307.Effect.formFactor = "Symmetric"
  921.  
  922.  
  923. 308.Effect.Transparency = 0.6
  924.  
  925.  
  926. 309.Effect.BrickColor = BrickColor.new("Toothpaste")
  927.  
  928.  
  929. 310.Effect.CFrame = Torso.CFrame
  930.  
  931.  
  932. 311.Effect.Reflectance = 0.6
  933.  
  934.  
  935. 312.Effect.TopSurface = "Smooth"
  936.  
  937.  
  938. 313.Effect.BottomSurface = "Smooth"
  939.  
  940.  
  941. 314.local EffectMesh = Instance.new("CylinderMesh",Effect)
  942.  
  943.  
  944. 315.EffectMesh.Scale = Vector3.new(3, 90000, 3)
  945.  
  946.  
  947. 316.local effect = Effect:Clone()
  948.  
  949.  
  950. 317.local effectmesh = EffectMesh:Clone()
  951.  
  952.  
  953. 318.effect.Parent = pro
  954.  
  955.  
  956. 319.effectmesh.Parent = effect
  957.  
  958.  
  959. 320.for i = 1,75 do
  960.  
  961.  
  962. 321.effect.Reflectance = math.random()
  963.  
  964.  
  965. 322.Effect.Reflectance = math.random()
  966.  
  967.  
  968. 323.effectmesh.Scale = effectmesh.Scale + Vector3.new(1,0,1)
  969.  
  970.  
  971. 324.EffectMesh.Scale = EffectMesh.Scale + Vector3.new(2,0,2)
  972.  
  973.  
  974. 325.Mesh.Scale = Mesh.Scale + Vector3.new(3, 3, 3)
  975.  
  976.  
  977. 326.Mesh3.Scale = Mesh.Scale
  978.  
  979.  
  980. 327.Mesh4.Scale = Mesh.Scale
  981.  
  982.  
  983. 328.Mesh5.Scale = Mesh.Scale
  984.  
  985.  
  986. 329.O.CFrame = O.CFrame * CFrame.fromEulerAnglesXYZ(6,0,0)
  987.  
  988.  
  989. 330.O2.CFrame = O2.CFrame * CFrame.fromEulerAnglesXYZ(0,6,0)
  990.  
  991.  
  992. 331.O3.CFrame = O3.CFrame * CFrame.fromEulerAnglesXYZ(0,6,6)
  993.  
  994.  
  995. 332.O4.CFrame = O4.CFrame * CFrame.fromEulerAnglesXYZ(6,0,6)
  996.  
  997.  
  998. 333.pro.Size = pro.Size + Vector3.new(3,3,3)
  999.  
  1000.  
  1001. 334.pro.CFrame = Torso.CFrame
  1002.  
  1003.  
  1004. 335.O.BrickColor = BrickColor.new("Lime green")
  1005.  
  1006.  
  1007. 336.O2.BrickColor = BrickColor.new("Lime green")
  1008.  
  1009.  
  1010. 337.O3.BrickColor = BrickColor.new("Lime green")
  1011.  
  1012.  
  1013. 338.O4.BrickColor = BrickColor.new("Lime green")
  1014.  
  1015.  
  1016. 339.pro.BrickColor = BrickColor.new("Really black")
  1017.  
  1018.  
  1019. 340.wait()
  1020.  
  1021.  
  1022. 341.end
  1023.  
  1024.  
  1025. 342.coroutine.resume(core)
  1026.  
  1027.  
  1028. 343.for i = 1,10 do
  1029.  
  1030.  
  1031. 344.Effect.Reflectance = 0 + 0.1
  1032.  
  1033.  
  1034. 345.effect.Reflectance = 0 + 0.1
  1035.  
  1036.  
  1037. 346.EffectMesh.Scale = EffectMesh.Scale - Vector3.new(12,30,12)
  1038.  
  1039.  
  1040. 347.effectmesh.Scale = effectmesh.Scale - Vector3.new(11,29,11)
  1041.  
  1042.  
  1043. 348.O.Transparency = O.Transparency + 0.1
  1044.  
  1045.  
  1046. 349.O2.Transparency = O2.Transparency + 0.1
  1047.  
  1048.  
  1049. 350.O3.Transparency = O3.Transparency + 0.1
  1050.  
  1051.  
  1052. 351.O4.Transparency = O4.Transparency + 0.1
  1053.  
  1054.  
  1055. 352.pro.Transparency = p.Transparency + 0.01
  1056.  
  1057.  
  1058. 353.wait()
  1059.  
  1060.  
  1061. 354.end
  1062.  
  1063.  
  1064. 355.Effect:remove()
  1065.  
  1066.  
  1067. 356.pro:remove()
  1068.  
  1069.  
  1070. 357.fer:remove()
  1071.  
  1072.  
  1073. 358.smk:remove()
  1074.  
  1075.  
  1076. 359.noob:remove()
  1077.  
  1078.  
  1079. 360.noobz:remove()
  1080.  
  1081.  
  1082. 361.nubz:remove()
  1083.  
  1084.  
  1085. 362.narb:remove()
  1086.  
  1087.  
  1088. 363.RefreshWelds()
  1089.  
  1090.  
  1091. 364.game.Lighting.TimeOfDay = 14
  1092.  
  1093.  
  1094. 365.game.Lighting.Brightness = 0
  1095.  
  1096.  
  1097. 366.model:remove()
  1098.  
  1099.  
  1100. 367.Human.PlatformStand = false
  1101.  
  1102.  
  1103. 368.Torso.Anchored = false
  1104.  
  1105.  
  1106. 369.Human.WalkSpeed = 16
  1107.  
  1108.  
  1109. 370.wait(10)
  1110.  
  1111.  
  1112. 371.disabled = false
  1113.  
  1114.  
  1115. 372.end
  1116.  
  1117.  
  1118. 373.function lul(mouse)
  1119.  
  1120.  
  1121. 374.mouse.Icon = "http://www.roblox.com/asset/?id=41672909"
  1122.  
  1123.  
  1124. 375.mouse.Button1Down:connect(onButton1Down)
  1125.  
  1126.  
  1127. 376.end
  1128.  
  1129.  
  1130. 377.function explhit(drumstep)
  1131.  
  1132.  
  1133. 378.for d,s in pairs (drumstep:children()) do
  1134.  
  1135.  
  1136. 379.if s.className == "Humanoid" then
  1137.  
  1138.  
  1139. 380.s:takeDamage(80)
  1140.  
  1141.  
  1142. 381.end
  1143.  
  1144.  
  1145. 382.end
  1146.  
  1147.  
  1148. 383.end
  1149.  
  1150.  
  1151. 384.function chargeup()
  1152.  
  1153.  
  1154. 385.Welds1()
  1155.  
  1156.  
  1157. 386.wait(0.4)
  1158.  
  1159.  
  1160. 387.ChargeWelds()
  1161.  
  1162.  
  1163. 388.wait(0.3)
  1164.  
  1165.  
  1166. 389.StartCharge()
  1167.  
  1168.  
  1169. 390.wait()
  1170.  
  1171.  
  1172. 391.MidCharge()
  1173.  
  1174.  
  1175. 392.wait(0.5)
  1176.  
  1177.  
  1178. 393.EndCharge()
  1179.  
  1180.  
  1181. 394.wait(0.4)
  1182.  
  1183.  
  1184. 395.end
  1185.  
  1186.  
  1187. 396.function EndCharge()
  1188.  
  1189.  
  1190. 397.local p = Instance.new("Part",char)
  1191.  
  1192.  
  1193. 398.p.Anchored = true
  1194.  
  1195.  
  1196. 399.p.CanCollide = false
  1197.  
  1198.  
  1199. 400.p.Transparency = 0
  1200.  
  1201.  
  1202. 401.p.Reflectance = 0.3
  1203.  
  1204.  
  1205. 402.p.formFactor = "Symmetric"
  1206.  
  1207.  
  1208. 403.p.Size = Vector3.new(12, 12, 12)
  1209.  
  1210.  
  1211. 404.p.TopSurface = "Smooth"
  1212.  
  1213.  
  1214. 405.p.BottomSurface = "Smooth"
  1215.  
  1216.  
  1217. 406.p.Name = "Sharingan"
  1218.  
  1219.  
  1220. 407.p.Shape = "Ball"
  1221.  
  1222.  
  1223. 408.p.CFrame = Torso.CFrame
  1224.  
  1225.  
  1226. 409.p.BrickColor = BrickColor.new("Really black")
  1227.  
  1228.  
  1229. 410.for i = 1,10 do
  1230.  
  1231.  
  1232. 411.p.Size = p.Size - Vector3.new(3,3,3)
  1233.  
  1234.  
  1235. 412.p.CFrame = Torso.CFrame
  1236.  
  1237.  
  1238. 413.wait()
  1239.  
  1240.  
  1241. 414.end
  1242.  
  1243.  
  1244. 415.p:remove()
  1245.  
  1246.  
  1247. 416.end
  1248.  
  1249.  
  1250. 417.function MidCharge()
  1251.  
  1252.  
  1253. 418.local wow = Instance.new("Part",workspace)
  1254.  
  1255.  
  1256. 419.wow.Anchored = true
  1257.  
  1258.  
  1259. 420.wow.CanCollide = false
  1260.  
  1261.  
  1262. 421.wow.Reflectance = 0.32
  1263.  
  1264.  
  1265. 422.wow.formFactor = "Custom"
  1266.  
  1267.  
  1268. 423.wow.Size = Vector3.new(12,12,12)
  1269.  
  1270.  
  1271. 424.wow.TopSurface = "Smooth"
  1272.  
  1273.  
  1274. 425.wow.Transparency = 0.5
  1275.  
  1276.  
  1277. 426.wow.BottomSurface = "Smooth"
  1278.  
  1279.  
  1280. 427.wow.CFrame = Torso.CFrame * CFrame.new(0,0,0)
  1281.  
  1282.  
  1283. 428.wow.BrickColor = BrickColor.new("Really black")
  1284.  
  1285.  
  1286. 429.local wow2 = Instance.new("Part",workspace)
  1287.  
  1288.  
  1289. 430.wow2.Anchored = true
  1290.  
  1291.  
  1292. 431.wow2.CanCollide = false
  1293.  
  1294.  
  1295. 432.wow2.Reflectance = 0.32
  1296.  
  1297.  
  1298. 433.wow2.formFactor = "Custom"
  1299.  
  1300.  
  1301. 434.wow2.Size = Vector3.new(12,12,12)
  1302.  
  1303.  
  1304. 435.wow2.TopSurface = "Smooth"
  1305.  
  1306.  
  1307. 436.wow2.Transparency = 0.5
  1308.  
  1309.  
  1310. 437.wow2.BottomSurface = "Smooth"
  1311.  
  1312.  
  1313. 438.wow2.CFrame = Torso.CFrame * CFrame.new(0,0,0)
  1314.  
  1315.  
  1316. 439.wow2.BrickColor = BrickColor.new("Lime green")
  1317.  
  1318.  
  1319. 440.local wow11 = Instance.new("Part",workspace)
  1320.  
  1321.  
  1322. 441.wow11.Anchored = true
  1323.  
  1324.  
  1325. 442.wow11.CanCollide = false
  1326.  
  1327.  
  1328. 443.wow11.Reflectance = 0.32
  1329.  
  1330.  
  1331. 444.wow11.formFactor = "Custom"
  1332.  
  1333.  
  1334. 445.wow11.Size = Vector3.new(12,12,12)
  1335.  
  1336.  
  1337. 446.wow11.TopSurface = "Smooth"
  1338.  
  1339.  
  1340. 447.wow11.Transparency = 0.5
  1341.  
  1342.  
  1343. 448.wow11.BottomSurface = "Smooth"
  1344.  
  1345.  
  1346. 449.wow11.CFrame = Torso.CFrame * CFrame.new(0,0,0)
  1347.  
  1348.  
  1349. 450.wow11.BrickColor = BrickColor.new("Lavender")
  1350.  
  1351.  
  1352. 451.local wow4 = Instance.new("Part",workspace)
  1353.  
  1354.  
  1355. 452.wow4.Anchored = true
  1356.  
  1357.  
  1358. 453.wow4.CanCollide = false
  1359.  
  1360.  
  1361. 454.wow4.Reflectance = 0.32
  1362.  
  1363.  
  1364. 455.wow4.formFactor = "Custom"
  1365.  
  1366.  
  1367. 456.wow4.Size = Vector3.new(12,12,12)
  1368.  
  1369.  
  1370. 457.wow4.TopSurface = "Smooth"
  1371.  
  1372.  
  1373. 458.wow4.Transparency = 0.5
  1374.  
  1375.  
  1376. 459.wow4.BottomSurface = "Smooth"
  1377.  
  1378.  
  1379. 460.wow4.CFrame = Torso.CFrame * CFrame.new(0,0,0)
  1380.  
  1381.  
  1382. 461.wow4.BrickColor = BrickColor.new("Toothpaste")
  1383.  
  1384.  
  1385. 462.local Taco = Instance.new("SelectionBox",wow)
  1386.  
  1387.  
  1388. 463.Taco.Visible = true
  1389.  
  1390.  
  1391. 464.Taco.Color = BrickColor.new("Lime green")
  1392.  
  1393.  
  1394. 465.Taco.Adornee = Taco.Parent
  1395.  
  1396.  
  1397. 466.local Tacoz = Taco:clone()
  1398.  
  1399.  
  1400. 467.Tacoz.Parent = wow2
  1401.  
  1402.  
  1403. 468.Tacoz.Color = BrickColor.new("Really black")
  1404.  
  1405.  
  1406. 469.Tacoz.Adornee = Tacoz.Parent
  1407.  
  1408.  
  1409. 470.local Taco5 = Tacoz:clone()
  1410.  
  1411.  
  1412. 471.Taco5.Parent = wow4
  1413.  
  1414.  
  1415. 472.Taco5.Adornee = Taco5.Parent
  1416.  
  1417.  
  1418. 473.Taco5.Color = BrickColor.new("Lavender")
  1419.  
  1420.  
  1421. 474.local Tacosh = Tacoz:clone()
  1422.  
  1423.  
  1424. 475.Tacosh.Parent = wow11
  1425.  
  1426.  
  1427. 476.Tacosh.Adornee = Tacosh.Parent
  1428.  
  1429.  
  1430. 477.Tacosh.Color = BrickColor.new("Toothpaste")
  1431.  
  1432.  
  1433. 478.for i = 1,20 do
  1434.  
  1435.  
  1436. 479.wait()
  1437.  
  1438.  
  1439. 480.wow11.CFrame = wow11.CFrame * CFrame.fromEulerAnglesXYZ(6,6,6)
  1440.  
  1441.  
  1442. 481.wow4.CFrame = wow4.CFrame * CFrame.fromEulerAnglesXYZ(-6,-6,-6)
  1443.  
  1444.  
  1445. 482.wow2.CFrame = wow2.CFrame * CFrame.fromEulerAnglesXYZ(-3,2,6)
  1446.  
  1447.  
  1448. 483.wow.CFrame = wow.CFrame * CFrame.fromEulerAnglesXYZ(5,1,-6)
  1449.  
  1450.  
  1451. 484.end
  1452.  
  1453.  
  1454. 485.wow:remove()
  1455.  
  1456.  
  1457. 486.wow2:remove()
  1458.  
  1459.  
  1460. 487.wow4:remove()
  1461.  
  1462.  
  1463. 488.wow11:remove()
  1464.  
  1465.  
  1466. 489.end
  1467.  
  1468.  
  1469. 490.function StartCharge()
  1470.  
  1471.  
  1472. 491.local p = Instance.new("Part",char)
  1473.  
  1474.  
  1475. 492.p.Anchored = true
  1476.  
  1477.  
  1478. 493.p.CanCollide = false
  1479.  
  1480.  
  1481. 494.p.Transparency = 0.6
  1482.  
  1483.  
  1484. 495.p.Reflectance = 0.3
  1485.  
  1486.  
  1487. 496.p.formFactor = "Symmetric"
  1488.  
  1489.  
  1490. 497.p.Size = Vector3.new(3,3,3)
  1491.  
  1492.  
  1493. 498.p.TopSurface = "Smooth"
  1494.  
  1495.  
  1496. 499.p.BottomSurface = "Smooth"
  1497.  
  1498.  
  1499. 500.p.Name = "Sharingan"
  1500.  
  1501.  
  1502. 501.p.Shape = "Ball"
  1503.  
  1504.  
  1505. 502.p.CFrame = Torso.CFrame
  1506.  
  1507.  
  1508. 503.p.BrickColor = BrickColor.new("Really black")
  1509.  
  1510.  
  1511. 504.local O = Instance.new("Part",model)
  1512.  
  1513.  
  1514. 505.O.Anchored = true
  1515.  
  1516.  
  1517. 506.O.CanCollide = false
  1518.  
  1519.  
  1520. 507.O.Transparency = 0
  1521.  
  1522.  
  1523. 508.O.Reflectance = 0.3
  1524.  
  1525.  
  1526. 509.O.formFactor = "Symmetric"
  1527.  
  1528.  
  1529. 510.O.Size = Vector3.new(0, 0, 0)
  1530.  
  1531.  
  1532. 511.O.TopSurface = "Smooth"
  1533.  
  1534.  
  1535. 512.O.BottomSurface = "Smooth"
  1536.  
  1537.  
  1538. 513.O.Name = "Sharingan"
  1539.  
  1540.  
  1541. 514.O.Shape = "Ball"
  1542.  
  1543.  
  1544. 515.O.CFrame = Torso.CFrame
  1545.  
  1546.  
  1547. 516.O.BrickColor = BrickColor.new("Lime green")
  1548.  
  1549.  
  1550. 517.local Mesh = Instance.new("SpecialMesh")
  1551.  
  1552.  
  1553. 518.Mesh.Parent = O
  1554.  
  1555.  
  1556. 519.Mesh.MeshType = "FileMesh"
  1557.  
  1558.  
  1559. 520.Mesh.Scale = Vector3.new(1.3, 1.3, 1.3)
  1560.  
  1561.  
  1562. 521.Mesh.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1563.  
  1564.  
  1565. 522.Mesh.TextureId = ""
  1566.  
  1567.  
  1568. 523.for i = 1,10 do
  1569.  
  1570.  
  1571. 524.p.Size = p.Size + Vector3.new(3,3,3)
  1572.  
  1573.  
  1574. 525.p.CFrame = Torso.CFrame
  1575.  
  1576.  
  1577. 526.p.Transparency = p.Transparency + 0.1
  1578.  
  1579.  
  1580. 527.O.Transparency = O.Transparency + 0.1
  1581.  
  1582.  
  1583. 528.Mesh.Scale = Mesh.Scale + Vector3.new(4, 4, 4)
  1584.  
  1585.  
  1586. 529.wait()
  1587.  
  1588.  
  1589. 530.end
  1590.  
  1591.  
  1592. 531.p:remove()
  1593.  
  1594.  
  1595. 532.O:remove()
  1596.  
  1597.  
  1598. 533.end
  1599.  
  1600.  
  1601. 534.function onTouched(Taco)
  1602.  
  1603.  
  1604. 535.if Taco.Parent.Name ~= pwn.Name and Taco.Parent.Parent.Name ~= pwn.Name then
  1605.  
  1606.  
  1607. 536.if Taco.Parent.className == "Model" or Taco.Parent.Parent.className == "Model" then
  1608.  
  1609.  
  1610. 537.for k,f in pairs(Taco.Parent:children()) do
  1611.  
  1612.  
  1613. 538.if f.className == "Part" then
  1614.  
  1615.  
  1616. 539.f.Anchored = false
  1617.  
  1618.  
  1619. 540.coroutine.resume(coroutine.create(function()
  1620.  
  1621.  
  1622. 541.f.Velocity = (Head.Position - f.Position).unit * -150
  1623.  
  1624.  
  1625. 542.wait(0.4)
  1626.  
  1627.  
  1628. 543.f.Veclovity = Vector3.new(0,0,0)
  1629.  
  1630.  
  1631. 544.end))
  1632.  
  1633.  
  1634. 545.elseif f.className == "ForceField" then
  1635.  
  1636.  
  1637. 546.f:remove()
  1638.  
  1639.  
  1640. 547.elseif f.className == "Hat" then
  1641.  
  1642.  
  1643. 548.f:remove()
  1644.  
  1645.  
  1646. 549.end
  1647.  
  1648.  
  1649. 550.end
  1650.  
  1651.  
  1652. 551.end
  1653.  
  1654.  
  1655. 552.end
  1656.  
  1657.  
  1658. 553.end
  1659.  
  1660.  
  1661. 554.function shock()
  1662.  
  1663.  
  1664. 555.local wowz = Instance.new("Part",workspace)
  1665.  
  1666.  
  1667. 556.wowz.Anchored = true
  1668.  
  1669.  
  1670. 557.wowz.CanCollide = false
  1671.  
  1672.  
  1673. 558.wowz.Reflectance = 0.32
  1674.  
  1675.  
  1676. 559.wowz.formFactor = "Custom"
  1677.  
  1678.  
  1679. 560.wowz.Size = Vector3.new(0.2,0.2,0.2)
  1680.  
  1681.  
  1682. 561.wowz.TopSurface = "Smooth"
  1683.  
  1684.  
  1685. 562.wowz.Transparency = 0
  1686.  
  1687.  
  1688. 563.wowz.BottomSurface = "Smooth"
  1689.  
  1690.  
  1691. 564.wowz.CFrame = Torso.CFrame * CFrame.new(0,0,0)
  1692.  
  1693.  
  1694. 565.wowz.BrickColor = BrickColor.new("Really black")
  1695.  
  1696.  
  1697. 566.local Mesh2 = Instance.new("SpecialMesh",wow)
  1698.  
  1699.  
  1700. 567.Mesh2.MeshType = "FileMesh"
  1701.  
  1702.  
  1703. 568.Mesh2.Scale = Vector3.new(6,0.5,6)
  1704.  
  1705.  
  1706. 569.Mesh2.MeshId = "http://www.roblox.com/asset/?id=20329976"
  1707.  
  1708.  
  1709. 570.Mesh2.TextureId = ""
  1710.  
  1711.  
  1712. 571.for i = 1,30 do
  1713.  
  1714.  
  1715. 572.wowz.CFrame = Torso.CFrame * CFrame.new(0,-2.5,0)
  1716.  
  1717.  
  1718. 573.wait()
  1719.  
  1720.  
  1721. 574.wowz.CFrame = wow.CFrame * CFrame.fromEulerAnglesXYZ(0,6,0)
  1722.  
  1723.  
  1724. 575.wowz.BrickColor = BrickColor.Random()
  1725.  
  1726.  
  1727. 576.end
  1728.  
  1729.  
  1730. 577.wowz:remove()
  1731.  
  1732.  
  1733. 578.end
  1734.  
  1735.  
  1736. 579.function spinmesh()
  1737.  
  1738.  
  1739. 580.local wowz = Instance.new("Part",char)
  1740.  
  1741.  
  1742. 581.wowz.Anchored = true
  1743.  
  1744.  
  1745. 582.wowz.CanCollide = false
  1746.  
  1747.  
  1748. 583.wowz.Reflectance = 0.32
  1749.  
  1750.  
  1751. 584.wowz.Shape = "Ball"
  1752.  
  1753.  
  1754. 585.wowz.Transparency = 0
  1755.  
  1756.  
  1757. 586.wowz.formFactor = "Custom"
  1758.  
  1759.  
  1760. 587.wowz.Size = Vector3.new(9,9,9)
  1761.  
  1762.  
  1763. 588.wowz.TopSurface = "Smooth"
  1764.  
  1765.  
  1766. 589.wowz.BottomSurface = "Smooth"
  1767.  
  1768.  
  1769. 590.wowz.CFrame = Torso.CFrame
  1770.  
  1771.  
  1772. 591.wowz.BrickColor = BrickColor.new("Really black")
  1773.  
  1774.  
  1775. 592.wait(3)
  1776.  
  1777.  
  1778. 593.wowz:remove()
  1779.  
  1780.  
  1781. 594.end
  1782.  
  1783.  
  1784. 595.meshInsertion = coroutine.create(spinmesh)
  1785.  
  1786.  
  1787. 596.core = coroutine.create(shock)
  1788.  
  1789.  
  1790. 597.Tewl.Name = Nim
  1791.  
  1792.  
  1793. 598.Tewl.Selected:connect(lul)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement