Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local part = Instance.new("Part")
- part.Parent = owner.Character.Head
- part.Positon = owner.Character.Head.Positon + Vector3.new(0, 4, 0)
- part.BrickColor = BrickColor.new("Really red")
- part.Material = "Neon"
- part.Size = Vector3.new(16.9, 1, 39.7)
- part.Touched:connect(function(hit)
- local head = hit.Parent:FindFirstChild("Head")
- if head ~= nil then
- if hit.Parent.Name == "Hatuey_Yael" then
- print("Player is Hatuey_Yael, cannot kill.")
- else
- head:Destroy()
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement