Advertisement
Joriangames

Kill Script

Nov 11th, 2020
1,266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. --This model is created by Joriangames/Problox Studio Scripts
  2. --If you want to know how this model works, watch my tutorial: https://youtu.be/--msdvHRD74
  3.  
  4. --Thanks for using this model!
  5. --Problox Studio Scripts
  6.  
  7. function onTouch(part)
  8.     local hum = part.Parent:FindFirstChild("Humanoid")
  9.     if (hum ~= nil) then
  10.         hum.Health = 0
  11.     end
  12. end
  13.  
  14. script.Parent.Touched:Connect(onTouch)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement