Advertisement
Guest User

Untitled

a guest
Jun 12th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. char = game.Players.228228228229UE.Character
  2. hum = char.Humanoid
  3.  
  4. protector = Instance.new("Part")
  5. protector.Parent = char
  6. protector.Shape = "Ball"
  7. protector.Material = "Neon"
  8. protector.Orientation = Vector3.new(50, 75, 25)
  9. protector.Size = Vector3.new(10, 10, 10)
  10. protector.Anchored = false
  11. protector.CanCollide = false
  12. protector.BrickColor = BrickColor.new("Black")
  13. protector.Position = char.Torso.Position
  14. protector.Transparency = 0.5
  15. weld = Instance.new("Weld")
  16. weld.Parent = protector
  17. weld.Part0 = protector
  18. weld.Part1 = char.Torso
  19. ff = Instance.new("ForceField")
  20. ff.Parent = char
  21. ff.Visible = false
  22. protector.Touched:Connect(function()
  23. protector.Transparency = 0.7
  24. ex = Instance.new("Explosion")
  25. ex.Parent = protector
  26. ex.Position = protector.Position
  27. ex.Visible = false
  28. ex.BlastRadius = 25
  29. wait(0.12)
  30. protector.Transparency = 0.5
  31. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement