Facebook
From Juan Gamer youtuber, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 140
  1. script.Parent.Touched:Connect(function(hit)
  2.     if hit.Parent:FindFirstChild("Humanoid") then
  3.         hit.Parent.Humanoid:TakeDamage(20) --mude o tanto de dano de attack
  4.         wait(0.1)
  5.         script.Disabled = true
  6.         wait(1)
  7.         script.Disabled = false
  8.     end
  9.    
  10. end)