Advertisement
zachcb123

Untitled

Mar 3rd, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.40 KB | None | 0 0
  1. jun = script.Parent.Parent
  2. Stuff = false
  3. --password
  4. function ssj()
  5. if Stuff == false then
  6. Stuff = true
  7. for u, c in pairs (jun.Character:GetChildren()) do
  8. if c.className == "Hat" and c.Name ~= "Swordpack" and c.Name ~= "GlassesBlackFrame" then
  9. c.Handle.Transparency = 0
  10. end
  11. end
  12. Effect = Instance.new("Part")
  13. Effect.Parent = jun.Character
  14. Effect.Anchored = true
  15. Effect.CanCollide = false
  16. Effect.Size = Vector3.new(1, 1, 1)
  17. Effect.formFactor = "Symmetric"
  18. Effect.Transparency = 0.5
  19. Effect.BrickColor = BrickColor.Red()
  20. Effect.TopSurface = "Smooth"
  21. Effect.BottomSurface = "Smooth"
  22. EffectMesh = Instance.new("CylinderMesh")
  23. EffectMesh.Parent = Effect
  24. EffectMesh.Scale = Vector3.new(1, 1500, 1)
  25. --[[ex = Instance.new("Explosion")
  26. ex.Position = jun.Character.Torso.Position
  27. ex.BlastPressure = 5
  28. ex.Parent = workspace--]]
  29. jun.Character.Torso.CFrame = jun.Character.Torso.CFrame * CFrame.new(0, 0.1, 0)
  30. for i = 1 , 20 do
  31. Effect.CFrame = CFrame.new(jun.Character.Torso.Position)
  32. EffectMesh.Scale = EffectMesh.Scale + Vector3.new(2, 0, 2)
  33. Effect.Transparency = Effect.Transparency + 0.025
  34. wait(0.06)
  35. end
  36. Effect:Remove()
  37. if jun.Character.Torso:findFirstChild("PwnFire") == nil then
  38. pie = Instance.new("Fire")
  39. pie.Name = "PwnFire"
  40. pie.Parent = jun.Character.Torso
  41. pie.Size = 9
  42. pie.Color = BrickColor.Red()
  43. end
  44. --[[if jun.Character.Torso:findFirstChild("PwnSparkles") == nil then
  45. pie = Instance.new("Sparkles")
  46. pie.Name = "PwnSparkles"
  47. pie.Parent = jun.Character.Torso
  48. pie.Color = BrickColor.new("White")
  49. end--]]
  50. jun.Character.Humanoid.WalkSpeed = 50
  51. end
  52. end
  53. function nossj()
  54. if Stuff == true then
  55. Stuff = false
  56. if jun.Character.Torso:findFirstChild("PwnFire") ~= nil then
  57. jun.Character.Torso:findFirstChild("PwnFire"):Remove()
  58. end
  59. --[[if jun.Character.Torso:findFirstChild("PwnSparkles") ~= nil then
  60. jun.Character.Torso:findFirstChild("PwnSparkles"):Remove()
  61. end--]]
  62. p = Instance.new("Part")
  63. p.Parent = jun.Character
  64. p.Anchored = true
  65. p.CanCollide = false
  66. p.Transparency = 0.1
  67. p.formFactor = "Symmetric"
  68. p.Size = Vector3.new(22, 22, 22)
  69. p.TopSurface = "Smooth"
  70. p.BottomSurface = "Smooth"
  71. p.Name = "Sharingan"
  72. p.Shape = "Ball"
  73. p.CFrame = jun.Character.Torso.CFrame
  74. p.BrickColor = BrickColor.new("Red")
  75. for i = 1 , 10 do
  76. wait(0.05)
  77. p.Size = p.Size + Vector3.new(-4, -4, -4)
  78. p.Transparency = p.Transparency + 0.1
  79. p.CFrame = jun.Character.Torso.CFrame
  80. end
  81. p:Remove()
  82. for u, c in pairs (jun.Character:GetChildren()) do
  83. if c.className == "Hat" and c.Name ~= "Swordpack" and c.Name ~= "GlassesBlackFrame" then
  84. c.Handle.Transparency = 0
  85. end
  86. if c.Name == "Hair" then
  87. c:Remove()
  88. end
  89. end
  90. jun.Character.Humanoid.WalkSpeed = 16
  91. end
  92. end
  93. jun.Chatted:connect(function(Msg)
  94. msg = Msg:lower()
  95. if string.sub(msg, 1, 7) == "GoToHell!" then
  96. wait(0.1)
  97. ssj()
  98. end
  99. if string.sub(msg, 1, 13) == "kaio" then
  100. wait(0.1)
  101. ssj()
  102. end
  103. if string.sub(msg, 1, 6) == "kai-o-ken!" then
  104. wait(0.1)
  105. ssj()
  106. end
  107. if string.sub(msg, 1, 10) == "worn out" then
  108. wait(0.1)
  109. nossj()
  110. end
  111. if string.sub(msg, 1, 3) == "tired" then
  112. wait(0.1)
  113. nossj()
  114. end
  115. end)
  116. function OnDeath()
  117. wait()
  118. nossj()
  119. end
  120. jun.Character.Humanoid.Died:connect(OnDeath)
  121. jun = script.Parent.Parent
  122. Stuff = false
  123. --mediafire---
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement