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