Advertisement
memberhero

classic ssj script?

Nov 19th, 2017
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1.  
  2. ---im not a anime freak i made this for people who watch my pastebin
  3. wait(1)
  4. p = game:GetService("Players").LocalPlayer
  5. p.Chatted:connect(function(msg)
  6. if msg == "ssj" then
  7. sound = Instance.new("Sound")
  8. sound.SoundId = "rbxassetid://895041803"
  9. sound.Name = "Rage"
  10. sound.Parent = p.Character.Torso
  11. sound:Play()
  12. wait(15)
  13. sound:Stop()
  14. part = Instance.new("Part")
  15. part.Parent= game.Workspace
  16. part.CanCollide = false
  17. part.Anchored = true
  18. part.Position = p.Character.Torso.Position
  19. part.BrickColor = BrickColor.new("New Yeller")
  20. part.Shape = "Ball"
  21. for i = 1, 10 do
  22. part.Size = part.Size + Vector3.new(.1,.1,.1)
  23. part.Transparency = part.Transparency + .05
  24. wait(.05)
  25. end
  26. part:Destroy()
  27. p.Character.Head.face.Texture = "rbxassetid://231488564"
  28. sound = Instance.new("Sound")
  29. sound.Looped = true
  30. sound.SoundId = "rbxassetid://262498439"
  31. sound.Name = "Theme"
  32. sound.Parent = p.Character.Torso
  33. sound:Play()
  34. end
  35. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement