local part = script.Parent
while true do
part.Orientation = part.Orientation + Vector3.new(0,5,0)
wait(0.01)
end
local part = script.Parent
local function kill(bodyPart)
local person = bodyPart.Parent
local humanoid = person:FindFirstChildWhichIsA('Humanoid')
if humanoid then
humanoid.Health = 0
end
end
part.Touched:Connect(kill)