Advertisement
Noob3as

Blob Transformation (Roblox)

Feb 22nd, 2017
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. -- Blob Transformation
  2. -- Made by me
  3. player = game.Players.LocalPlayer
  4. mouse = player:GetMouse()
  5. character = player.Character
  6.  
  7. local base = Instance.new("Part", character.Torso)
  8. base.TopSurface = Enum.SurfaceType.Smooth
  9. base.BottomSurface = Enum.SurfaceType.Smooth
  10. base.Material = Enum.Material.Neon
  11. base.BrickColor = BrickColor.new("Black")
  12. base.Size = Vector3.new(100,100,100) -- Change Size here
  13. local Weld = Instance.new("Weld", base)
  14. Weld.Part0 = player.Character.Torso
  15. Weld.Part1 = base
  16. Weld.C1 = CFrame.new(0,1,0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement