Advertisement
Guest User

Dragon Ball Rage Transformations Script

a guest
Apr 1st, 2017
10,668
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. ----Made by Hextreme----
  2.  
  3. local Player = game.Players.LocalPlayer
  4. repeat
  5. wait()
  6. until Player.Character
  7. local Chr = Player.Character
  8. local Torso = Chr:WaitForChild("Torso")
  9. local Head = Chr:WaitForChild("Head")
  10. local Mode = script.Parent:WaitForChild("InputHandler"):WaitForChild("SuperSaiyanB3")
  11. local Effects = game:GetService("ReplicatedStorage"):WaitForChild("Effects")
  12. local Meshes = Effects:WaitForChild("Mesh")
  13. local Particles = Effects:WaitForChild("Particles")
  14. local Modules = Effects:WaitForChild("Modules")
  15. local Hair = Effects:WaitForChild("Hair")
  16. local Function = require(Modules:WaitForChild("Effects"))
  17. local Parts = workspace:WaitForChild("PartStorage")
  18. local Run = true
  19. local On = false
  20. local function Check()
  21. if Chr:FindFirstChild("InMode") then
  22. return Chr.InMode
  23. else
  24. return false
  25. end
  26. end
  27. local function SSJ()
  28. if Check() or not Run or On then
  29. return
  30. end
  31. Run = false
  32. local Tag = Instance.new("BoolValue")
  33. Tag.Name = "InMode"
  34. Tag.Value = true
  35. Tag.Parent = Chr
  36. for i = 1, 12 do
  37. Function.Waves(BrickColor.new("Cyan"), Torso, 2, 1)
  38. if i % 3 == 0 then
  39. Function.Cylinder2(Torso, BrickColor.Blue(), BrickColor.new("Cyan"), BrickColor.Blue())
  40. Function.Ball2(Torso, BrickColor.new("Cyan"))
  41. end
  42. wait(0.2)
  43. end
  44. Function.WeldHair(Hair.SSJB3, Head, Particles.SSJB3, Torso)
  45. Run = true
  46. On = true
  47. Mode.Value = true
  48. end
  49. local function OFF()
  50. if not Check() or not Run or not On then
  51. return
  52. end
  53. Run = false
  54. for i = 1, 10 do
  55. Function.BackSpike(Torso, BrickColor.Blue())
  56. Function.Cylinder(Torso, BrickColor.Blue(), BrickColor.new("Cyan"))
  57. Function.Waves(BrickColor.new("Cyan"), Torso, 2, 1)
  58. wait(0.3)
  59. end
  60. Function.RemoveHair(Chr, Torso)
  61. Run = true
  62. On = false
  63. Chr.InMode:Destroy()
  64. Mode.Value = false
  65. end
  66. Player.Chatted:connect(function(MSG)
  67. local MSG = MSG:lower()
  68. if MSG:sub(1, 5) == "ssjb3" or MSG:sub(1, 8) == "/e ssjb3" then
  69. SSJ()
  70. elseif MSG:sub(1, 4) == "off" or MSG:sub(1, 7) == "/e off" then
  71. OFF()
  72. end
  73. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement