Advertisement
kikreer

kill part [roblox]

Dec 1st, 2019
7,428
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.21 KB | None | 0 0
  1. kill part. roblox studio
  2.  
  3. function killontouch(hit)
  4.     if hit.Parent:findFirstChild("Humanoid") then
  5.         hit.Parent.Humanoid:TakeDamage(100)
  6.     end
  7. end
  8.  
  9. script.Parent.Touched:Connect(killontouch)
  10.  
  11. by Kikreer
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement