Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. --[[
  2. This Script is part 1 of the Transformation. I will be making the other parts soon.
  3. If you want to make it R6 just find UpperTorso and replace it with Torso
  4. Script by Deku Smash
  5. Youtube Link : https://www.youtube.com/watch?v=iDrUBGPwQ8o&
  6. --]]
  7. local player = game.Players.LocalPlayer -- Addressing the Player
  8. local char = player.Character --Addressing the player character
  9. local message = "SuperSaiyan" -- What you want to active the transformation
  10.  
  11. player.Chatted:Connect(function(msg)
  12. if msg == message then
  13. game.Chat:Chat(char.Head,"FRIEZZA","Red") -- Makes the player chat bubble
  14. local part = Instance.new("Part",workspace) --Making a part and parenting to the workspace
  15. part.Material = Enum.Material.Neon --Material of the part. Note that if you do "Neon" it won't work due to invalid syntax
  16. part.Position = char.UpperTorso.Position
  17. part.CanCollide = false --So It won't floop your roblox character
  18. part.Anchored = true --So it won't follow on the floor
  19. part.Shape = "Ball" --The Shape of the part which is going to grow
  20. for i = 1,20 do --How long to do the transformation
  21. part.BrickColor = BrickColor.Random() ---Making it different colors to make it look nicer
  22. part.Size = part.Size + Vector3.new(1,1,1) --Grows by Vector3
  23. part.Transparency = part.Transparency + .05
  24. wait(.05)
  25. end
  26. local function superab()
  27. char.Humanoid.WalkSpeed = 50
  28. char.Humanoid.JumpPower = 500
  29. end
  30. superab()
  31. end
  32. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement