SubScripts

Kill Void SB Base

Apr 18th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.40 KB | None | 0 0
  1. Base = Instance.new('Part', workspace)
  2. Base.Size = Vector3.new(1000,.1,1000)
  3. Base.name = "Water"
  4. Base.Material = Enum.Material.Foil
  5. Base.BrickColor = BrickColor.Blue()
  6. Base.Anchored = true
  7.  
  8. Base.Touched:Connect(function(hit)
  9. if hit.Parent.Humanoid then
  10. hit.Parent.Humanoid.Health = 0
  11. end
  12. end)
  13.  
  14. while wait(.1) do
  15. if Base.Size.Y < 36 then
  16. Base.Size = Base.Size + Vector3.new(0,0.1,0)
  17. end
  18. end
Add Comment
Please, Sign In to add comment