Advertisement
memberhero

shield

Jan 9th, 2018
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. --Bubble sheild script by basstracker1970
  2. ---First Time Useing/Trying Welds
  3. plr = game.Players.LocalPlayer
  4. char = plr.Character
  5. part = Instance.new("Part",char.Torso)
  6. part.Shape = "Ball"
  7. part.Material = "Glass"
  8. part.Transparency = 0.5
  9. part.Size = Vector3.new(20,20,20)
  10. weld = Instance.new("Weld",char.Torso)
  11. weld.Part0 = char.Torso
  12. weld.Part1 = part
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement