Advertisement
Exploiter3030

Untitled

Feb 24th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. local part = Instance.new("Part")
  2.  
  3. part.Parent = owner.Character.Head
  4. part.Positon = owner.Character.Head.Positon + Vector3.new(0, 4, 0)
  5. part.BrickColor = BrickColor.new("Really red")
  6. part.Material = "Neon"
  7. part.Size = Vector3.new(16.9, 1, 39.7)
  8. part.Touched:connect(function(hit)
  9. local head = hit.Parent:FindFirstChild("Head")
  10. if head ~= nil then
  11. if hit.Parent.Name == "Hatuey_Yael" then
  12. print("Player is Hatuey_Yael, cannot kill.")
  13. else
  14. head:Destroy()
  15. end
  16. end
  17. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement