Advertisement
zachcb123

Untitled

Feb 11th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.14 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.new("Magenta")
  20. Effect.TopSurface = "Smooth"
  21. Effect.BottomSurface = "Smooth"
  22. EffectMesh = Instance.new("SpecialMesh")
  23. EffectMesh.Parent = Effect
  24. EffectMesh.MeshType = "Sphere"
  25. EffectMesh.Scale = Vector3.new(10, 1500, 10)
  26. jun.Character.Torso.CFrame = jun.Character.Torso.CFrame * CFrame.new(0, 0.1, 0)
  27. for i = 1 , 20 do
  28. Effect.CFrame = CFrame.new(jun.Character.Torso.Position)
  29. EffectMesh.Scale = EffectMesh.Scale + Vector3.new(5, 0, 5)
  30. Effect.Transparency = Effect.Transparency + 0.025
  31. wait(0.06)
  32. end
  33. game.Lighting.TimeOfDay = "21"
  34. Effect:Remove()
  35. if jun.Character.Torso:findFirstChild("PwnFire") == nil then
  36. pie = Instance.new("Fire")
  37. pie.Name = "PwnFire"
  38. pie.Parent = jun.Character.Torso
  39. pie.Size = 9
  40. pie.Color = BrickColor.new("Magenta").Color
  41. pie.SecondaryColor = BrickColor.new("Magenta").Color
  42. pie.SecindarySize = 8
  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. end
  49. jun.Character.Humanoid.MaxHealth = 280
  50. wait(0.3)
  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("Magenta")
  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. game.Lighting.TimeOfDay = "12"
  81. end
  82. p:Remove()
  83. for u, c in pairs (jun.Character:GetChildren()) do
  84. if c.className == "Hat" and c.Name ~= "Swordpack" and c.Name ~= "GlassesBlackFrame" then
  85. c.Handle.Transparency = 0
  86. end
  87. if c.Name == "Hair" then
  88. c:Remove()
  89. end
  90. end
  91. wait(0.3)
  92. jun.Character.Humanoid.MaxHealth = 100
  93. end
  94. end
  95. jun.Chatted:connect(function(Msg)
  96. msg = Msg:lower()
  97. if string.sub(msg, 1, 7) == "g.o.d" then
  98. wait(0.1)
  99. ssj()
  100. end
  101. if string.sub(msg, 1, 13) == "god" then
  102. wait(0.1)
  103. ssj()
  104. end
  105. if string.sub(msg, 1, 10) == "calm" then
  106. wait(0.1)
  107. nossj()
  108. end
  109. if string.sub(msg, 1, 3) == "off" then
  110. wait(0.1)
  111. nossj()
  112. end
  113. end)
  114. function OnDeath()
  115. wait()
  116. nossj()
  117. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement