Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Blob Transformation
- -- Made by me
- player = game.Players.LocalPlayer
- mouse = player:GetMouse()
- character = player.Character
- local base = Instance.new("Part", character.Torso)
- base.TopSurface = Enum.SurfaceType.Smooth
- base.BottomSurface = Enum.SurfaceType.Smooth
- base.Material = Enum.Material.Neon
- base.BrickColor = BrickColor.new("Black")
- base.Size = Vector3.new(100,100,100) -- Change Size here
- local Weld = Instance.new("Weld", base)
- Weld.Part0 = player.Character.Torso
- Weld.Part1 = base
- Weld.C1 = CFrame.new(0,1,0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement