Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- char = owner.Character
- hum = char.Humanoid
- protector = Instance.new("Part")
- protector.Parent = char
- protector.Shape = "Ball"
- protector.Material = "Neon"
- protector.Orientation = Vector3.new(50, 75, 25)
- protector.Size = Vector3.new(10, 10, 10)
- protector.Anchored = false
- protector.CanCollide = false
- protector.BrickColor = BrickColor.new("Black")
- protector.Position = char.Torso.Position
- protector.Transparency = 0.5
- weld = Instance.new("Weld")
- weld.Parent = protector
- weld.Part0 = protector
- weld.Part1 = char.Torso
- ff = Instance.new("ForceField")
- ff.Parent = char
- ff.Visible = false
- protector.Touched:Connect(function()
- protector.Transparency = 0.7
- ex = Instance.new("Explosion")
- ex.Parent = protector
- ex.Position = protector.Position
- ex.Visible = false
- ex.BlastRadius = 25
- wait(0.12)
- protector.Transparency = 0.5
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement