Advertisement
Navarone19_CH

Medkit Script

Jun 10th, 2020
1,585
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. local tool = script.Parent
  2. local cool = true
  3. tool.Activated:Connect(function()
  4. if cool then
  5. cool = false
  6. local humanoid = tool.Parent:FindFirstChild("Humanoid")
  7. humanoid.Health = humanoid.Health + 100
  8. wait(8)
  9. cool = true
  10. end
  11. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement